as:totalItems leaf node


URI

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

Label

totalItems

Description

The total number of items in a logical collection

Usage

DOMAINPROPERTYRANGE
as:Collection as:totalItems 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:totalItems a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "totalItems"@en ;
    rdfs:comment "The total number of items in a logical collection"@en ;
    rdfs:domain as:Collection ;
    rdfs:range xsd:nonNegativeInteger .