Unit source value leaf node


URI

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

Label

Unit source value

Description

For Observation: This field houses the verbatim value from the source data representing the unit of the Observation that occurred.
This code is mapped to a Standard Condition Concept in the Standardized Vocabularies and the original code is stored here for reference. - For Measurement: This field houses the verbatim value from the source data representing the unit of the Measurement that occurred.
This code is mapped to a Standard Condition Concept in the Standardized Vocabularies and the original code is stored here for reference. - For Specimen: This unit for the quantity of the specimen, as represented in the source.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) Unit source value string

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:unit_source_value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Unit source value"^^xsd:string ;
    rdfs:comment """For Measurement: This field houses the verbatim value from the source data representing the unit of the Measurement that occurred.
This code is mapped to a Standard Condition Concept in the Standardized Vocabularies and the original code is stored here for reference."""@en,
        """For Observation: This field houses the verbatim value from the source data representing the unit of the Observation that occurred.
This code is mapped to a Standard Condition Concept in the Standardized Vocabularies and the original code is stored here for reference."""@en,
        "For Specimen: This unit for the quantity of the specimen, as represented in the source."@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( omop:Observation omop:Measurement omop:Specimen ) ] ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "measurement.unit_source_value#147 AS str"^^xsd:string,
        "observation.unit_source_value#165 AS str"^^xsd:string,
        "specimen.unit_source_value#219 AS str"^^xsd:string .