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

FHIR IG analytics

Packagehl7.fhir.au.base
Resource TypePatient
IdPatient-example3.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

id: example3

name: John Smith

telecom: jsmith@amail.com.au

birthDate: 1956-08-23

birthTime: 14:35:45-05:00

address: 10 Smith Street Neutral Bay NSW 2055 Australia


Source1

{
  "resourceType": "Patient",
  "id": "example3",
  "meta": {
    "profile": [
      "http://hl7.org.au/fhir/StructureDefinition/au-patient"
    ]
  },
  "text": {
    "status": "extensions",
    "div": "<!-- snip (see above) -->"
  },
  "name": [
    {
      "family": "Smith",
      "given": [
        "John"
      ]
    }
  ],
  "telecom": [
    {
      "system": "email",
      "value": "jsmith@amail.example.com"
    }
  ],
  "birthDate": "1956-08-23",
  "_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": "AAA",
          "display": "Day, month and year are accurate"
        }
      },
      {
        "url": "http://hl7.org/fhir/StructureDefinition/patient-birthTime",
        "valueDateTime": "1956-08-23T14:35:45-05:00"
      }
    ]
  },
  "address": [
    {
      "line": [
        "10 Smith Street"
      ],
      "city": "Neutral Bay",
      "state": "NSW",
      "postalCode": "2055",
      "country": "Australia"
    }
  ]
}