Jefferson Health · Example Payload

Tjuh Fhir R4 Patient Search Example

Academic Medical CenterCARIN Blue ButtonCMS InteroperabilityCures ActDa Vinci Plan-NetEpicFHIRHL7HealthcareHospital SystemMyChartOAuth 2.0Patient AccessProvider DirectorySMART on FHIRUS CoreUSCDI

Tjuh Fhir R4 Patient Search Example is an example object payload from Jefferson Health, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://fhir.jefferson.edu/FHIRProxy/api/FHIR/R4/Patient?identifier=urn:oid:1.2.840.114350.1.13.0.1.7.5.737384.0%7CE12345&_format=json",
    "headers": {
      "Accept": "application/fhir+json",
      "Authorization": "Bearer eyJraWQiOiI...redacted..."
    }
  },
  "response": {
    "status": 200,
    "body": {
      "resourceType": "Bundle",
      "type": "searchset",
      "total": 1,
      "entry": [
        {
          "resource": {
            "resourceType": "Patient",
            "id": "eXq8H1A9KEX0lpDJxCQ-zJg3",
            "identifier": [
              {
                "use": "usual",
                "system": "urn:oid:1.2.840.114350.1.13.0.1.7.5.737384.0",
                "value": "E12345"
              }
            ],
            "name": [
              {
                "use": "official",
                "family": "Lane",
                "given": ["Kin"]
              }
            ],
            "gender": "male",
            "birthDate": "1974-04-23",
            "address": [
              {
                "use": "home",
                "line": ["111 S 11th St"],
                "city": "Philadelphia",
                "state": "PA",
                "postalCode": "19107",
                "country": "US"
              }
            ]
          }
        }
      ]
    }
  }
}