oa:#start leaf node


URI

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

Label

start

Description

The starting position of the segment of text or bytes. The first character/byte in the full text/stream is position 0. The character/byte indicated at position oa:start is included within the selected segment.

See oa:DataPositionSelector and oa:TextPositionSelector.

Usage

DOMAINPROPERTYRANGE
oa:#Selector oa:#start xsd:nonNegativeInteger

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#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

oa:start a owl:DatatypeProperty ;
    rdfs:label "start"@en ;
    rdfs:comment """The starting position of the segment of text or bytes. The first character/byte in the full text/stream is position 0. The character/byte indicated at position oa:start is included within the selected segment. 

See oa:DataPositionSelector and oa:TextPositionSelector."""@en ;
    rdfs:domain oa:Selector ;
    rdfs:isDefinedBy oa: ;
    rdfs:range xsd:nonNegativeInteger .