oa:#styledBy leaf node


URI

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

Label

styledBy

Description

The relationship between a oa:Annotation and a oa:Style.

There MAY be 0 or 1 styledBy relationships for each Annotation.

If there are multiple Style resources that must be associated with the Annotation, then the use of the Multiplicity Constructs oa:Choice, oa:Composite or oa:List is RECOMMENDED.

Usage

DOMAINPROPERTYRANGE
oa:#Annotation oa:#styledBy oa:#Style

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

There MAY be 0 or 1 styledBy relationships for each Annotation.

If there are multiple Style resources that must be associated with the Annotation, then the use of the Multiplicity Constructs oa:Choice, oa:Composite or oa:List is RECOMMENDED."""@en ;
    rdfs:domain oa:Annotation ;
    rdfs:isDefinedBy oa: ;
    rdfs:range oa:Style .