FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packagehl7.fhir.au.base
Resource TypePatient
IdPatient-DateAccuracyIndicatorUEAexample3.json
FHIR VersionR4

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

Note: links and images are rebased to the (stated) source

This example demonstrates birth date and deceased date with unknown day, estimated month and accurate year.

Note that "2004-06-00" is NOT a valid FHIR date.

Details include:

  • A valid FHIR date example for birth date and deceased date is "2004-06-08” but not "2004-06-00".
  • A date accuracy indicator of "UEA" indicates that the day is unknown but month is an estimate and year is accurate.
  • When a code value contains "U", the corresponding date components (individual or combination) for birth or deceased dates must be ignored.
  • When a code value contains "A", the corresponding date components (individual or combination) for birth or deceased dates must be accurate.

Source1

{
  "resourceType": "Patient",
  "id": "DateAccuracyIndicatorUEAexample3",
  "text": {
    "status": "additional",
    "div": "<!-- snip (see above) -->"
  },
  "birthDate": "2004-06-08",
  "_birthDate": {
    "extension": [
      {
        "url": "http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator",
        "valueCoding": {
          "system": "https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1",
          "code": "UEA",
          "display": "Day is unknown, month is estimated, year is accurate"
        }
      }
    ]
  },
  "deceasedDateTime": "2004-06-08T13:42:00+10:00",
  "_deceasedDateTime": {
    "extension": [
      {
        "url": "http://hl7.org.au/fhir/StructureDefinition/date-accuracy-indicator",
        "valueCoding": {
          "system": "https://healthterminologies.gov.au/fhir/CodeSystem/date-accuracy-indicator-1",
          "code": "UEA",
          "display": "Day is unknown, month is estimated, year is accurate"
        }
      }
    ]
  }
}