{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/unitedhealthcare/refs/heads/main/json-structure/interoperability-fhir-patient-structure.json", "name": "UnitedHealthcare FHIR Patient", "type": "object", "description": "FHIR R4 Patient resource representing a UnitedHealthcare member with demographics and identifiers", "fields": [ { "name": "resourceType", "type": "string", "description": "FHIR resource type", "enum": [ "Patient" ] }, { "name": "id", "type": "string", "description": "Patient resource ID" }, { "name": "identifier", "type": "array", "description": "Patient identifiers", "items": { "type": "object" } }, { "name": "name", "type": "array", "description": "Patient names", "items": { "type": "object" } }, { "name": "birthDate", "type": "date", "description": "Date of birth" }, { "name": "gender", "type": "string", "description": "Administrative gender", "enum": [ "male", "female", "other", "unknown" ] }, { "name": "address", "type": "array", "description": "Patient addresses", "items": { "type": "object" } }, { "name": "telecom", "type": "array", "description": "Contact details", "items": { "type": "object" } } ] }