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
Decedent Age
Decedent Age is a profile of the FHIR STU3 Observation resource. It is used to convey the decedent's chronological age at the time of death. When present, the effective date of this observation shall be equal to the decedent's date of death. Age (Observation.valueQuantity.value) is derived as the difference in time between the decedent's death date and birth date. When age is less than or equal to one day then unit shall be "minutes", when age is less than or equal to one year then unit shall be "days", otherwise unit shall be "years".
UML Expression
Structure Definition
Observation
|
|
|
Observation |
Data Type Observation
|
status
|
|
1..1
|
codeFixed Value
|
Short description status
Definition
SHALL contain exactly one [1..1] status="final" Final (CONF:4393-20).
Data Type code
Fixed Value
|
code
|
|
1..1
|
CodeableConceptFixed Value
|
Short description code
Definition
SHALL contain exactly one [1..1] code=" 30525-0" AGE (CodeSystem: LOINC urn:oid:2.16.840.1.113883.6.1) (CONF:4393-21).
Data Type CodeableConcept
Fixed Value
{
"coding": [
{
"system": "urn:oid:2.16.840.1.113883.6.1",
"code": "30525-0",
"display": "AGE"
}
]
}
|
subject
|
|
1..1
|
Reference(VRDR Decedent)
|
Short description subject
Definition
SHALL contain exactly one [1..1] subject (CONF:4393-22).
Data Type Reference(VRDR Decedent)
|
effective[x]
|
|
0..1
|
|
Short description effective[x]
Definition
MAY contain zero or one [0..1] effective[x], where effective[x] is (CONF:4393-17)
Sliced: Unordered, Open, by $this(Type)
|
effectiveDateTime
|
|
|
|
Short description effectiveDateTime
Definition
effectiveDateTime (CONF:4393-23)
|
value[x]
|
|
1..1
|
|
Short description value[x]
Definition
SHALL contain exactly one [1..1] value[x], where value[x] is (CONF:4393-18)
Sliced: Unordered, Open, by $this(Type)
|
valueQuantity
|
|
|
|
Short description valueQuantity
Definition
valueQuantity (CONF:4393-19)
|
value
|
|
1..1
|
|
Short description value
Definition
SHALL contain exactly one [1..1] value (CONF:4393-24).
|
unit
|
|
1..1
|
Binding |
Short description unit
Definition
SHALL contain exactly one [1..1] unit (CONF:4393-25).
Binding AgeUnitOfMeasure (required)
|
Element Bindings
Element Name |
Binding Type |
Binding Value |
Fixed Value Code System |
code |
Fixed Value |
"30525-0" |
LOINC |
status |
Fixed Value |
"final" |
observation-status |
subject |
Reference |
VRDR Decedent |
|
valueQuantity.unit |
Value Set |
AgeUnitOfMeasure |
|
Element Table
Observation |
|
.. |
Observation.status
|
code |
1..1 |
Observation.code
|
CodeableConcept |
1..1 |
Observation.subject
|
Reference(VRDR Decedent)
|
1..1 |
Observation.effective[x]
|
|
0..1 |
Observation.effectiveDateTime:effectiveDateTime
|
|
.. |
Observation.value[x]
|
|
1..1 |
Observation.valueQuantity:valueQuantity
|
|
.. |
Observation.valueQuantity:valueQuantity.value
|
|
1..1 |
Observation.valueQuantity:valueQuantity.unit
|
|
1..1 |
Requirements Traceability Mappings
Element Path |
Reference |
Location |
Data Item |
valueQuantity.value |
Vital Records DAM |
3.02 Decedent |
deathAge |
valueQuantity.value |
Death Certificate |
Item 4 |
Age [years, days, or minutes] |
valueQuantity.value |
Standard Death Record IG |
SDR Decedent Profile |
Patient.extension:age |
Instance Example
<Observation>
<id value="example-decedent-age" />
<meta>
<profile value="http://www.hl7.org/fhir/us/vrdr/decedentAge" />
</meta>
<status value="final" />
<code>
<coding>
<system value="urn:oid:2.16.840.1.113883.6.1" />
<code value="30525-0" />
<display value="AGE" />
</coding>
</code>
<subject>
<reference value="example-decedent" />
</subject>
<valueQuantity>
<value value="70" />
<unit value="a" />
</valueQuantity>
</Observation>