Stop reason leaf node


URI

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

Label

Stop reason

Description

For Condition Occurrence: The Stop Reason indicates why a Condition is no longer valid with respect to the purpose within the source data. Note that a Stop Reason does not necessarily imply that the condition is no longer occurring.
This information is often not populated in source data and it is a valid etl choice to leave it blank if the information does not exist. - For Drug Exposure: The reason a person stopped a medication as it is represented in the source. Reasons include regimen completed, changed, removed, etc. This field will be retired in v6.0.
This information is often not populated in source data and it is a valid etl choice to leave it blank if the information does not exist.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) Stop reason 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:stop_reason a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Stop reason"^^xsd:string ;
    rdfs:comment """For Condition Occurrence: The Stop Reason indicates why a Condition is no longer valid with respect to the purpose within the source data. Note that a Stop Reason does not necessarily imply that the condition is no longer occurring.
This information is often not populated in source data and it is a valid etl choice to leave it blank if the information does not exist."""@en,
        """For Drug Exposure: The reason a person stopped a medication as it is represented in the source. Reasons include regimen completed, changed, removed, etc. This field will be retired in v6.0.
This information is often not populated in source data and it is a valid etl choice to leave it blank if the information does not exist."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( omop:ConditionOccurrence omop:DrugExposure ) ] ;
    rdfs:range xsd:string ;
    omop:omop_cdm_name "condition_occurrence.stop_reason#70 AS str"^^xsd:string,
        "drug_exposure.stop_reason#86 AS str"^^xsd:string .