https://w3id.org/omop/ontology/value_source_value
For Measurement: This field houses the verbatim result value of the Measurement from the source data .
If both a continuous and categorical result are given in the source data such that both VALUE_AS_NUMBER and VALUE_AS_CONCEPT_ID are both included, store the verbatim value that was mapped to VALUE_AS_CONCEPT_ID here.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Measurement | Value source value | string |
@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:value_source_value a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:label "Value source value"^^xsd:string ;
rdfs:comment """For Measurement: This field houses the verbatim result value of the Measurement from the source data .
If both a continuous and categorical result are given in the source data such that both VALUE_AS_NUMBER and VALUE_AS_CONCEPT_ID are both included, store the verbatim value that was mapped to VALUE_AS_CONCEPT_ID here."""@en ;
rdfs:domain omop:Measurement ;
rdfs:range xsd:string ;
omop:omop_cdm_name "measurement.value_source_value#148 AS str"^^xsd:string .