COVID-19 FHIR Profile Library IG
0.14.0 - Informative Ballot

This page is part of the Logica COVID-19 FHIR Profile Library IG (v0.14.0: Drafts Ballot 2) based on FHIR R4. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions

: Example: Anyperson, Mary patient - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "patient-anyperson-mary",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"patient-anyperson-mary\" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"http://hl7.org/fhir/us/core/STU3.1/StructureDefinition-us-core-patient.html\">US Core Patient Profile</a></p></div><p><b>identifier</b>: Medical record number: MR456327 (USUAL)</p><p><b>name</b>: Mary Anyperson </p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1966-01-11</p><p><b>address</b>: 1234 Center St. Hometown Denial United States </p><h3>Contacts</h3><table class=\"grid\"><tr><td>-</td><td><b>Telecom</b></td></tr><tr><td>*</td><td>ph: 555-555-5555(MOBILE), <a href=\"mailto:example@example.com\">example@example.com</a></td></tr></table><h3>Communications</h3><table class=\"grid\"><tr><td>-</td><td><b>Language</b></td></tr><tr><td>*</td><td>English <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.0.0/CodeSystem-v3-ietf3066.html\">Tags for the Identification of Languages</a>#en-US)</span></td></tr></table></div>"
  },
  "identifier" : [
    {
      "use" : "usual",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "MR",
            "display" : "Medical record number"
          }
        ]
      },
      "system" : "http://acmehospital.exampleEHR.org",
      "value" : "MR456327"
    }
  ],
  "name" : [
    {
      "family" : "Anyperson",
      "given" : [
        "Mary"
      ]
    }
  ],
  "gender" : "female",
  "birthDate" : "1966-01-11",
  "address" : [
    {
      "line" : [
        "1234 Center St."
      ],
      "city" : "Hometown",
      "state" : "Denial",
      "country" : "United States"
    }
  ],
  "contact" : [
    {
      "telecom" : [
        {
          "system" : "phone",
          "value" : "555-555-5555",
          "use" : "mobile"
        },
        {
          "system" : "email",
          "value" : "example@example.com"
        }
      ]
    }
  ],
  "communication" : [
    {
      "language" : {
        "coding" : [
          {
            "system" : "urn:ietf:bcp:47",
            "code" : "en-US"
          }
        ],
        "text" : "English"
      }
    }
  ]
}