Consumer Real-Time Pharmacy Benefit Check
1.0.0 - STU1

This page is part of the Consumer Real-time Pharmacy Benefit Check (v1.0.0: STU 1) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: Example RTPBC Patient - JSON Representation

Raw json | Download

{
  "resourceType" : "Patient",
  "id" : "rtpbc-patient-03",
  "meta" : {
    "profile" : [
      "http://hl7.org/fhir/us/carin-rtpbc/StructureDefinition/rtpbc-patient"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>id</b>: rtpbc-patient-03</p><p><b>meta</b>: </p><p><b>identifier</b>: Patient internal identifier: 30455</p><p><b>name</b>: Jane Doe </p><p><b>gender</b>: female</p><p><b>birthDate</b>: 1975-12-05</p><p><b>address</b>: 100 Oak Court Madison WI 53510 US </p></div>"
  },
  "identifier" : [
    {
      "type" : {
        "coding" : [
          {
            "system" : "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code" : "PI",
            "display" : "Patient internal identifier"
          }
        ],
        "text" : "Patient internal identifier"
      },
      "system" : "http://example.org/MyPatientApp",
      "value" : "30455"
    }
  ],
  "name" : [
    {
      "family" : "Doe",
      "given" : [
        "Jane"
      ]
    }
  ],
  "gender" : "female",
  "birthDate" : "1975-12-05",
  "address" : [
    {
      "line" : [
        "100 Oak Court"
      ],
      "city" : "Madison",
      "state" : "WI",
      "postalCode" : "53510",
      "country" : "US"
    }
  ]
}