Temple Health · Schema

Temple Health FHIR R4 Patient (US Core Subset)

Subset JSON Schema for the US Core Patient profile as returned by the Temple Health (Epic) FHIR R4 endpoint.

Academic Medical CenterCMS InteroperabilityCures ActDSTU2EpicFHIRFox Chase Cancer CenterHL7HealthcareHospital SystemMyChartOAuth 2.0Patient AccessPrice TransparencyR4SMART on FHIRTemple UniversityUS CoreUSCDI

Properties

Name Type Description
resourceType string
id string FHIR logical id.
identifier array
name array
gender string
birthDate string
address array
View JSON Schema on GitHub

JSON Schema

temple-health-patient-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/temple-health/refs/heads/main/json-schema/temple-health-patient-schema.json",
  "title": "Temple Health FHIR R4 Patient (US Core Subset)",
  "description": "Subset JSON Schema for the US Core Patient profile as returned by the Temple Health (Epic) FHIR R4 endpoint.",
  "type": "object",
  "required": ["resourceType", "id", "identifier", "name"],
  "properties": {
    "resourceType": { "type": "string", "const": "Patient" },
    "id": { "type": "string", "description": "FHIR logical id." },
    "identifier": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["system", "value"],
        "properties": {
          "use": { "type": "string", "enum": ["usual","official","temp","secondary","old"] },
          "system": { "type": "string", "format": "uri" },
          "value": { "type": "string" }
        }
      }
    },
    "name": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "use": { "type": "string" },
          "family": { "type": "string" },
          "given": { "type": "array", "items": { "type": "string" } }
        }
      }
    },
    "gender": { "type": "string", "enum": ["male","female","other","unknown"] },
    "birthDate": { "type": "string", "format": "date" },
    "address": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "use": { "type": "string" },
          "line": { "type": "array", "items": { "type": "string" } },
          "city": { "type": "string" },
          "state": { "type": "string" },
          "postalCode": { "type": "string" },
          "country": { "type": "string" }
        }
      }
    }
  }
}