http://www.w3.org/ns/oa#hasState
The relationship between a oa:SpecificResource and a oa:State resource.
There MAY be 0 or 1 oa:hasState relationship for each SpecificResource.
If there are multiple State resources that must be associated with the specific resource, then the use of the Multiplicity Constructs oa:Choice, oa:Composite or oa:List is RECOMMENDED.
DOMAIN | PROPERTY | RANGE |
---|---|---|
oa:#SpecificResource | oa:#hasState | oa:#State |
@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:hasState a owl:ObjectProperty ;
rdfs:label "hasState"@en ;
rdfs:comment """The relationship between a oa:SpecificResource and a oa:State resource.
There MAY be 0 or 1 oa:hasState relationship for each SpecificResource.
If there are multiple State resources that must be associated with the specific resource, then the use of the Multiplicity Constructs oa:Choice, oa:Composite or oa:List is RECOMMENDED."""@en ;
rdfs:domain oa:SpecificResource ;
rdfs:isDefinedBy oa: ;
rdfs:range oa:State .