https://w3id.org/omop/ontology/route_source_value
For Drug Exposure: This field houses the verbatim value from the source data representing the drug route.
This information may be called something different in the source data but the field is meant to contain a value indicating when and how a drug was given to a patient. This source value is mapped to a standard concept which is stored in the ROUTE_CONCEPT_ID field.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Drug exposure | Route 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:route_source_value a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:label "Route source value"^^xsd:string ;
rdfs:comment """For Drug Exposure: This field houses the verbatim value from the source data representing the drug route.
This information may be called something different in the source data but the field is meant to contain a value indicating when and how a drug was given to a patient. This source value is mapped to a standard concept which is stored in the ROUTE_CONCEPT_ID field."""@en ;
rdfs:domain omop:DrugExposure ;
rdfs:range xsd:string ;
omop:omop_cdm_name "drug_exposure.route_source_value#98 AS str"^^xsd:string .