http://www.w3.org/ns/oa#motivatedBy
The relationship between an Annotation and a Motivation, indicating the reasons why the Annotation was created.
Each Annotation SHOULD have at least one oa:motivatedBy relationship, and MAY be more than 1.
DOMAIN | PROPERTY | RANGE |
---|---|---|
oa:#Annotation | oa:#motivatedBy | oa:#Motivation |
@prefix oa: <http://www.w3.org/ns/oa#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
oa:motivatedBy a owl:ObjectProperty ;
rdfs:label "motivatedBy"@en ;
rdfs:comment """The relationship between an Annotation and a Motivation, indicating the reasons why the Annotation was created.
Each Annotation SHOULD have at least one oa:motivatedBy relationship, and MAY be more than 1."""@en ;
rdfs:domain oa:Annotation ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:Motivation .