Implementation Guide Release 0.2.0

This page is part of the Pharmacist Care Plan FHIR IG (v0.2.0: STU 1 Draft) based on FHIR v3.1.0. The current version which supercedes this version is 1.0.0. For a full list of available versions, see the Directory of published versions

JSON Format: RelatedPerson-phcp-relatedperson-example

Raw json

{
  "resourceType" : "RelatedPerson",
  "id" : "phcp-relatedperson-example",
  "meta" : {
    "versionId" : "2",
    "lastUpdated" : "2019-03-21T05:17:35.000-04:00"
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <table>\n                <tbody>\n                    <tr>\n                        <td> Name</td>\n                        <td> Peter Chalmers</td>\n                    </tr>\n                    <tr>\n                        <td> Address</td>\n                        <td> 534 Erewhon, Pleasantville, Vic, 3999</td>\n                    </tr>\n                    <tr>\n                        <td> Contacts</td>\n                        <td> Work: (03) 5555 6473</td>\n                    </tr>\n                </tbody>\n            </table>\n        </div>"
  },
  "patient" : {
    "reference" : "Patient/phcp-patient-example"
  },
  "name" : [
    {
      "use" : "official",
      "family" : "Chalmers",
      "given" : [
        "Peter",
        "James"
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "(03) 5555 6473",
      "use" : "work"
    }
  ],
  "gender" : "male",
  "address" : [
    {
      "use" : "home",
      "line" : [
        "534 Erewhon St"
      ],
      "city" : "PleasantVille",
      "state" : "Vic",
      "postalCode" : "3999"
    }
  ],
  "photo" : [
    {
      "contentType" : "image/jpeg",
      "url" : "Binary/f012"
    }
  ],
  "period" : {
    "start" : "2012-03-11"
  }
}