@prefix owl: . @prefix rdf: . @prefix rdfs: . @prefix xsd: . @prefix this: . a owl:Ontology ; owl:versionInfo "2.0" ; owl:versionIRI ; owl:priorVersion ; owl:backwardCompatibleWith . this:ImportedClass a owl:Class . this:DeprecatedImportedClass a owl:Class ; owl:deprecated true . this:EquivalentImportedClassInLargeGroup a owl:Class . this:DivisibleByThreeEnumeration a rdfs:Datatype ; owl:equivalentClass [ a rdfs:Datatype ; owl:oneOf ( 3 6 9 12 15 18 ) ]. this:importedObjectPropertyWithRange a owl:ObjectProperty ; rdfs:range this:ImportedClass . this:importedObjectPropertyWithDomain a owl:TransitiveProperty ; rdfs:domain this:ImportedClass . this:importedDatatypeProperty a owl:DatatypeProperty ; rdfs:domain this:ImportedClass ; rdfs:range xsd:integer . this:deprecatedImportedObjectProperty a owl:ObjectProperty ; rdfs:range this:ImportedClass ; owl:deprecated true . this:deprecatedImportedDatatypeProperty a owl:DatatypeProperty ; rdfs:range xsd:date ; owl:deprecated true .