COVID-19 FHIR Profile Library IG Informative Version
1.0.0 - Informative United States of America flag

COVID-19 FHIR Profile Library IG Informative Version, published by HL7 International - Clinical Information Modeling Initiative. This is not an authorized publication; it is the continuous build for version 1.0.0). This version is based on the current content of https://github.com/HL7/fhir-COVID19Library-ig/ and changes regularly. 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>Mary Anyperson </b> female, DoB: 1966-01-11 ( Medical record number: MR456327 (USUAL))</p></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"
      }
    }
  ]
}