inverse-anonym-test.ttl
Home
/
src /
test /
resources /
inverse-anonym-test.ttl
#################################PREFIXES################################
@prefix : <https://owl2vowl.de/> .
@prefix this: <https://owl2vowl.de/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@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 schema: <http://schema.org/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
#################################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 ;
.