Qi-Core Implementation Guide (Release 2.1 Trial-Use Ballot)

This page is part of the Quality Improvement Core Framework (v2.1.0: STU 3 Ballot 1) based on FHIR R3. The current version which supercedes this version is 4.1.1. For a full list of available versions, see the Directory of published versions

Example: Practitioner-qicore-practitioner-example

Formats: XML, JSON, Turtle

{
  "resourceType" : "Practitioner",
  "id" : "qicore-practitioner-example",
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns="http://www.w3.org/1999/xhtml">
      <p> Dr Adam Careful is a Referring Practitioner for Acme Hospital from 1-Jan 2012 to 31-Mar
        2012</p>
    </div>"
  },
  "identifier" : [
    {
      "system" : "http://www.acme.org/practitioners",
      "value" : "23"
    }
  ],
  "active" : true,
  "name" : [
    {
      "family" : "Careful",
      "given" : [
        "Adam"
      ],
      "prefix" : [
        "Dr"
      ]
    }
  ],
  "address" : [
    {
      "use" : "home",
      "line" : [
        "534 Erewhon St"
      ],
      "city" : "PleasantVille",
      "state" : "Vic",
      "postalCode" : "3999"
    }
  ],
  "qualification" : [
    {
      "identifier" : [
        {
          "system" : "http://example.org/UniversityIdentifier",
          "value" : "12345"
        }
      ],
      "code" : {
        "coding" : [
          {
            "system" : "http://hl7.org/fhir/v2/0360/2.7",
            "code" : "BS",
            "display" : "Bachelor of Science"
          }
        ],
        "text" : "Bachelor of Science"
      },
      "period" : {
        "start" : "1995"
      },
      "issuer" : {
        "display" : "Example University"
      }
    }
  ]
}