oa:#styleClass leaf node


URI

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

Label

styleClass

Description

The string name of the class used in the CSS description that should be applied to the Specific Resource.

There MAY be 0 or more styleClass properties on a Specific Resource.

See oa:CssStyle.

Usage

DOMAINPROPERTYRANGE
oa:#SpecificResource oa:#styleClass owl:Thing (inferred)

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:styleClass a owl:DatatypeProperty ;
    rdfs:label "styleClass"@en ;
    rdfs:comment """The string name of the class used in the CSS description that should be applied to the Specific Resource.

There MAY be 0 or more styleClass properties on a Specific Resource.

See oa:CssStyle."""@en ;
    rdfs:domain oa:SpecificResource ;
    rdfs:isDefinedBy oa: .