as:width leaf node


URI

http://www.w3.org/ns/activitystreams#width

Label

width

Description

Specifies the preferred display width of the content, expressed in terms of device independent pixels.

Usage

DOMAINPROPERTYRANGE
as:Link as:width xsd:nonNegativeInteger

Implementation

@prefix as: <http://www.w3.org/ns/activitystreams#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

as:width a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "width"@en ;
    rdfs:comment "Specifies the preferred display width of the content, expressed in terms of device independent pixels."@en ;
    rdfs:domain as:Link ;
    rdfs:range xsd:nonNegativeInteger .