#################################PREFIXES################################ @prefix : . @prefix this: . @prefix dcterms: . @prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix schema: . @prefix xsd: . #################################ONTOLOGY################################# this:schema a owl:Ontology ; dcterms:title "OWL2VOWL Testing" ; . #################################ENTITIES################################## :propertyA a owl:ObjectProperty ; rdfs:domain :classA ; rdfs:range :classB ; . :propertyB owl:inverseOf :propertyA ; .