as:startIndex leaf node


URI

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

Label

startIndex

Description

In a strictly ordered logical collection, specifies the index position of the first item in the items list

Usage

DOMAINPROPERTYRANGE
as:OrderedCollectionPage as:startIndex 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:startIndex a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "startIndex"@en ;
    rdfs:comment "In a strictly ordered logical collection, specifies the index position of the first item in the items list"@en ;
    rdfs:domain as:OrderedCollectionPage ;
    rdfs:range xsd:nonNegativeInteger .