Range low leaf node


URI

https://w3id.org/omop/ontology/range_low

Label

Range low

Description

For Measurement: Ranges have the same unit as the VALUE_AS_NUMBER. These ranges are provided by the source and should remain NULL if not given.
If reference ranges for upper and lower limit of normal as provided (typically by a laboratory) these are stored in the RANGE_HIGH and RANGE_LOW fields. This should be set to NULL if not provided.

Usage

DOMAINPROPERTYRANGE
Measurement Range low decimal

Implementation

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

omop:range_low a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Range low"^^xsd:string ;
    rdfs:comment """For Measurement: Ranges have the same unit as the VALUE_AS_NUMBER. These ranges are provided by the source and should remain NULL if not given.
If reference ranges for upper and lower limit of normal as provided (typically by a laboratory) these are stored in the RANGE_HIGH and RANGE_LOW fields. This should be set to NULL if not provided."""@en ;
    rdfs:domain omop:Measurement ;
    rdfs:range xsd:decimal ;
    omop:omop_cdm_name "measurement.range_low#140 AS float"^^xsd:string .