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:Patient ; fhir:nodeRole fhir:treeRoot ; fhir:id [ fhir:v "example-01"] ; # fhir:meta [ fhir:versionId [ fhir:v "1" ] ; 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/Patient"^^xsd:anyURI ; fhir:link <https://nrces.in/ndhm/fhir/r4/StructureDefinition/Patient> ] ) ] ; # fhir:text [ fhir:status [ fhir:v "generated" ] ; fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\">Patient name - ABC, Age- 41 year,Gender- Male</div>" ] ; # fhir:identifier ( [ fhir:type [ ( fhir:coding [ fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ; fhir:code [ fhir:v "MR" ] ; fhir:display [ fhir:v "Medical record number" ] ] ) ] ; fhir:system [ fhir:v "https://healthid.ndhm.gov.in"^^xsd:anyURI ] ; fhir:value [ fhir:v "22-7225-4829-5255" ] ] ) ; # fhir:name ( [ fhir:text [ fhir:v "Ayush Sharma" ] ] ) ; # fhir:telecom ( [ fhir:system [ fhir:v "phone" ] ; fhir:value [ fhir:v "+919818512600" ] ; fhir:use [ fhir:v "home" ] ] ) ; # fhir:gender [ fhir:v "male"] ; # fhir:birthDate [ fhir:v "1981-01-12"^^xsd:date] . #