This page is part of the Vital Records Mortality and Morbidity Reporting FHIR IG (v0.1.0: STU 1 Ballot 1) based on FHIR R3. The current version which supercedes this version is 2.0.0. For a full list of available versions, see the Directory of published versions

Manner of Death

Manner of Death is a profile of the FHIR STU3 Observation resource. It is used to convey information regarding the manner of death as determined by the death Certifier.


UML Expression


Structure Definition

id 0..1
profile 1..1
status 1..1 codeFixed Value
code 1..1 CodeableConceptFixed Value
subject 1..1 Reference(Patient)
performer 1..1 Reference(Practitioner)
value[x] 1..1
valueCodeableConcept

Element Bindings

Element Name Binding Type Binding Value Fixed Value Code System
code Fixed Value "69449-7" LOINC
performer Reference VRDR Certifier
status Fixed Value "final" observation-status
subject Reference VRDR Decedent
valueCodeableConcept Value Set DispositionTypeVS

Element Table

Observation ..
Observation.id 0..1
Observation.meta 0..1
Observation.meta.profile 1..1
Observation.status code 1..1
Observation.code CodeableConcept 1..1
Observation.subject Reference(Patient) 1..1
Observation.performer Reference(Practitioner) 1..1
Observation.value[x] 1..1
Observation.valueCodeableConcept:valueCodeableConcept ..


Requirements Traceability Mappings

Element Path Reference Location Data Item
valueCodeableConcept Vital Records DAM 2.1.01 Death Event deathMeans
valueCodeableConcept Death Certificate Item 37 Manner of Death
valueCodeableConcept Standard Death Record IG SDR MannerOfDeath Profile Observation.valueCodeableConcept

Instance Example

<Observation>
  <id value="manner-of-death-example" />
  <meta>
    <profile value="http://www.hl7.org/fhir/us/vrdr/StructureDefinition/VRDR-Manner-of-Death" />
  </meta>
  <status value="final" />
  <code>
    <coding>
      <system value="http://loinc.org" />
      <code value="69449-7" />
      <display value="Manner of death" />
    </coding>
  </code>
  <subject>
    <reference value="example-decedent" />
  </subject>
  <performer>
    <reference value="example-practitioner" />
  </performer>
  <valueCodeableConcept>
    <coding>
      <system value="http://www.hl7.org/fhir/stu3/valueset-MannerTypeVS" />
      <code value="7878000" />
      <display value="Accident" />
    </coding>
  </valueCodeableConcept>
</Observation>