solveit-observable:rowid leaf node


URI

https://ontology.solveit-df.org/solveit/observable/rowid

Label

rowid

Description

The rowid of this record within its table's B-tree. Omitted for records from WITHOUT ROWID tables.

Usage

DOMAINPROPERTYRANGE
solveit-observable:SQLiteRecord solveit-observable:rowid xsd:integer

Implementation

@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix solveit-observable: <https://ontology.solveit-df.org/solveit/observable/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

solveit-observable:rowid a owl:DatatypeProperty ;
    rdfs:label "rowid"@en ;
    rdfs:comment "The rowid of this record within its table's B-tree. Omitted for records from WITHOUT ROWID tables."@en ;
    rdfs:domain solveit-observable:SQLiteRecord ;
    rdfs:range xsd:integer .