http://omv.ontoware.org/2005/05/ontology#Person
Instances of ontology:Person can have the following properties:
@prefix : <http://omv.ontoware.org/2005/05/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
:Person a owl:Class ;
rdfs:label "Person"^^xsd:string ;
rdfs:comment "A named individual. Represents an individual responsible for the creation, or contribution to an ontology"^^xsd:string ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty :firstName ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty :lastName ],
[ a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty :firstName ],
[ a owl:Restriction ;
owl:allValuesFrom :Organisation ;
owl:onProperty :isContactPerson ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty :faxNumber ],
[ a owl:Restriction ;
owl:cardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty :lastName ],
[ a owl:Restriction ;
owl:minCardinality "1"^^xsd:nonNegativeInteger ;
owl:onProperty :eMail ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty :phoneNumber ],
[ a owl:Restriction ;
owl:allValuesFrom xsd:string ;
owl:onProperty :eMail ],
:Party .