Update minimal base example

This commit is contained in:
erik 2023-06-22 11:58:12 +02:00
parent e0f9af5575
commit c5f800715f

View file

@ -27,4 +27,26 @@ xsd:duration a rdfs:Datatype .
# #
# Object Properties # Object Properties
# #
################################################################# #################################################################
as:actor a owl:ObjectProperty ;
rdfs:label "actor"@en ;
rdfs:domain as:Activity ;
rdfs:comment "Subproperty of as:attributedTo that identifies the primary actor"@en ;
rdfs:subPropertyOf as:attributedTo ;
rdfs:range [
a owl:Class ;
owl:unionOf (as:Object as:Link)
] .
as:attributedTo a owl:ObjectProperty ;
rdfs:label "attributedTo"@en;
rdfs:comment "Identifies an entity to which an object is attributed"@en;
rdfs:range [
a owl:Class ;
owl:unionOf (as:Object as:Link)
] ;
rdfs:domain [
a owl:Class ;
owl:unionOf (as:Object as:Link)
] ; .