Has discharge to leaf node


URI

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

Label

Has discharge to

Description

For Visit Detail: Use this field to determine where the patient was discharged to after a visit detail record. This concept is part of the visit domain and can indicate if a patient was discharged to home or sent to a long-term care facility, for example.
If available, map the DISCHARGE_TO_SOURCE_VALUE to a Standard Concept in the Visit domain. If not available, set to 0. [Accepted Concepts](https://athena.ohdsi.org/search-terms/terms?domain=Visit&standardConcept=Standard&page=1&pageSize=15&query=). - For Visit Occurrence: Use this field to determine where the patient was discharged to after a visit. This concept is part of the visit domain and can indicate if a patient was discharged to home or sent to a long-term care facility, for example.
If available, map the discharge_to_source_value to a standard concept in the visit domain. If not available set to 0.

Usage

DOMAINPROPERTYRANGE
Base visit Has discharge to Concept

Implementation

@prefix omop: <https://w3id.org/omop/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix owlready: <http://www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

omop:has_discharge_to a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has discharge to"^^xsd:string ;
    owlready:python_name "discharge_to"^^xsd:string ;
    rdfs:comment """For Visit Detail: Use this field to determine where the patient was discharged to after a visit detail record. This concept is part of the visit domain and can indicate if a patient was discharged to home or sent to a long-term care facility, for example.
If available, map the DISCHARGE_TO_SOURCE_VALUE to a Standard Concept in the Visit domain. If not available, set to 0. [Accepted Concepts](https://athena.ohdsi.org/search-terms/terms?domain=Visit&standardConcept=Standard&page=1&pageSize=15&query=)."""@en,
        """For Visit Occurrence: Use this field to determine where the patient was discharged to after a visit. This concept is part of the visit domain and can indicate if a patient was discharged to home or sent to a long-term care facility, for example.
If available, map the discharge_to_source_value to a standard concept in the visit domain. If not available set to 0."""@en ;
    rdfs:domain omop:BaseVisit ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "visit_detail.discharge_to_concept_id#57 AS Concept"^^xsd:string,
        "visit_occurrence.discharge_to_concept_id#39 AS Concept"^^xsd:string .