If I have a simple ontology that includes a subproperty axiom:
ex:hasChair rdfs:subPropertyOf ex:hasParticipant .
I want to assert that "Paul Pill was the chair of the example conference, and Jack Jill was a participant in the example conference." Is it correct to write:
:exampleConference a ex:AcademicConference ;
ex:hasChair :paul_pill ;
ex:hasParticipant :jack_jill .
or do I also need to explicitly specify that Paul Pill was a participant (even though hasChair is a subproperty of hasParticipant)? That is, do I need to write:
:exampleConference a ex:AcademicConference ;
ex:hasChair :paul_pill ;
ex:hasParticipant :paul_pill, :jack_jill .