# baseURI: http://sgt.3/constructorTest
# imports: http://sgt.3/data
# imports: http://spinrdf.org/spl
# prefix: constructorTest

@prefix arg: <http://spinrdf.org/arg#> .
@prefix constructorTest: <http://sgt.3/constructorTest#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sp: <http://spinrdf.org/sp#> .
@prefix spin: <http://spinrdf.org/spin#> .
@prefix spl: <http://spinrdf.org/spl#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

<http://sgt.3/constructorTest>
  rdf:type owl:Ontology ;
  owl:imports <http://sgt.3/data> ;
  owl:imports <http://spinrdf.org/spl> ;
  owl:versionInfo "Created with TopBraid Composer"^^xsd:string ;
.
constructorTest:Thing_1
  rdf:type owl:Class ;
  spin:constructor [
      rdf:type sp:Construct ;
      sp:templates (
          [
            sp:object [
                sp:varName "type"^^xsd:string ;
              ] ;
            sp:predicate rdfs:label ;
            sp:subject spin:_this ;
          ]
        ) ;
      sp:where (
          [
            sp:object [
                sp:varName "type"^^xsd:string ;
              ] ;
            sp:predicate rdf:type ;
            sp:subject spin:_this ;
          ]
        ) ;
    ] ;
  rdfs:subClassOf owl:Thing ;
.
