http://www.w3.org/ns/oa#default
The constituent resource of a oa:Choice to use as a default option, if there is no other means to determine which would be most appropriate.
There SHOULD be exactly 1 default relationship for each Choice.
DOMAIN | PROPERTY | RANGE |
---|---|---|
oa:#Choice | oa:#default | owl:Thing (inferred) |
@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:default a owl:ObjectProperty ;
rdfs:label "default"@en ;
rdfs:comment """The constituent resource of a oa:Choice to use as a default option, if there is no other means to determine which would be most appropriate.
There SHOULD be exactly 1 default relationship for each Choice."""@en ;
rdfs:domain oa:Choice ;
rdfs:isDefinedBy oa: ;
rdfs:subPropertyOf oa:item .