Update minimal base example
This commit is contained in:
parent
e0f9af5575
commit
c5f800715f
1 changed files with 23 additions and 1 deletions
|
@ -28,3 +28,25 @@ xsd:duration a rdfs:Datatype .
|
|||
# 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)
|
||||
] ; .
|
Loading…
Reference in a new issue