AeHIN Medical Certificate of Cause of Death (MCCoD) Implementation Guide
0.1.0 - Draft for AeHIN Member Review Asia

Bangladesh Core FHIR Implementation Guide - Published by Ministry of Health and Family Welfare. See the Directory of published versions

: MCCoD Patient Example (Deceased) - TTL Representation

Raw ttl | Download


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

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

 a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "patient-001"] ; # 
  fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient patient-001</b></p><a name=\"patient-001\"> </a><a name=\"hcpatient-001\"> </a><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Mohammad Ali Rahman  Male, DoB: 1980-03-15 ( http://example.org/national-id#1234567890123)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Known status of Patient\">Deceased:</td><td colspan=\"3\">2026-05-19 23:45:00+0600</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\">House 12, Road 5, Dhanmondi, Dhaka, Bangladesh</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
fhir:system [
fhir:v "http://example.org/national-id"^^xsd:anyURI ;
fhir:l <http://example.org/national-id>     ] ;
fhir:value [ fhir:v "1234567890123" ]
  ] ) ; # 
  fhir:name ( [
fhir:family [ fhir:v "Rahman" ] ;
    ( fhir:given [ fhir:v "Mohammad" ] [ fhir:v "Ali" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:birthDate [ fhir:v "1980-03-15"^^xsd:date] ; # 
  fhir:deceased [
a fhir:DateTime ;
fhir:v "2026-05-19T23:45:00+06:00"^^xsd:dateTime
  ] ; # 
  fhir:address ( [
fhir:text [ fhir:v "House 12, Road 5, Dhanmondi, Dhaka, Bangladesh" ]
  ] ) . #