MediRecords FHIR Implementation Guide
1.3.0 - release


: Example of a usual doctor - JSON Representation

Raw json | Download


{
  "resourceType" : "Practitioner",
  "id" : "6d6d7ce8-65c2-11e6-a20e-7b5deed40054",
  "meta" : {
    "profile" : [
      "https://fhir.medirecords.com/StructureDefinition/mr-practitioner-core"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Practitioner</b><a name=\"6d6d7ce8-65c2-11e6-a20e-7b5deed40054\"> </a></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 Practitioner &quot;6d6d7ce8-65c2-11e6-a20e-7b5deed40054&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-mr-practitioner-core.html\">MediRecords Core Practitioner</a></p></div><p><b>identifier</b>: HPI-I:\u00a08003610833334085</p><p><b>active</b>: true</p><p><b>name</b>: John Smith </p><p><b>telecom</b>: ph: 0410999888(MOBILE), <a href=\"mailto:john.smith@gpexample.com\">john.smith@gpexample.com</a>, ph: 0212450987(WORK)</p><p><b>gender</b>: male</p><p><b>birthDate</b>: 1978-04-08</p><blockquote><p><b>qualification</b></p><p><b>code</b>: Doctor of Medicine <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.3.0/CodeSystem-v2-0360.html\">degreeLicenseCertificate</a>#MD)</span></p></blockquote><blockquote><p><b>qualification</b></p><p><b>code</b>: MB chB(Hons) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ()</span></p></blockquote></div>"
  },
  "identifier" : [
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "NPI"
          }
        ],
        "text" : "HPI-I"
      },
      "system" : "http://ns.electronichealth.net.au/id/hi/hpii/1.0",
      "value" : "8003610833334085"
    }
  ],
  "active" : true,
  "name" : [
    {
      "use" : "usual",
      "family" : "Smith",
      "given" : [
        "John"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "0410999888",
      "use" : "mobile"
    },
    {
      "system" : "email",
      "value" : "john.smith@gpexample.com",
      "use" : "work"
    },
    {
      "system" : "phone",
      "value" : "0212450987",
      "use" : "work"
    }
  ],
  "gender" : "male",
  "birthDate" : "1978-04-08",
  "qualification" : [
    {
      "code" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0360",
            "code" : "MD",
            "display" : "Doctor of Medicine"
          }
        ]
      }
    },
    {
      "code" : {
        "text" : "MB chB(Hons)"
      }
    }
  ]
}