CEDStandards / CEDS-Ontology

The CEDS Ontology is draft project to express the Common Education Data Standards (CEDS) in Web Ontology Language (OWL).
Apache License 2.0
6 stars 0 forks source link

How to say Person has PersonTelephone #27

Open philbarker opened 11 months ago

philbarker commented 11 months ago

As far as I can see, while there is a class :PersonTelephone there is no property to say that a person has that telephone (:hasTelephone Domain :Organization)

If you adopt loose semantics you could use Domain Includes :Person, :Organization

If you keep stricter semantics you could have a superclass :Agent

:hasTelephone rdfs:domain :Agent .
:Person rdfs:subClassOf :Agent .
:Organization rdfs:subClassOf :Agent .