# Base: file:/C:/Program%20Files/Protege_2.1_beta/projects-2004-03-05/Value-Sets/ @prefix rdfs: . @prefix rdf: . @prefix : <> . @prefix owl: . :Modifier a owl:Class . :poor_health a :Health_Value . :Person a owl:Class ; rdfs:subClassOf :Self_standing_entity . <> a owl:Ontology . :Self_standing_entity a owl:Class . a owl:Ontology . :has_health_status a owl:ObjectProperty , owl:FunctionalProperty ; rdfs:range :Health_Value . :John a :Person ; :has_health_status :good_health . :good_health a :Health_Value . :Healthy_person a owl:Class ; owl:equivalentClass [ a owl:Class ; owl:intersectionOf (:Person [ a owl:Restriction ; owl:hasValue :good_health ; owl:onProperty :has_health_status ]) ] . a owl:Ontology . :medium_health a :Health_Value . :Health_Value a owl:Class ; rdfs:subClassOf :Modifier ; owl:equivalentClass [ a owl:Class ; owl:oneOf (:good_health :medium_health :poor_health) ] .