FHIR © HL7.org  |  FHIRsmith 4.0.1  |  Server Home  |  XIG Home  |  XIG Stats  | 

FHIR IG analytics

Packagesynapxe.sgcdi
Resource TypeEncounter
IdEncounterResponse.json
FHIR VersionR5

Resources that use this resource

No resources found


Resources that this resource uses

No resources found


Narrative

No narrative content found in resource


Source1

{
  "resourceType": "Encounter",
  "id": "enc-123456",
  "meta": {
    "versionId": "1",
    "lastUpdated": "2025-08-21T15:45:30.123Z"
  },
  "identifier": [
    {
      "system": "https://fhir.synapxe.sg/identifier/encounter",
      "value": "ENC-2025-001234"
    }
  ],
  "status": "in-progress",
  "class": [
    {
      "coding": [
        {
          "system": "https://fhir.synapxe.sg/CodeSystem/patienttype",
          "code": "I",
          "display": "Inpatient stay"
        }
      ]
    }
  ],
  "type": [
    {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/encounter-type",
          "code": "IMP",
          "display": "Inpatient encounter"
        }
      ]
    }
  ],
  "subject": {
    "reference": "Patient/patient-12345"
  },
  "serviceProvider": {
    "reference": "Organization/org-001"
  },
  "actualPeriod": {
    "start": "2025-08-21T08:00:00+08:00"
  },
  "reason": [
    {
      "use": [
        {
          "coding": [
            {
              "system": "http://terminology.hl7.org/CodeSystem/reason-use",
              "code": "CC",
              "display": "Chief complaint"
            }
          ]
        }
      ],
      "value": [
        {
          "reference": {
            "reference": "Condition/cond-123456"
          }
        }
      ]
    }
  ],
  "admission": {
    "dischargeDisposition": {
      "coding": [
        {
          "system": "http://terminology.hl7.org/CodeSystem/discharge-disposition",
          "code": "home",
          "display": "Home"
        }
      ]
    }
  },
  "contained": [
    {
      "resourceType": "Location",
      "id": "loc1",
      "name": "Ward 5A, Bed 12",
      "identifier": [
        {
          "system": "https://fhir.synapxe.sg/identifier/location",
          "value": "LOC-5A-12"
        }
      ]
    }
  ],
  "location": [
    {
      "location": {
        "reference": "#loc1"
      }
    }
  ]
}