Polaris FHIR Implementation Guide
1.10.0 - ci-build

Polaris FHIR Implementation Guide - Local Development build (v1.10.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Polaris Appointment Example - JSON Representation

Raw json | Download

{
  "resourceType" : "Appointment",
  "id" : "polaris-core-appointment-example-with-requestedPeriod",
  "meta" : {
    "profile" : [
      🔗 "https://fhir.apps.health/StructureDefinition/polaris-core-appointment"
    ]
  },
  "text" : {
    "status" : "generated",
    "div" : "<div xmlns=\"http://www.w3.org/1999/xhtml\">Scheduled annual physical for Avery Linwood (requested Apr 1), fulfilled on April 8, 2025 at Cedarbrook Family Health Site A.</div>"
  },
  "identifier" : [
    {
      "system" : "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-appointment-identifier",
      "value" : "APPT-AVERY-20250408RP"
    }
  ],
  "status" : "fulfilled",
  "start" : "2025-04-08T09:00:00-06:00",
  "end" : "2025-04-08T09:45:00-06:00",
  "participant" : [
    {
      "actor" : {
        "identifier" : {
          "system" : "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-patient-identifier",
          "value" : "1234567890"
        },
        "display" : "Avery Linwood"
      },
      "status" : "accepted"
    },
    {
      "actor" : {
        "identifier" : {
          "system" : "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-practitioner-identifier",
          "value" : "NAVARRO-PRAC-001"
        },
        "display" : "Dr. Emil Navarro"
      },
      "status" : "accepted"
    }
  ],
  "requestedPeriod" : [
    {
      "start" : "2025-04-01T10:00:00-06:00"
    }
  ]
}