Variable type leaf node


URI

https://w3id.org/icare4cvd/varType

Label

Variable type

Description

The data type of the variable: STR, INT, FLOAT, DATETIME

Usage

DOMAINPROPERTYRANGE
Variable Variable type string

Implementation

@prefix icare: <https://w3id.org/icare4cvd/> .
@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#> .

icare:varType a owl:DatatypeProperty ;
    rdfs:label "Variable type"@en ;
    rdfs:comment "The data type of the variable: STR, INT, FLOAT, DATETIME"@en ;
    rdfs:domain icare:Variable ;
    rdfs:isDefinedBy icare: ;
    rdfs:range xsd:string .