oa:#hasSelector leaf node


URI

http://www.w3.org/ns/oa#hasSelector

Label

hasSelector

Description

The relationship between a oa:SpecificResource and a oa:Selector.

There MUST be exactly 0 or 1 oa:hasSelector relationship associated with a
Specific Resource.

If multiple Selectors are required, either to express a choice between different optional, equivalent selectors, or a chain of selectors that should all be processed, it is necessary to use oa:Choice, oa:Composite or oa:List as a selector.

Usage

DOMAINPROPERTYRANGE
oa:#SpecificResource oa:#hasSelector oa:#Selector

Implementation

@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:hasSelector a owl:ObjectProperty ;
    rdfs:label "hasSelector"@en ;
    rdfs:comment """The relationship between a oa:SpecificResource and a oa:Selector.

There MUST be exactly 0 or 1 oa:hasSelector relationship associated with a 
Specific Resource. 

If multiple Selectors are required, either to express a choice between different optional, equivalent selectors, or a chain of selectors that should all be processed, it is necessary to use oa:Choice, oa:Composite or oa:List as a selector."""@en ;
    rdfs:domain oa:SpecificResource ;
    rdfs:isDefinedBy oa: ;
    rdfs:range oa:Selector .