Release 4 5 Ballot

This page is part of the FHIR Specification (v4.0.1: R4 (v5.0.0-ballot: R5 Ballot - Mixed Normative and STU see ballot notes ) in it's permanent home (it will always be available at this URL). ). The current version which supercedes this version is 5.0.0 . For a full list of available versions, see the Directory of published versions . Page versions: R4B R4 R3

Using Codes Code Systems Value Sets Concept Maps Identifier Systems 4.3.14.314 Code System http://terminology.hl7.org/CodeSystem/admit-source

Example GenomicStudy/genomicPatient (Turtle)

Committee:
Patient Administration Clinical Genomics Work Group   Maturity Level : 0 N/A Informative Use Context Standards Status : Any This is a code system defined by the FHIR project. Summary Defining URL: http://terminology.hl7.org/CodeSystem/admit-source Version: 4.0.1 Name: AdmitSource Title: Informative Admit source Definition: Compartments : Patient This value set defines a set of codes that can be used to indicate from where the patient came in.

Raw Turtle Admit source (+ also see Turtle/RDF Format Specification )

This value set defines a set of codes that can be used to indicate from where the patient came in. Patient - Genomic

@prefix fhir: <http://hl7.org/fhir/> .
@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#> .

# - resource -------------------------------------------------------------------

[a fhir:Patient;
  fhir:nodeRole fhir:treeRoot;
  fhir:Resource.id [ fhir:value "genomicPatient"];
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ];
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>John Junior Doe (OFFICIAL)</b> (no stated gender) 2001-01-01 ( Medical record number: 11117 (TEMP))</p></div>"
  ];
  fhir:Patient.identifier [
     fhir:index 0;
     fhir:Identifier.use [ fhir:value "temp" ];
     fhir:Identifier.type [
       fhir:CodeableConcept.coding [
         fhir:index 0;
         fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
         fhir:Coding.code [ fhir:value "MR" ];
         fhir:Coding.display [ fhir:value "Medical record number" ]
       ]
     ];
     fhir:Identifier.system [ fhir:value "http://www.somesystemabc.net/identifiers/persons" ];
     fhir:Identifier.value [ fhir:value "11117" ];
     fhir:Identifier.period [
       fhir:Period.start [ fhir:value "2021-01-01"^^xsd:date ]
     ];
     fhir:Identifier.assigner [
       fhir:Reference.display [ fhir:value "General Hospital" ]
     ]
  ];
  fhir:Patient.active [ fhir:value "true"^^xsd:boolean];
  fhir:Patient.name [
     fhir:index 0;
     fhir:HumanName.use [ fhir:value "official" ];
     fhir:HumanName.family [ fhir:value "Doe" ];
     fhir:HumanName.given [
       fhir:value "John";
       fhir:index 0
     ], [
       fhir:value "Junior";
       fhir:index 1
     ]
  ];
  fhir:Patient.gender [ fhir:value "unknown"];
  fhir:Patient.birthDate [ fhir:value "2001-01-01"^^xsd:date]] .

# - ontology header ------------------------------------------------------------

[a owl:Ontology;
  owl:imports fhir:fhir.ttl] .

# -------------------------------------------------------------------------------------


This code system http://terminology.hl7.org/CodeSystem/admit-source defines the following codes: Code Display Definition hosp-trans Transferred from other hospital The Patient has been transferred from another hospital for this encounter. emd From accident/emergency department The patient has been transferred from the emergency department within the hospital. This is typically used in the transition to an inpatient encounter outp From outpatient department The patient Usage note: every effort has been transferred from an outpatient department within the hospital. born Born in hospital The patient is a newborn and the encounter will track the baby related activities (as opposed made to the Mothers encounter - ensure that may be associated using the newborn encounters partof property) gp General Practitioner referral The patient has been admitted due to a referred from a General Practitioner. mp Medical Practitioner/physician referral The patient has been admitted due to a referred from a Specialist (as opposed to a General Practitioner). nursing From nursing home The patient has been transferred from a nursing home. psych From psychiatric hospital The patient has been transferred from a psychiatric facility. rehab From rehabilitation facility The patient has been transferred from a rehabilitation facility or clinic. other Other The patient has been admitted from a source otherwise not specified here.   See the full registry of code systems defined as part of FHIR. Explanation of the columns that may appear on this page: Level A few code lists that FHIR defines examples are correct and useful, but they are hierarchical - each code is assigned a level. See Code System for further information. Source The source of the definition of the code (when the value set draws in codes defined elsewhere) Code The code (used as the code in the resource instance). If the code is in italics, this indicates that the code is not selectable ('Abstract') Display The display (used in the display element of a Coding ). If there is no display, implementers should not simply display the code, but map the concept into their application Definition An explanation of the meaning normative part of the concept Comments Additional notes about how to use the code specification.