https://w3id.org/omop/ontology/status_source_value
For Condition Occurrence: This field houses the verbatim value from the source data representing the condition status.
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 diagnosis was given to a patient. This source value is mapped to a standard concept which is stored in the CONDITION_STATUS_CONCEPT_ID field.
DOMAIN | PROPERTY | RANGE |
---|---|---|
Condition occurrence | Status 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:status_source_value a owl:DatatypeProperty,
owl:FunctionalProperty ;
rdfs:label "Status source value"^^xsd:string ;
rdfs:comment """For Condition Occurrence: This field houses the verbatim value from the source data representing the condition status.
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 diagnosis was given to a patient. This source value is mapped to a standard concept which is stored in the CONDITION_STATUS_CONCEPT_ID field."""@en ;
rdfs:domain omop:ConditionOccurrence ;
rdfs:range xsd:string ;
omop:omop_cdm_name "condition_occurrence.condition_status_source_value#76 AS str"^^xsd:string .