Suppose i have an OWL-class as following:
:picture rdf:type owl:Class ;
owl:unionOf(:creator :theme :title :date) .
With :creator
, :theme
, :title
and :date
either an owl:ObjectProperty
or owl:DataProperty
.
For example:
:creator rdf:type owl:ObjectProperty ;
rdfs:comment "The creator of this picture." ;
rdfs:domain :picture ;
rdfs:range foaf:Person .
How can i create an instance of this picture class ?
(I understand how i create an instance of an easy thing such as : <http://dbpedia.org/resource/Paris> rdf:type :location .
would be an instance of a location)