# filename: ex046.ttl @prefix ab: . @prefix rdf: . @prefix rdfs: . @prefix owl: . ab:i0432 ab:firstName "Richard" ; ab:lastName "Mutt" ; ab:spouse ab:i9771 . ab:i8301 ab:firstName "Craig" ; ab:lastName "Ellis" ; ab:patient ab:i9771 . ab:i9771 ab:firstName "Cindy" ; ab:lastName "Marshall" . ab:spouse rdf:type owl:SymmetricProperty ; rdfs:comment "Identifies someone's spouse" . ab:patient rdf:type rdf:Property ; rdfs:comment "Identifies a doctor's patient" . ab:doctor rdf:type rdf:Property ; rdfs:comment "Identifies a doctor treating the named resource" ; owl:inverseOf ab:patient .