Penn Medicine · Example Payload

Penn Medicine Fhir Patient Example

HealthcareHospitalAcademic Medical CenterFHIRSMART On FHIRPatient AccessProvider DirectoryCMS InteroperabilityUS CoreBulk DataEpic

Penn Medicine Fhir Patient Example is an example object payload from Penn Medicine, with 11 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

resourceTypeidmetaidentifieractivenametelecomgenderbirthDateaddresscommunication

Example Payload

Raw ↑
{
  "resourceType": "Patient",
  "id": "example",
  "meta": {
    "profile": [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient|6.1.0"
    ],
    "source": "https://ssproxy.pennhealth.com/PRD-FHIR/api/FHIR/R4"
  },
  "identifier": [
    {
      "use": "usual",
      "type": {
        "coding": [
          {
            "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
            "code": "MR",
            "display": "Medical Record Number"
          }
        ]
      },
      "system": "urn:oid:1.2.840.114350.1.13.87.2.7.5.737384.1",
      "value": "E2000123456"
    }
  ],
  "active": true,
  "name": [
    {
      "use": "official",
      "family": "Doe",
      "given": ["Jordan", "T"]
    }
  ],
  "telecom": [
    {
      "system": "phone",
      "value": "215-662-4000",
      "use": "home"
    }
  ],
  "gender": "male",
  "birthDate": "1978-04-22",
  "address": [
    {
      "use": "home",
      "line": ["3400 Spruce Street"],
      "city": "Philadelphia",
      "state": "PA",
      "postalCode": "19104",
      "country": "US"
    }
  ],
  "communication": [
    {
      "language": {
        "coding": [
          {
            "system": "urn:ietf:bcp:47",
            "code": "en",
            "display": "English"
          }
        ]
      },
      "preferred": true
    }
  ]
}