Range high leaf node


URI

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

Label

Range high

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 high 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_high a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Range high"^^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_high#141 AS float"^^xsd:string .