Chop Fhir Organization Example

HealthcarePediatricsFHIRSMART On FHIRPatient AccessProvider DirectoryCMS InteroperabilityUS CoreBulk DataResearch DataOpen Data

Chop Fhir Organization Example is an example object payload from Children's Hospital of Philadelphia, with 10 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

resourceTypeidmetaidentifieractivetypenamealiastelecomaddress

Example Payload

Raw ↑
{
  "resourceType": "Organization",
  "id": "chop",
  "meta": {
    "profile": [
      "http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization|6.1.0"
    ],
    "source": "https://epicnsproxy.chop.edu/fhir/api/FHIR/R4"
  },
  "identifier": [
    {
      "system": "http://hl7.org/fhir/sid/us-npi",
      "value": "1043228015"
    }
  ],
  "active": true,
  "type": [
    {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/organization-type",
          "code": "prov",
          "display": "Healthcare Provider"
        }
      ]
    }
  ],
  "name": "Children's Hospital of Philadelphia",
  "alias": ["CHOP"],
  "telecom": [
    {
      "system": "phone",
      "value": "215-590-1000"
    },
    {
      "system": "url",
      "value": "https://www.chop.edu"
    }
  ],
  "address": [
    {
      "use": "work",
      "line": ["3401 Civic Center Boulevard"],
      "city": "Philadelphia",
      "state": "PA",
      "postalCode": "19104",
      "country": "US"
    }
  ]
}