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: Patient-phcp-patient-example

Raw json

{
  "resourceType" : "Patient",
  "id" : "phcp-patient-example",
  "meta" : {
    "versionId" : "2",
    "lastUpdated" : "2019-03-20T23:31:16.000-04:00",
    "profile" : [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">\n            <p>\n                <b>Generated Narrative with Details</b>\n            </p>\n            <p>\n                <b>id</b>: example\n            \n            </p>\n            <p>\n                <b>identifier</b>: Medical Record Number = 1032702 (USUAL)\n            \n            </p>\n            <p>\n                <b>active</b>: true\n            \n            </p>\n            <p>\n                <b>name</b>: Amy V. Shaw \n            \n            </p>\n            <p>\n                <b>telecom</b>: ph: 555-555-5555(HOME), amy.shaw@example.com\n            \n            </p>\n            <p>\n                <b>gender</b>: Female\n            \n            </p>\n            <p>\n                <b>birthDate</b>: Feb 20, 2007\n            \n            </p>\n            <p>\n                <b>address</b>: 49 Meadow St Mounds OK 74047 US \n            \n            </p>\n        </div>"
  },
  "identifier" : [
    {
      "use" : "usual",
      "system" : "http://hospital.smarthealthit.org",
      "value" : "1032702"
    }
  ],
  "active" : true,
  "name" : [
    {
      "family" : "Shaw",
      "given" : [
        "Amy",
        "V."
      ]
    }
  ],
  "telecom" : [
    {
      "system" : "phone",
      "value" : "555-555-5555",
      "use" : "home"
    },
    {
      "system" : "email",
      "value" : "amy.shaw@example.com"
    }
  ],
  "gender" : "female",
  "birthDate" : "2007-02-20",
  "address" : [
    {
      "line" : [
        "49 Meadow St"
      ],
      "city" : "Mounds",
      "state" : "OK",
      "postalCode" : "74047",
      "country" : "US"
    }
  ]
}