Admitted from source value leaf node


URI

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

Label

Admitted from source value

Description

For Visit Detail: 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, map to 0. [Accepted Concepts](https://athena.ohdsi.org/search-terms/terms?domain=Visit&standardConcept=Standard&page=1&pageSize=15&query=). - For Visit Occurrence: 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) Admitted from source value owl:Thing (inferred)

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:admitted_from_source_value a owl:DatatypeProperty,
        owl:FunctionalProperty ;
    rdfs:label "Admitted from source value"^^xsd:string ;
    rdfs:comment """For Visit Detail: 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, map to 0. [Accepted Concepts](https://athena.ohdsi.org/search-terms/terms?domain=Visit&standardConcept=Standard&page=1&pageSize=15&query=)."""@en,
        "For Visit Occurrence: 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 ;
    rdfs:domain [ a owl:Class ;
            owl:unionOf ( omop:VisitDetail omop:VisitOccurrence ) ] ;
    omop:omop_cdm_name "visit_detail.admitted_from_source_value#55 AS int"^^xsd:string,
        "visit_occurrence.admitted_from_source_value#38 AS str"^^xsd:string .