Has admitted from leaf node


URI

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

Label

Has admitted from

Description

For Visit Occurrence: Use this field to determine where the patient was admitted from. This concept is part of the visit domain and can indicate if a patient was admitted to the hospital from a long-term care facility, for example.
If available, map the admitted_from_source_value to a standard concept in the visit domain. If not available set to 0. - For Visit Detail: This information may be called something different in the source data but the field is meant to contain a value indicating where a person was admitted from. Typically this applies only to visits that have a length of stay, like inpatient visits or long-term care visits.

Usage

DOMAINPROPERTYRANGE
Blank node (see implementation) Has admitted from 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 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:has_admitted_from a owl:FunctionalProperty,
        owl:ObjectProperty ;
    rdfs:label "Has admitted from"^^xsd:string ;
    owlready:python_name "admitted_from"^^xsd:string ;
    rdfs:comment "For Visit Detail: This information may be called something different in the source data but the field is meant to contain a value indicating where a person was admitted from. Typically this applies only to visits that have a length of stay, like inpatient visits or long-term care visits."@en,
        """For Visit Occurrence: Use this field to determine where the patient was admitted from. This concept is part of the visit domain and can indicate if a patient was admitted to the hospital from a long-term care facility, for example.
If available, map the admitted_from_source_value to a standard concept in the visit domain. If not available set to 0."""@en ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( omop:VisitDetail omop:VisitOccurrence ) ] ;
    rdfs:range omop:Concept ;
    omop:omop_cdm_name "visit_detail.admitted_from_concept_id#54 AS Concept"^^xsd:string,
        "visit_occurrence.admitted_from_concept_id#37 AS Concept"^^xsd:string .