solveit-observable:SQLiteFieldDefinition leaf node


URI

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

Label

SQLite Field Definition

Description

A column definition within a SQLite schema.

Usage

Instances of solveit-observable:SQLiteFieldDefinition can have the following properties:

PROPERTYTYPEDESCRIPTIONRANGE
From class solveit-observable:SQLiteFieldDefinition
solveit-observable:fieldIndex owl:DatatypeProperty Zero-based position within the schema. xsd:integer
solveit-observable:fieldName owl:DatatypeProperty The column name in the schema. xsd:string
solveit-observable:fieldType owl:DatatypeProperty SQLite type affinity: TEXT, INTEGER, REAL, BLOB, NULL. xsd:string
solveit-observable:isPrimaryKey owl:DatatypeProperty Whether this field is the primary key. xsd:boolean

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 uco-observable: <https://ontology.unifiedcyberontology.org/uco/observable/> .

solveit-observable:SQLiteFieldDefinition a owl:Class ;
    rdfs:label "SQLite Field Definition"@en ;
    rdfs:comment "A column definition within a SQLite schema."@en ;
    rdfs:subClassOf uco-observable:ObservableObject .