https://ontology.solveit-df.org/solveit/observable/fieldType
The declared column type from the CREATE TABLE statement (e.g. TEXT, INTEGER, VARCHAR(20)). This may differ from the type affinity SQLite computes from it.
| DOMAIN | PROPERTY | RANGE |
|---|---|---|
| solveit-observable:SQLiteFieldDefinition | solveit-observable:fieldType | xsd:string |
@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:fieldType a owl:DatatypeProperty ;
rdfs:label "field type"@en ;
rdfs:comment "The declared column type from the CREATE TABLE statement (e.g. TEXT, INTEGER, VARCHAR(20)). This may differ from the type affinity SQLite computes from it."@en ;
rdfs:domain solveit-observable:SQLiteFieldDefinition ;
rdfs:range xsd:string .