International Patient Summary Implementation Guide
1.0.0 - STU 1

This page is part of the International Patient Summary Implementation Guide (v1.0.0: STU 1) based on FHIR R4. The current version which supercedes this version is 1.1.0. For a full list of available versions, see the Directory of published versions

Patient: female patient - JSON Representation

(back to description)

Raw json

Source view

{
  "resourceType" : "Patient",
  "id" : "patient-example-female",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative with Details</b></p><p><b>id</b>: patient-example-female</p><p><b>identifier</b>: 574687583</p><p><b>active</b>: true</p><p><b>name</b>: Martha DeLarosa </p><p><b>telecom</b>: ph: +31788700800(HOME)</p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1992-05-01</p><p><b>address</b>: Laan Van Europa 1600 Dordrecht 3317 DB NL </p><h3>Contacts</h3><table class=\"grid\"><tr><td>-</td><td><b>Relationship</b></td><td><b>Name</b></td><td><b>Telecom</b></td><td><b>Address</b></td></tr><tr><td>*</td><td>mother <span style=\"background: LightGoldenRodYellow\">(Details : {http://terminology.hl7.org/CodeSystem/v3-RoleCode code 'MTH' = 'mother)</span></td><td>Martha Mum </td><td>ph: +33-555-20036(HOME)</td><td>Promenade des Anglais 111 Lyon 69001 FR </td></tr></table></div>"
  },
  "identifier" : [
    {
      "system" : "urn:oid:2.16.840.1.113883.2.4.6.3",
      "value" : "574687583"
    }
  ],
  "active" : true,
  "name" : [
    {
      "family" : "DeLarosa",
      "given" : [
        "Martha"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "+31788700800",
      "use" : "home"
    }
  ],
  "gender" : "female",
  "birthDate" : "1992-05-01",
  "address" : [
    {
      "line" : [
        "Laan Van Europa 1600"
      ],
      "city" : "Dordrecht",
      "postalCode" : "3317 DB",
      "country" : "NL"
    }
  ],
  "contact" : [
    {
      "relationship" : [
        {
          "coding" : [
            {
              "system" : "http://terminology.hl7.org/CodeSystem/v3-RoleCode",
              "code" : "MTH"
            }
          ]
        }
      ],
      "name" : {
        "family" : "Mum",
        "given" : [
          "Martha"
        ]
      },
      "telecom" : [
        {
          "system" : "phone",
          "value" : "+33-555-20036",
          "use" : "home"
        }
      ],
      "address" : {
        "line" : [
          "Promenade des Anglais 111"
        ],
        "city" : "Lyon",
        "postalCode" : "69001",
        "country" : "FR"
      }
    }
  ]
}