FHIR Implementation Guide for ABDM 4.0.0 - active
FHIR Implementation Guide for ABDM - Local Development build (v4.0.0). See the Directory of published versions
Raw ttl | Download
@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:Encounter ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example-01"] ; # fhir:meta [ fhir:lastUpdated [ fhir:v "2020-07-09T14:58:58.181+05:30"^^xsd:dateTime ] ; ( fhir:profile [ fhir:v "https://nrces.in/ndhm/fhir/r4/StructureDefinition/Encounter"^^xsd:anyURI ; fhir:link <https://nrces.in/ndhm/fhir/r4/StructureDefinition/Encounter> ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"> Admitted to Cardiac Unit,UVW Hospital between June 28 and July 9 2020</div>" ] ; # fhir:identifier ( [ fhir:system [ fhir:v "https://ndhm.in"^^xsd:anyURI ] ; fhir:value [ fhir:v "S100" ] ] ) ; # fhir:status [ fhir:v "finished"] ; # fhir:class [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActCode"^^xsd:anyURI ] ; fhir:code [ fhir:v "IMP" ] ; fhir:display [ fhir:v "inpatient encounter" ] ] ; # fhir:subject [ fhir:reference [ fhir:v "Patient/example-01" ] ] ; # fhir:period [ fhir:start [ fhir:v "2020-04-20T15:32:26.605+05:30"^^xsd:dateTime ] ; fhir:end [ fhir:v "2020-05-01T15:32:26.605+05:30"^^xsd:dateTime ] ] ; # fhir:hospitalization [ fhir:dischargeDisposition [ ( fhir:coding [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/discharge-disposition"^^xsd:anyURI ] ; fhir:code [ fhir:v "home" ] ; fhir:display [ fhir:v "Home" ] ] ) ; fhir:text [ fhir:v "Discharged to Home Care" ] ] ] . #