QI-Core Implementation Guide
6.0.0 - STU6 United States of America flag

QI-Core Implementation Guide, published by HL7 International / Clinical Quality Information. This guide is not an authorized publication; it is the continuous build for version 6.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/fhir-qi-core/ and changes regularly. See the Directory of published versions

: 65+ Female patient example - JSON Representation

Raw json | Download


{
  "resourceType" : "Patient",
  "id" : "example-2",
  "meta" : {
    "profile" : [
      🔗 "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Sarah Hugankiss (OFFICIAL)</b> female, DoB: 1946-09-25 ( Medical record number/12345\u00a0(use:\u00a0USUAL,\u00a0period:\u00a01995-05-06 --&gt; (ongoing)))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td>true</td><td style=\"background-color: #f3f5da\" title=\"Known status of Patient\">Deceased:</td><td colspan=\"3\">false</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li>ph: (202) 212 1212(MOBILE)</li><li>1600 Pennslyvania Ave(HOME)</li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Nominated Contact: Next-of-Kin\">Next-of-Kin:</td><td colspan=\"3\"><ul><li>Bénédicte du Marché  (female)</li><li>534 Erewhon St PleasantVille VT 3999 (HOME)</li><li><a href=\"tel:+33(237)998327\">+33 (237) 998327</a></li><li>Valid Period: 2012 --&gt; (ongoing)</li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>Managing Organization: <a href=\"Organization-example.html\">Organization/example</a> &quot;Health Level Seven International&quot;</li></ul></td></tr></table></div>"
  },
  "identifier" : [
    {
      "use" : "usual",
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "MR"
          }
        ]
      },
      "system" : "urn:oid:1.2.36.146.595.217.0.1",
      "value" : "12345",
      "period" : {
        "start" : "1995-05-06"
      },
      "assigner" : {
        "display" : "Acme Healthcare"
      }
    }
  ],
  "active" : true,
  "name" : [
    {
      "use" : "official",
      "family" : "Hugankiss",
      "given" : [
        "Sarah"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "(202) 212 1212",
      "use" : "mobile",
      "rank" : 1
    }
  ],
  "gender" : "female",
  "birthDate" : "1946-09-25",
  "_birthDate" : {
    "extension" : [
      {
        "url" : "http://hl7.org/fhir/StructureDefinition/patient-birthTime",
        "valueDateTime" : "1946-09-25T14:35:45-05:00"
      }
    ]
  },
  "deceasedBoolean" : false,
  "address" : [
    {
      "use" : "home",
      "type" : "both",
      "text" : "1600 Pennslyvania Ave",
      "line" : [
        "1600 Pennslyvania Ave"
      ],
      "city" : "Washington DC",
      "state" : "DC",
      "postalCode" : "20500",
      "period" : {
        "start" : "1946-12-25"
      }
    }
  ],
  "contact" : [
    {
      "relationship" : [
        {
          "coding" : [
            {
              "system" : "http://terminology.hl7.org/CodeSystem/v2-0131",
              "code" : "N"
            }
          ]
        }
      ],
      "name" : {
        "family" : "du Marché",
        "_family" : {
          "extension" : [
            //     the "du" part is a family name prefix (VV in iso 21090)    
            {
              "url" : "http://hl7.org/fhir/StructureDefinition/humanname-own-prefix",
              "valueString" : "VV"
            }
          ]
        },
        "given" : [
          "Bénédicte"
        ]
      },
      "telecom" : [
        {
          "system" : "phone",
          "value" : "+33 (237) 998327"
        }
      ],
      "address" : {
        "use" : "home",
        "type" : "both",
        "line" : [
          "534 Erewhon St"
        ],
        "city" : "PleasantVille",
        "district" : "Rainbow",
        "state" : "VT",
        "postalCode" : "3999",
        "period" : {
          "start" : "1974-12-25"
        }
      },
      "gender" : "female",
      "period" : {
        "start" : "2012"
      }
    }
  ],
  "managingOrganization" : //     The contact relationship started in 2012    
  {
    🔗 "reference" : "Organization/example"
  }
}