Chop Fhir Patient Example

HealthcarePediatricsFHIRSMART On FHIRPatient AccessProvider DirectoryCMS InteroperabilityUS CoreBulk DataResearch DataOpen Data

Chop Fhir Patient Example is an example object payload from Children's Hospital of Philadelphia, 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://epicnsproxy.chop.edu/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.999.1.7.5.737384.1",
      "value": "Z00012345"
    }
  ],
  "active": true,
  "name": [
    {
      "use": "official",
      "family": "Doe",
      "given": ["Avery", "M"]
    }
  ],
  "telecom": [
    {
      "system": "phone",
      "value": "215-590-1000",
      "use": "home"
    }
  ],
  "gender": "female",
  "birthDate": "2014-08-12",
  "address": [
    {
      "use": "home",
      "line": ["123 Civic Center Boulevard"],
      "city": "Philadelphia",
      "state": "PA",
      "postalCode": "19104",
      "country": "US"
    }
  ],
  "communication": [
    {
      "language": {
        "coding": [
          {
            "system": "urn:ietf:bcp:47",
            "code": "en",
            "display": "English"
          }
        ]
      },
      "preferred": true
    }
  ]
}