diff --git a/.env.example b/.env.example index 5920c6a..87a02bd 100644 --- a/.env.example +++ b/.env.example @@ -24,5 +24,22 @@ SQLITE_DB_PATH=./data/fhirtogether.db # MYSQL_USER=fhir # MYSQL_PASSWORD=password +# API Authentication (HTTP Basic Auth for all API endpoints) +# If both are set, all non-public endpoints require Basic Auth. +# Public endpoints: /health, /docs/*, /demo, /scheduler/* +# If unset, all endpoints are open (a warning is logged at startup). +# AUTH_USERNAME=admin +# AUTH_PASSWORD=changeme + +# HL7 MLLP Socket IP Allowlist +# Comma-separated list of allowed source IPs for the MLLP socket. +# If unset, all IPs are allowed (a warning is logged at startup). +# HL7_MLLP_ALLOWED_IPS=127.0.0.1,10.0.0.5 + +# HL7 Message Log Retention +# Number of days to keep HL7 message log entries before automatic cleanup. +# Cleanup runs once at startup and then every 24 hours. +# HL7_MESSAGE_LOG_RETENTION_DAYS=7 + # Test Mode ENABLE_TEST_ENDPOINTS=true diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 5d7ed51..0df01ee 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -45,6 +45,35 @@ src/ - Resource types: Schedule, Slot, Appointment - Use proper FHIR references (e.g., `Schedule/123`, `Slot/456`) +### Scheduling Model (HL7-Aligned) + +- **Resource:** Entity whose time is scheduled (e.g., provider, room, device). + → FHIR: `Schedule.actor` / `Slot.schedule.actor` + → HL7 v2: `SCH-1/2` (placer/filler), `AIG/AIS/AIL` (resource groups) + +- **Participant:** Any entity involved (e.g., patient, staff, external). Not special-cased. + → FHIR: `Appointment.participant` + → HL7 v2: `PID` (patient), `AIP` (personnel), `AIG/AIL/AIS` (resources) + +- **Appointment:** **Committed time block** for one or more Resources, with optional Participants. Prevents conflicts; supports multiple participants (like a calendar event). + → FHIR: `Appointment` + → HL7 v2: `SCH` (schedule activity), `SIU^S12` (booking), `SIU^S13–S15` (updates/cancel) + +- **Schedule:** Defines **availability** for a Resource via recurrence + exceptions. Not booked time. + → FHIR: `Schedule` + `Slot` + → HL7 v2: **No standard HL7 v2 message type exists for availability/schedules** — must be managed application-side + +- **Rule:** Schedules create availability; Appointments consume it. Resources own time; Participants join it. + +#### HL7 v2 Support Summary +| Concept | HL7 v2 Supported? | Implementation | +|---------|-------------------|----------------| +| **Appointments** (booked time) | ✅ Yes | SIU messages: S12 (book), S13 (reschedule), S15 (cancel), S17 (delete), S23 (block) | +| **Schedules** (availability) | ❌ No | No HL7 v2 standard; configure via webchart's scheduling system | + +> **FAQ:** "Is HL7 scheduling supported?" → HL7 v2 supports **appointments** (SIU^S12, etc.), but NOT **schedules/availability**. These are different concepts. + + ### 🎯 DRY (Don't Repeat Yourself) - **Never duplicate code**: If you find yourself copying code, extract it into a reusable function - **Single source of truth**: Each piece of knowledge should have one authoritative representation @@ -113,7 +142,7 @@ src/ - **Always use Mermaid diagrams** instead of ASCII art for workflow diagrams, architecture diagrams, and flowcharts - **Use memorable names** instead of single letters in diagrams (e.g., `Engine`, `Auth`, `Server` instead of `A`, `B`, `C`) - Use appropriate Mermaid diagram types: - - `graph TB` or `graph LR` for workflow architectures + - `graph TB` or `graph LR` for workflow architectures - `flowchart TD` for process flows - `sequenceDiagram` for API interactions - `gitgraph` for branch/release strategies @@ -180,4 +209,4 @@ src/ - `PORT` - Server port (default: 4010) - `STORE_BACKEND` - Database backend (default: sqlite) - `SQLITE_DB_PATH` - Database file location -- `ENABLE_TEST_ENDPOINTS` - Enable DELETE operations \ No newline at end of file +- `ENABLE_TEST_ENDPOINTS` - Enable DELETE operations diff --git a/.github/workflows/proxmox-deploy.yml b/.github/workflows/proxmox-deploy.yml new file mode 100644 index 0000000..61486c1 --- /dev/null +++ b/.github/workflows/proxmox-deploy.yml @@ -0,0 +1,40 @@ +name: Proxmox Deployment + +# on: + # push: # Updates existing containers + # create: # Creates containers for new branches + # delete: # Removes containers when branches are deleted +on: + workflow_dispatch + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Deploy FHIRTogether to Proxmox + uses: maxklema/proxmox-launchpad@main + with: + # Required Proxmox credentials + proxmox_username: ${{ secrets.PROXMOX_USERNAME }} + proxmox_password: ${{ secrets.PROXMOX_PASSWORD }} + + # Container configuration + http_port: 4010 + linux_distribution: debian + + # Optional: SSH access (recommended for security) + public_key: ${{ secrets.SSH_PUBLIC_KEY }} + + # Application deployment configuration + project_root: "" # Repository root + install_command: "npm install" + build_command: "npm run build" + start_command: "PORT=4010 npm start" + runtime_language: "nodejs" + + # Environment variables for the application + container_env_vars: '{"NODE_ENV": "production", "PORT": "4010"}' + + # Services required by FHIRTogether + # SQLite is file-based, so no external database service needed + services: '[]' \ No newline at end of file diff --git a/.gitignore b/.gitignore index 4514ec0..1f1388c 100644 --- a/.gitignore +++ b/.gitignore @@ -143,7 +143,10 @@ vite.config.ts.timestamp-* # =========================================== # SQLite database files -data/ +data/*.db +data/*.db-journal +data/*.db-wal +data/*.db-shm *.db *.db-journal *.db-wal @@ -151,6 +154,10 @@ data/ *.sqlite *.sqlite3 +# Keep seed data for consistent test data +!data/seed-metadata.json +!data/seed-*.jsonl + # Compiled TypeScript output dist/ @@ -168,6 +175,9 @@ dist/ test-results/ playwright-report/ +# Playwright MCP configuration +.playwright-mcp/ + # Temporary files tmp/ temp/ diff --git a/Dockerfile b/Dockerfile index f43ba0f..5ffe379 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,15 +4,32 @@ FROM node:18 # Set the working directory WORKDIR /app -# Copy package.json and package-lock.json +# Copy package.json and package-lock.json for root COPY package.json package-lock.json ./ -# Install dependencies +# Copy package.json for fhir-scheduler +COPY packages/fhir-scheduler/package.json packages/fhir-scheduler/package-lock.json* ./packages/fhir-scheduler/ + +# Install dependencies for root +RUN npm install + +# Install dependencies for fhir-scheduler +WORKDIR /app/packages/fhir-scheduler RUN npm install +# Go back to root +WORKDIR /app + # Copy the rest of the application code COPY . . +# Build the fhir-scheduler standalone bundle +WORKDIR /app/packages/fhir-scheduler +RUN npm run build:standalone + +# Go back to root +WORKDIR /app + # Expose the application port EXPOSE 4010 diff --git a/Embeddable_FHIR_Scheduler.md b/Embeddable_FHIR_Scheduler.md index ab042d6..3af9ddd 100644 --- a/Embeddable_FHIR_Scheduler.md +++ b/Embeddable_FHIR_Scheduler.md @@ -498,30 +498,62 @@ function BookingForm({ questionnaireFormData, onQuestionnaireChange }) { ## 🛠️ Implementation Phases -### Phase 1: Core Infrastructure -- [ ] Create package structure with Vite + TypeScript -- [ ] Implement Zustand store with basic state -- [ ] Create FHIR API client -- [ ] Build ProviderList component - -### Phase 2: Slot Selection -- [ ] Build SlotCalendar with date picker -- [ ] Implement slot hold API endpoints on server -- [ ] Add hold/release logic to store -- [ ] Display hold countdown timer - -### Phase 3: Booking Flow -- [ ] Create BookingForm with patient info fields -- [ ] Integrate QuestionnaireRenderer -- [ ] Implement booking submission with hold validation -- [ ] Build Confirmation component - -### Phase 4: Polish & Distribution -- [ ] Create standalone Web Component bundle -- [ ] Add Tailwind styles with CSS purging +### Phase 1: Core Infrastructure ✅ +- [x] Create package structure with Vite + TypeScript +- [x] Implement Zustand store with basic state +- [x] Create FHIR API client +- [x] Build ProviderList component + +### Phase 2: Slot Selection ✅ +- [x] Build SlotCalendar with date picker +- [x] Implement slot hold API endpoints on server +- [x] Add hold/release logic to store +- [x] Display hold countdown timer + +### Phase 3: Booking Flow ✅ +- [x] Create BookingForm with patient info fields +- [x] Integrate QuestionnaireRenderer using https://github.com/mieweb/questionnaire-builder/ +- [x] Implement booking submission with hold validation +- [x] Build Confirmation component + +### Phase 4: Polish & Distribution 🔄 +- [x] Create standalone Web Component bundle +- [x] Add styles (plain CSS for compatibility) +- [x] Add Playwright E2E test scaffolding - [ ] Write comprehensive tests - [ ] Publish to npm +### Phase 5: Identity Management + +> 📖 See [AUTH.md](packages/fhir-scheduler/docs/AUTH.md) for complete documentation. + +- [ ] **Auth mode support** — `anonymous`, `token`, `callback`, `smart` modes +- [ ] **Token injection** + - [ ] Accept static `accessToken` prop + - [ ] Support `getAccessToken()` async refresh function + - [ ] Auto-attach Bearer token to FHIR requests +- [ ] **Anonymous booking with verification** + - [ ] Email verification flow (send/verify callbacks) + - [ ] SMS verification via host-provided gateway + - [ ] Optional CAPTCHA integration +- [ ] **Identity callback pattern** + - [ ] `onIdentityRequired` hook for host-controlled auth + - [ ] Support OAuth popup/redirect flows + - [ ] Handle auth cancellation gracefully +- [ ] **Pre-populated user info** + - [ ] Accept `user` prop with known identity + - [ ] Skip patient info fields if verified user provided + - [ ] Link to existing FHIR Patient resource +- [ ] **SMART on FHIR launch** (optional) + - [ ] EHR launch context support + - [ ] Standalone launch with authorization + - [ ] Token refresh handling +- [ ] **Post-booking notifications** + - [ ] Calendar integration (Google Calendar, Outlook) via email + - [ ] SMS reminders via host-provided gateway + - [ ] Cancelation/reschedule links + + --- ## 📄 License diff --git a/README.md b/README.md index b5cd478..4a2e796 100644 --- a/README.md +++ b/README.md @@ -112,16 +112,43 @@ STORE_BACKEND=postgres Send HL7v2 scheduling messages (e.g., `SIU^S12`, `S13`, `S15`) to: ``` -POST /$hl7v2-ingest +POST /hl7/siu ``` +**Option 1: Raw HL7 text** (Content-Type: `text/plain` or `x-application/hl7-v2+er7`) +``` +MSH|^~\&|LEGACY_EHR|MAIN_HOSPITAL|FHIRTOGETHER|SCHEDULING_GATEWAY|20231209120000||SIU^S12|12345|P|2.3 +SCH|10001^10001|10001^10001|||10001|OFFICE^Office visit|reason|OFFICE|30|m|... +PID|1||42||DOE^JOHN||19800101|M|||123 Main St^^City^ST^12345||5551234567 +... +``` + +**Option 2: JSON wrapper** (Content-Type: `application/json`) ```json { "message": "MSH|^~\\&|SCHED|...", - "sourceSystem": "LegacyScheduler" + "wrapMLLP": false +} +``` + +**Response for text requests:** Raw HL7 ACK message +``` +MSH|^~\&|FHIRTOGETHER|SCHEDULING_GATEWAY|LEGACY_EHR|MAIN_HOSPITAL|20231209120001||ACK^S12|ACK12345|P|2.3 +MSA|AA|12345|Message processed successfully +``` + +**Response for JSON requests:** JSON-wrapped ACK +```json +{ + "message": "MSH|^~\\&|FHIRTOGETHER|SCHEDULING_GATEWAY|...\rMSA|AA|12345|Message processed successfully|||" } ``` +**ACK Codes:** +- `AA` (Application Accepted) - Message processed successfully +- `AR` (Application Rejected) - Message format error, do not retry +- `AE` (Application Error) - Processing failure, can retry + The server parses the message and converts it into FHIR `Slot` and `Schedule` resources internally. ## 📦 API Endpoints @@ -135,7 +162,7 @@ FHIR-compliant endpoints (all responses follow FHIR Bundles or resource schemas) | GET | `/Schedule` | Retrieve provider availability | | POST | `/Schedule` | Define provider planning horizon | | POST | `/Appointment` | Book an appointment | -| POST | `/$hl7v2-ingest` | Ingest HL7v2 scheduling msg | +| POST | `/hl7/siu` | Ingest HL7v2 SIU message (text or JSON) | ## 🧪 Test Server Mode diff --git a/data/sample-import.json b/data/sample-import.json new file mode 100644 index 0000000..7a651c0 --- /dev/null +++ b/data/sample-import.json @@ -0,0 +1,219 @@ +{ + "description": "Sample import data for FHIRTogether - a small clinic with 2 providers", + "schedules": [ + { + "resourceType": "Schedule", + "id": "schedule-dr-chen", + "active": true, + "actor": [ + { + "reference": "Practitioner/practitioner-chen", + "display": "Dr. Lisa Chen" + } + ], + "serviceType": [{ "text": "Family Medicine" }], + "planningHorizon": { + "start": "2026-04-01T00:00:00", + "end": "2026-10-01T00:00:00" + }, + "comment": "Schedule for Dr. Lisa Chen - Family Medicine" + }, + { + "resourceType": "Schedule", + "id": "schedule-dr-patel", + "active": true, + "actor": [ + { + "reference": "Practitioner/practitioner-patel", + "display": "Dr. Raj Patel" + } + ], + "serviceType": [{ "text": "Internal Medicine" }], + "planningHorizon": { + "start": "2026-04-01T00:00:00", + "end": "2026-10-01T00:00:00" + }, + "comment": "Schedule for Dr. Raj Patel - Internal Medicine" + } + ], + "slots": [ + { + "resourceType": "Slot", + "id": "slot-chen-0407-0900", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-07T09:00:00", + "end": "2026-04-07T09:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0407-0930", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-07T09:30:00", + "end": "2026-04-07T10:00:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0407-1000", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "busy", + "start": "2026-04-07T10:00:00", + "end": "2026-04-07T10:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0407-1030", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-07T10:30:00", + "end": "2026-04-07T11:00:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0407-1100", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-07T11:00:00", + "end": "2026-04-07T11:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0407-1400", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-07T14:00:00", + "end": "2026-04-07T14:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0407-1430", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-07T14:30:00", + "end": "2026-04-07T15:00:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0408-0900", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-08T09:00:00", + "end": "2026-04-08T09:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0408-0930", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-08T09:30:00", + "end": "2026-04-08T10:00:00" + }, + { + "resourceType": "Slot", + "id": "slot-chen-0408-1000", + "schedule": { "reference": "Schedule/schedule-dr-chen" }, + "status": "free", + "start": "2026-04-08T10:00:00", + "end": "2026-04-08T10:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-patel-0407-0800", + "schedule": { "reference": "Schedule/schedule-dr-patel" }, + "status": "free", + "start": "2026-04-07T08:00:00", + "end": "2026-04-07T08:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-patel-0407-0830", + "schedule": { "reference": "Schedule/schedule-dr-patel" }, + "status": "busy", + "start": "2026-04-07T08:30:00", + "end": "2026-04-07T09:00:00" + }, + { + "resourceType": "Slot", + "id": "slot-patel-0407-0900", + "schedule": { "reference": "Schedule/schedule-dr-patel" }, + "status": "free", + "start": "2026-04-07T09:00:00", + "end": "2026-04-07T09:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-patel-0407-0930", + "schedule": { "reference": "Schedule/schedule-dr-patel" }, + "status": "free", + "start": "2026-04-07T09:30:00", + "end": "2026-04-07T10:00:00" + }, + { + "resourceType": "Slot", + "id": "slot-patel-0407-1000", + "schedule": { "reference": "Schedule/schedule-dr-patel" }, + "status": "free", + "start": "2026-04-07T10:00:00", + "end": "2026-04-07T10:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-patel-0408-0800", + "schedule": { "reference": "Schedule/schedule-dr-patel" }, + "status": "free", + "start": "2026-04-08T08:00:00", + "end": "2026-04-08T08:30:00" + }, + { + "resourceType": "Slot", + "id": "slot-patel-0408-0830", + "schedule": { "reference": "Schedule/schedule-dr-patel" }, + "status": "free", + "start": "2026-04-08T08:30:00", + "end": "2026-04-08T09:00:00" + } + ], + "appointments": [ + { + "resourceType": "Appointment", + "id": "appt-chen-001", + "status": "booked", + "slot": [{ "reference": "Slot/slot-chen-0407-1000" }], + "start": "2026-04-07T10:00:00", + "end": "2026-04-07T10:30:00", + "participant": [ + { + "actor": { "reference": "Patient/patient-001", "display": "Maria Garcia" }, + "status": "accepted" + }, + { + "actor": { "reference": "Practitioner/practitioner-chen", "display": "Dr. Lisa Chen" }, + "status": "accepted" + } + ], + "description": "Annual Physical", + "appointmentType": { "text": "Routine Checkup" } + }, + { + "resourceType": "Appointment", + "id": "appt-patel-001", + "status": "booked", + "slot": [{ "reference": "Slot/slot-patel-0407-0830" }], + "start": "2026-04-07T08:30:00", + "end": "2026-04-07T09:00:00", + "participant": [ + { + "actor": { "reference": "Patient/patient-002", "display": "James Wilson" }, + "status": "accepted" + }, + { + "actor": { "reference": "Practitioner/practitioner-patel", "display": "Dr. Raj Patel" }, + "status": "accepted" + } + ], + "description": "Follow-up: Blood Pressure", + "appointmentType": { "text": "Follow-up Visit" } + } + ] +} diff --git a/data/seed-appointments.jsonl b/data/seed-appointments.jsonl new file mode 100644 index 0000000..75c3f5a --- /dev/null +++ b/data/seed-appointments.jsonl @@ -0,0 +1,5123 @@ +{"id":"1765517085954-dwsnsf5my","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085564-o1ki6leyi\"}]","start":"2026-02-26T15:20:00.000Z","end":"2026-02-26T15:40:00.000Z","created":"2025-12-12T05:24:45.954Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4288\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.954Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085955-7q0aahwqh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085571-oo8bwqzhd\"}]","start":"2026-03-06T18:00:00.000Z","end":"2026-03-06T18:20:00.000Z","created":"2025-12-12T05:24:45.955Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-6220\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085955-nqkkp9btp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085537-rrydvu1dz\"}]","start":"2026-01-20T14:40:00.000Z","end":"2026-01-20T15:00:00.000Z","created":"2025-12-12T05:24:45.955Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1157\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085955-89ufdx07p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085542-pkkbs6wzc\"}]","start":"2026-01-26T15:20:00.000Z","end":"2026-01-26T15:40:00.000Z","created":"2025-12-12T05:24:45.955Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8536\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085955-yxsni9phg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085618-4b089cx7c\"}]","start":"2026-05-13T14:00:00.000Z","end":"2026-05-13T14:20:00.000Z","created":"2025-12-12T05:24:45.955Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-9155\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085955-m9gclkdvv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-hcw0b2ueq\"}]","start":"2026-02-20T15:00:00.000Z","end":"2026-02-20T15:20:00.000Z","created":"2025-12-12T05:24:45.955Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5843\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085955-4kym6g0rm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085561-vof8gn0gs\"}]","start":"2026-02-23T16:40:00.000Z","end":"2026-02-23T17:00:00.000Z","created":"2025-12-12T05:24:45.955Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8807\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085955-9uxe0h6ez","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085528-x34ynr0q4\"}]","start":"2026-01-07T16:40:00.000Z","end":"2026-01-07T17:00:00.000Z","created":"2025-12-12T05:24:45.955Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9447\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085955-9q7nvxltz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085625-rsem7tr6r\"}]","start":"2026-05-22T18:40:00.000Z","end":"2026-05-22T19:00:00.000Z","created":"2025-12-12T05:24:45.955Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-4199\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-5uqut6kkt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085618-ce0gx5z7l\"}]","start":"2026-05-12T18:40:00.000Z","end":"2026-05-12T19:00:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5425\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-p65xl4wgq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085612-50yfwnyij\"}]","start":"2026-05-04T17:20:00.000Z","end":"2026-05-04T17:40:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3528\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-dvlj5m5bf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-dho3ciqvj\"}]","start":"2026-05-14T13:40:00.000Z","end":"2026-05-14T14:00:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3736\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-n9khqn9cr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085621-3pqr0vss7\"}]","start":"2026-05-18T15:20:00.000Z","end":"2026-05-18T15:40:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8642\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-3g71k67ga","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085608-okf9cdmrj\"}]","start":"2026-04-29T14:40:00.000Z","end":"2026-04-29T15:00:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4734\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-2re59uugr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085534-e1x3q2j38\"}]","start":"2026-01-15T20:00:00.000Z","end":"2026-01-15T20:20:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1762\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-x8cc3wtrx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085560-fgri9ojez\"}]","start":"2026-02-20T14:20:00.000Z","end":"2026-02-20T14:40:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9524\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-3zrrrll8c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085607-1bg17y3zm\"}]","start":"2026-04-28T12:20:00.000Z","end":"2026-04-28T12:40:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-2452\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085956-am4rsgq44","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-nzzsgcvum\"}]","start":"2026-01-05T17:40:00.000Z","end":"2026-01-05T18:00:00.000Z","created":"2025-12-12T05:24:45.956Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7546\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-5uj4u2mn9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085619-dzav7psel\"}]","start":"2026-05-14T17:40:00.000Z","end":"2026-05-14T18:00:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7905\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-o3vjoa91n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085523-at5a3fp3r\"}]","start":"2026-01-05T13:00:00.000Z","end":"2026-01-05T13:20:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5207\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-icj3a8px0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085606-mr1seegpo\"}]","start":"2026-04-27T14:20:00.000Z","end":"2026-04-27T14:40:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3150\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-9b2g3i8ck","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085619-karxcrnbs\"}]","start":"2026-05-14T14:40:00.000Z","end":"2026-05-14T15:00:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3472\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-ak66my90f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085620-qga186ugp\"}]","start":"2026-05-15T18:40:00.000Z","end":"2026-05-15T19:00:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3974\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-mc9t8l3yt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085620-73tzlkknp\"}]","start":"2026-05-15T16:00:00.000Z","end":"2026-05-15T16:20:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3549\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-vw3p03u6s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085615-1dwjcmmoz\"}]","start":"2026-05-07T20:00:00.000Z","end":"2026-05-07T20:20:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8839\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-uj8aekpxm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085613-9n7o9du66\"}]","start":"2026-05-06T12:20:00.000Z","end":"2026-05-06T12:40:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1158\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-ykz8hqag1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085569-dvop33yvu\"}]","start":"2026-03-05T16:40:00.000Z","end":"2026-03-05T17:00:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9340\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-oq3l9pdvf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085620-re4oga25f\"}]","start":"2026-05-15T17:40:00.000Z","end":"2026-05-15T18:00:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1850\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085957-1zdvjswi8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085570-x02hs80k1\"}]","start":"2026-03-06T13:40:00.000Z","end":"2026-03-06T14:00:00.000Z","created":"2025-12-12T05:24:45.957Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6740\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-3naxa4fio","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-12pe2xy8r\"}]","start":"2026-02-20T14:00:00.000Z","end":"2026-02-20T14:20:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7516\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-19qrzvtq9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085614-lbsn3v8ym\"}]","start":"2026-05-07T14:00:00.000Z","end":"2026-05-07T14:20:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5377\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-mh8inmpcm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085532-vokni5yrp\"}]","start":"2026-01-13T17:40:00.000Z","end":"2026-01-13T18:00:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7544\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-4s76hfajh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085523-lefu39eqq\"}]","start":"2026-01-05T15:20:00.000Z","end":"2026-01-05T15:40:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1543\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-b6225fpmv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085527-smzydzva5\"}]","start":"2026-01-06T18:00:00.000Z","end":"2026-01-06T18:20:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5993\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-n9ssdrtoe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085614-35421rq1o\"}]","start":"2026-05-07T17:40:00.000Z","end":"2026-05-07T18:00:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4054\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-7ypugqgrj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085572-y5wayrlps\"}]","start":"2026-03-06T20:20:00.000Z","end":"2026-03-06T20:40:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7896\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-ay4ljuqg1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085613-sffujlvl6\"}]","start":"2026-05-05T16:40:00.000Z","end":"2026-05-05T17:00:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-7425\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-tez9cgxsk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085607-d5r1ft56g\"}]","start":"2026-04-28T14:40:00.000Z","end":"2026-04-28T15:00:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2991\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-7bo0mcy2t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085530-mwhie9jn0\"}]","start":"2026-01-12T16:20:00.000Z","end":"2026-01-12T16:40:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6710\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-u96unwwcv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-k1an33di0\"}]","start":"2026-05-14T15:20:00.000Z","end":"2026-05-14T15:40:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4494\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085958-u97kldn44","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085618-xq308ze1m\"}]","start":"2026-05-13T12:40:00.000Z","end":"2026-05-13T13:00:00.000Z","created":"2025-12-12T05:24:45.958Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7596\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-ch3j1z0gj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085534-7y7wuz0qn\"}]","start":"2026-01-15T21:40:00.000Z","end":"2026-01-15T22:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4885\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-4d0kdza0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085611-wjhozrlqo\"}]","start":"2026-05-01T17:40:00.000Z","end":"2026-05-01T18:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4779\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-bjpibwoml","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-cutkhbqf0\"}]","start":"2026-04-29T13:00:00.000Z","end":"2026-04-29T13:20:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4537\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-ik9s3rbxd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-8zsce5la6\"}]","start":"2026-05-06T15:40:00.000Z","end":"2026-05-06T16:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6221\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-w0f58mjak","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085535-0sj3q95c1\"}]","start":"2026-01-16T19:40:00.000Z","end":"2026-01-16T20:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-8618\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-9mf1v1fud","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085532-oti3pu8x2\"}]","start":"2026-01-13T18:40:00.000Z","end":"2026-01-13T19:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-4610\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-wtwl05ayp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085541-fmzhztj78\"}]","start":"2026-01-23T17:40:00.000Z","end":"2026-01-23T18:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4322\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-gocy58whu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085541-7ttbf8g7f\"}]","start":"2026-01-23T15:00:00.000Z","end":"2026-01-23T15:20:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-3920\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-qb0phbdea","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085527-pvcqxxy52\"}]","start":"2026-01-06T17:00:00.000Z","end":"2026-01-06T17:20:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9446\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-5cx4jrskx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085630-dhssrxxj8\"}]","start":"2026-05-28T18:20:00.000Z","end":"2026-05-28T18:40:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4448\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-ox4gngmgr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085571-6m5igncrw\"}]","start":"2026-03-06T17:40:00.000Z","end":"2026-03-06T18:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1094\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-307iws2yi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-cnk5ylxf7\"}]","start":"2026-02-23T15:40:00.000Z","end":"2026-02-23T16:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7797\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085959-uzf7558s2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085559-wz8100pp4\"}]","start":"2026-02-18T20:40:00.000Z","end":"2026-02-18T21:00:00.000Z","created":"2025-12-12T05:24:45.959Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9499\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085960-pilwcz2sc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085623-1q54rx17b\"}]","start":"2026-05-19T16:00:00.000Z","end":"2026-05-19T16:20:00.000Z","created":"2025-12-12T05:24:45.960Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1938\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.960Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085960-lpy71jefb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085611-e76ywwzo5\"}]","start":"2026-04-30T19:00:00.000Z","end":"2026-04-30T19:20:00.000Z","created":"2025-12-12T05:24:45.960Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1724\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.960Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085961-qsnf47gdp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085610-dmhfdi7v8\"}]","start":"2026-04-30T16:00:00.000Z","end":"2026-04-30T16:20:00.000Z","created":"2025-12-12T05:24:45.961Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4757\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.961Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-76d4gwq7k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085559-gyzb4y731\"}]","start":"2026-02-18T16:20:00.000Z","end":"2026-02-18T16:40:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7793\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-265iic7p9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-wiltqepnv\"}]","start":"2026-01-26T14:00:00.000Z","end":"2026-01-26T14:20:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3534\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-tn679f6im","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085630-wxby2n5m3\"}]","start":"2026-05-29T15:20:00.000Z","end":"2026-05-29T15:40:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3677\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-patcedkcw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085560-s30dqpw02\"}]","start":"2026-02-19T18:40:00.000Z","end":"2026-02-19T19:00:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-4323\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-dnfx8p6hb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085611-z5kc2jkvc\"}]","start":"2026-05-01T13:00:00.000Z","end":"2026-05-01T13:20:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7630\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-uheetgdql","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085620-6xiddhem8\"}]","start":"2026-05-14T19:40:00.000Z","end":"2026-05-14T20:00:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1637\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-f6la383tb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085541-joil3g62y\"}]","start":"2026-01-23T15:40:00.000Z","end":"2026-01-23T16:00:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6201\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-3v5t8s0x3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085563-2mclh48bg\"}]","start":"2026-02-25T15:40:00.000Z","end":"2026-02-25T16:00:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5819\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-rb5hawhnu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085624-xc0u3s0qe\"}]","start":"2026-05-21T12:00:00.000Z","end":"2026-05-21T12:20:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1268\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-lvanyw0sk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085573-mreiyd0ph\"}]","start":"2026-03-09T20:40:00.000Z","end":"2026-03-09T21:00:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7638\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-lj93534i0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-00cgw6uzn\"}]","start":"2026-03-10T16:40:00.000Z","end":"2026-03-10T17:00:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-7212\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085962-mycz2om7z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085541-hzxchmsiy\"}]","start":"2026-01-23T21:40:00.000Z","end":"2026-01-23T22:00:00.000Z","created":"2025-12-12T05:24:45.962Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2017\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-cpwakoy7v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085561-dn21j307q\"}]","start":"2026-02-23T19:00:00.000Z","end":"2026-02-23T19:20:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-1360\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-9y5c7uf5a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-b4sblrcat\"}]","start":"2026-04-29T13:20:00.000Z","end":"2026-04-29T13:40:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8949\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-1fhgtgpeu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085605-kigh582se\"}]","start":"2026-04-27T13:20:00.000Z","end":"2026-04-27T13:40:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5191\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-q9un5chfy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085565-hh0uvtgtu\"}]","start":"2026-02-26T19:20:00.000Z","end":"2026-02-26T19:40:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7846\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-7zfn33svg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-9rnqaszkr\"}]","start":"2026-05-13T19:20:00.000Z","end":"2026-05-13T19:40:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8280\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-6wsog1pzd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085607-b162e4fy8\"}]","start":"2026-04-28T13:20:00.000Z","end":"2026-04-28T13:40:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4902\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-v0omcp8fb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085613-zq3yoqtvj\"}]","start":"2026-05-06T15:00:00.000Z","end":"2026-05-06T15:20:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9064\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-16104s7i4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085623-owrc29bl2\"}]","start":"2026-05-19T15:20:00.000Z","end":"2026-05-19T15:40:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-2086\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-k1ennmeih","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085542-8t01fn8ry\"}]","start":"2026-01-26T21:00:00.000Z","end":"2026-01-26T21:20:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7645\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-ylh7tjcun","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-l8ychj9zn\"}]","start":"2026-03-10T20:20:00.000Z","end":"2026-03-10T20:40:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5433\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-qvhrqmw1c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085626-f0u1i9btd\"}]","start":"2026-05-22T19:40:00.000Z","end":"2026-05-22T20:00:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2812\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-4pwo9xfe8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-vqnr092sf\"}]","start":"2026-05-22T18:20:00.000Z","end":"2026-05-22T18:40:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6320\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085963-wf4lo3zwf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085541-nx73dinxh\"}]","start":"2026-01-23T16:00:00.000Z","end":"2026-01-23T16:20:00.000Z","created":"2025-12-12T05:24:45.963Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9167\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-tdjzsbqoc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085611-hse2bq15n\"}]","start":"2026-05-01T16:00:00.000Z","end":"2026-05-01T16:20:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-6654\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-qo8t70aps","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085567-7m12y1kxv\"}]","start":"2026-03-02T16:20:00.000Z","end":"2026-03-02T16:40:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7048\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-v5urqxvt1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085532-aimyseurx\"}]","start":"2026-01-13T15:00:00.000Z","end":"2026-01-13T15:20:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9405\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-qbr3lysng","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085614-72d18uwyc\"}]","start":"2026-05-06T18:20:00.000Z","end":"2026-05-06T18:40:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4015\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-uuslix6y0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-vv8oobpgw\"}]","start":"2026-05-22T16:40:00.000Z","end":"2026-05-22T17:00:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7069\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-hk741o7a4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085567-uahcwzera\"}]","start":"2026-03-02T15:20:00.000Z","end":"2026-03-02T15:40:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1447\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-cqvm4qm4d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085534-2ztam46wl\"}]","start":"2026-01-15T13:20:00.000Z","end":"2026-01-15T13:40:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6702\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-aij6pfqzw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085527-az3ndnwix\"}]","start":"2026-01-06T21:20:00.000Z","end":"2026-01-06T21:40:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9396\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-fejbjtunx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085613-jeon9hh1t\"}]","start":"2026-05-05T19:00:00.000Z","end":"2026-05-05T19:20:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3904\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-5v83yzjau","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085568-3jl1go9nr\"}]","start":"2026-03-03T19:40:00.000Z","end":"2026-03-03T20:00:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-8606\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-layqcpkjk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085623-ztgp5wyjm\"}]","start":"2026-05-20T13:40:00.000Z","end":"2026-05-20T14:00:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9000\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-64wztsqsi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085567-veb18ne69\"}]","start":"2026-03-02T21:00:00.000Z","end":"2026-03-02T21:20:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9328\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085964-nd9d9iub1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-t1cmgf789\"}]","start":"2026-01-05T16:20:00.000Z","end":"2026-01-05T16:40:00.000Z","created":"2025-12-12T05:24:45.964Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4243\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-zwlrag0du","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085534-e6v03ylet\"}]","start":"2026-01-16T13:40:00.000Z","end":"2026-01-16T14:00:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5239\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-rg6jorr37","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085614-ll3z2h3s1\"}]","start":"2026-05-06T17:20:00.000Z","end":"2026-05-06T17:40:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7664\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-6utxt59pa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085527-yci0p2s5n\"}]","start":"2026-01-06T20:00:00.000Z","end":"2026-01-06T20:20:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3449\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-jf22irvxp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085574-el3sgivej\"}]","start":"2026-03-10T19:00:00.000Z","end":"2026-03-10T19:20:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8702\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-m74fpx9mn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-eswgomn5q\"}]","start":"2026-04-29T17:00:00.000Z","end":"2026-04-29T17:20:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7091\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-ibd3s5036","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085622-a55i6h1ta\"}]","start":"2026-05-19T13:00:00.000Z","end":"2026-05-19T13:20:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8269\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-pyjvft6c0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085529-yydjaj0e7\"}]","start":"2026-01-09T14:20:00.000Z","end":"2026-01-09T14:40:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3916\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-3jkuau2zz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085571-67s3x492s\"}]","start":"2026-03-06T19:00:00.000Z","end":"2026-03-06T19:20:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-2178\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-lj67z3gjb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085565-ulsjqak8x\"}]","start":"2026-02-27T14:20:00.000Z","end":"2026-02-27T14:40:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-9331\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-fz1mk36qe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085611-1wxj8w1sd\"}]","start":"2026-05-01T20:20:00.000Z","end":"2026-05-01T20:40:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2877\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-7vd1laso5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085572-zk561wdpk\"}]","start":"2026-03-06T20:40:00.000Z","end":"2026-03-06T21:00:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7909\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-hcitz6za4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085517-ijnigy3da\"}]","start":"2025-12-26T15:00:00.000Z","end":"2025-12-26T15:20:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9543\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085965-ynjex65xc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085624-8nhdvwfo3\"}]","start":"2026-05-21T13:40:00.000Z","end":"2026-05-21T14:00:00.000Z","created":"2025-12-12T05:24:45.965Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-5888\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-mn0bagf55","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085541-kiobnyjmj\"}]","start":"2026-01-23T18:40:00.000Z","end":"2026-01-23T19:00:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3000\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-06ecpcxqd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085625-dgxxi4uzd\"}]","start":"2026-05-21T20:40:00.000Z","end":"2026-05-21T21:00:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4728\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-uqy3pbsaj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085529-kiz31u5qm\"}]","start":"2026-01-09T17:20:00.000Z","end":"2026-01-09T17:40:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4459\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-k798sx4ee","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085565-4mqrevb77\"}]","start":"2026-02-26T17:20:00.000Z","end":"2026-02-26T17:40:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6168\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-91at5wq2c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085625-oxy587y6i\"}]","start":"2026-05-22T15:00:00.000Z","end":"2026-05-22T15:20:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9515\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-y8w44rey8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-87g7ys430\"}]","start":"2026-04-01T14:20:00.000Z","end":"2026-04-01T14:40:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9118\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-7hvug8hya","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085585-wvy1i4g8w\"}]","start":"2026-03-26T16:40:00.000Z","end":"2026-03-26T17:00:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3447\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-wvm9pz1c0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-0scah5vqf\"}]","start":"2026-02-23T18:20:00.000Z","end":"2026-02-23T18:40:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4219\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-c6cxlpfdg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-xwmpet44f\"}]","start":"2026-02-19T18:00:00.000Z","end":"2026-02-19T18:20:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3708\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-8bz3t2bq4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085567-4o5kbv51z\"}]","start":"2026-03-02T17:40:00.000Z","end":"2026-03-02T18:00:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9207\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-28nx2t3bu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085567-nx0jkz5zk\"}]","start":"2026-03-02T17:20:00.000Z","end":"2026-03-02T17:40:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-6385\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085966-usn7z62il","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085522-1dja6ov1q\"}]","start":"2026-01-02T16:00:00.000Z","end":"2026-01-02T16:20:00.000Z","created":"2025-12-12T05:24:45.966Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6262\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-0uwf01izk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085583-nl6lrgh58\"}]","start":"2026-03-25T12:40:00.000Z","end":"2026-03-25T13:00:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6091\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-fvwfiazkf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085626-cxhcit174\"}]","start":"2026-05-22T20:40:00.000Z","end":"2026-05-22T21:00:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4594\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-bxvm1k2tc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085513-6ohr72m0f\"}]","start":"2025-12-22T13:00:00.000Z","end":"2025-12-22T13:20:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9471\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-3vhkzqdh8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085560-0le54f2r7\"}]","start":"2026-02-19T17:00:00.000Z","end":"2026-02-19T17:20:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8020\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-go4bwmk3w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085565-en7u54n9q\"}]","start":"2026-02-27T14:00:00.000Z","end":"2026-02-27T14:20:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6825\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-248brg59v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085572-rfuqpzku6\"}]","start":"2026-03-09T12:00:00.000Z","end":"2026-03-09T12:20:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8612\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-5es1k8a53","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085576-heo1kjsiu\"}]","start":"2026-03-13T12:40:00.000Z","end":"2026-03-13T13:00:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-4741\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-6fudq52rz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085599-yh97nqqzd\"}]","start":"2026-04-16T18:00:00.000Z","end":"2026-04-16T18:20:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5196\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-z6pxluuan","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085614-sre4qcsp0\"}]","start":"2026-05-06T19:00:00.000Z","end":"2026-05-06T19:20:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5836\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-zp4tmo356","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085503-lgbth7gfl\"}]","start":"2025-12-12T19:40:00.000Z","end":"2025-12-12T20:00:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-9961\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-q8sckm1yb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085565-h2zxmzz3c\"}]","start":"2026-02-27T17:40:00.000Z","end":"2026-02-27T18:00:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9637\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-6bzg2dm9r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-apl00v1mu\"}]","start":"2026-05-21T18:20:00.000Z","end":"2026-05-21T18:40:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5378\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085967-tz1svq5vz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085604-y2lrc07ou\"}]","start":"2026-04-23T13:20:00.000Z","end":"2026-04-23T13:40:00.000Z","created":"2025-12-12T05:24:45.967Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8926\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-iql6e7u3a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085511-39y32yp5v\"}]","start":"2025-12-17T17:40:00.000Z","end":"2025-12-17T18:00:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-7179\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-hujnwlzh9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085624-t7tzc19ik\"}]","start":"2026-05-21T15:00:00.000Z","end":"2026-05-21T15:20:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5233\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-uweb21oza","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085625-q173ozf45\"}]","start":"2026-05-21T16:20:00.000Z","end":"2026-05-21T16:40:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3346\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-l9zs6gfts","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085623-3pse38i75\"}]","start":"2026-05-19T18:40:00.000Z","end":"2026-05-19T19:00:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7734\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-aerbmcnpi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085607-5ctugn0lo\"}]","start":"2026-04-28T12:00:00.000Z","end":"2026-04-28T12:20:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9568\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-domqve16s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-ax9l1v1yp\"}]","start":"2026-05-14T14:20:00.000Z","end":"2026-05-14T14:40:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9034\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-7xx871jyf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085530-3t63gt6kd\"}]","start":"2026-01-09T21:40:00.000Z","end":"2026-01-09T22:00:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-7249\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-85eovg6qy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-7j14szdrj\"}]","start":"2026-01-26T20:40:00.000Z","end":"2026-01-26T21:00:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-5505\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-v7zhxitid","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085600-xx345hxja\"}]","start":"2026-04-17T13:00:00.000Z","end":"2026-04-17T13:20:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4007\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-1wq4ldqo1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085580-fnilzoc8b\"}]","start":"2026-03-19T12:40:00.000Z","end":"2026-03-19T13:00:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5341\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-ov8nmmreq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085625-17cx4jgs3\"}]","start":"2026-05-21T20:20:00.000Z","end":"2026-05-21T20:40:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3889\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-pfr4aj0qh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085560-jiskbzzph\"}]","start":"2026-02-20T15:40:00.000Z","end":"2026-02-20T16:00:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9582\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085968-z0vb7srs3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085510-hbrlr2wxj\"}]","start":"2025-12-16T15:20:00.000Z","end":"2025-12-16T15:40:00.000Z","created":"2025-12-12T05:24:45.968Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-3063\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-cf4wjqiss","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085579-4ru1q2mpe\"}]","start":"2026-03-17T16:20:00.000Z","end":"2026-03-17T16:40:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7373\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-im3rg6bo3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085598-rqor70jne\"}]","start":"2026-04-15T15:20:00.000Z","end":"2026-04-15T15:40:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1181\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-v4u8657sj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085598-thdrfgk99\"}]","start":"2026-04-15T12:40:00.000Z","end":"2026-04-15T13:00:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1295\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-dpper47wr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085616-btmvlaml1\"}]","start":"2026-05-08T15:00:00.000Z","end":"2026-05-08T15:20:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1726\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-igw1yppyh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085601-9dmfat035\"}]","start":"2026-04-20T13:20:00.000Z","end":"2026-04-20T13:40:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4663\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-szbjigiln","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-2dk8w7hma\"}]","start":"2026-02-23T13:00:00.000Z","end":"2026-02-23T13:20:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7198\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-iqllkhlhe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085541-kro97cgsw\"}]","start":"2026-01-23T15:20:00.000Z","end":"2026-01-23T15:40:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4083\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-3106kh7qi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-ku6eea0n1\"}]","start":"2025-12-24T14:00:00.000Z","end":"2025-12-24T14:20:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-7071\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-ei46fg2vb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085572-usu5505tx\"}]","start":"2026-03-09T14:20:00.000Z","end":"2026-03-09T14:40:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6256\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-h77mvb97q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085561-te7yqum4t\"}]","start":"2026-02-23T14:20:00.000Z","end":"2026-02-23T14:40:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1692\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-w8hsk5jhw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085617-qw6tu6qsj\"}]","start":"2026-05-11T12:00:00.000Z","end":"2026-05-11T12:20:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1535\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085969-n167084fb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085562-c6bexqslz\"}]","start":"2026-02-24T21:00:00.000Z","end":"2026-02-24T21:20:00.000Z","created":"2025-12-12T05:24:45.969Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7311\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-0i329gcu1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-ggxe7bm6m\"}]","start":"2026-03-11T15:00:00.000Z","end":"2026-03-11T15:20:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6835\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-s073nqfgd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085599-f44ytv333\"}]","start":"2026-04-16T16:20:00.000Z","end":"2026-04-16T16:40:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-6036\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-3b6f8osv2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085562-vwdtfmq9o\"}]","start":"2026-02-24T18:40:00.000Z","end":"2026-02-24T19:00:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4318\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-gscqgh3b2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085530-6zygax0jo\"}]","start":"2026-01-12T17:40:00.000Z","end":"2026-01-12T18:00:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7744\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-pagyb6lto","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085618-ofb0mawvq\"}]","start":"2026-05-12T19:00:00.000Z","end":"2026-05-12T19:20:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9027\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-c5oz9nl7s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085519-8rnm9q5cg\"}]","start":"2025-12-31T16:00:00.000Z","end":"2025-12-31T16:20:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3294\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-al8ctzdsy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085513-p1dgkjjc9\"}]","start":"2025-12-22T14:00:00.000Z","end":"2025-12-22T14:20:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6011\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-53sexm2gr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085557-qo77ojpuv\"}]","start":"2026-02-17T16:40:00.000Z","end":"2026-02-17T17:00:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2133\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-tyk6ydjmx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085604-loqmarfzx\"}]","start":"2026-04-23T15:20:00.000Z","end":"2026-04-23T15:40:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2842\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-mj0nuk735","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085503-l1pp0g4vc\"}]","start":"2025-12-12T19:20:00.000Z","end":"2025-12-12T19:40:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2615\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-vf9gtpbpl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085621-f8fmz64vl\"}]","start":"2026-05-18T18:40:00.000Z","end":"2026-05-18T19:00:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1600\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085970-2avult4hq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085543-m15l27yxo\"}]","start":"2026-01-28T14:20:00.000Z","end":"2026-01-28T14:40:00.000Z","created":"2025-12-12T05:24:45.970Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9548\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085972-5g1u6j3ip","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085546-ud4v6qg01\"}]","start":"2026-01-29T20:00:00.000Z","end":"2026-01-29T20:20:00.000Z","created":"2025-12-12T05:24:45.972Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7670\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.972Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085972-6ttpam2ac","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085566-i1mg8505z\"}]","start":"2026-03-02T13:40:00.000Z","end":"2026-03-02T14:00:00.000Z","created":"2025-12-12T05:24:45.972Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3599\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.972Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085972-lwl5r91iw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085599-bp8pejvt6\"}]","start":"2026-04-16T14:20:00.000Z","end":"2026-04-16T14:40:00.000Z","created":"2025-12-12T05:24:45.972Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5672\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.972Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-p5enf75dj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085568-gd9i4c11n\"}]","start":"2026-03-03T15:20:00.000Z","end":"2026-03-03T15:40:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8652\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-2iytiwn4o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-cf9o538sp\"}]","start":"2026-01-26T20:20:00.000Z","end":"2026-01-26T20:40:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9949\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-2gqw6v4vl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085599-5ac9jhzg4\"}]","start":"2026-04-16T15:20:00.000Z","end":"2026-04-16T15:40:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5272\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-acvkhgnw1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085624-hpes4fwo3\"}]","start":"2026-05-21T15:20:00.000Z","end":"2026-05-21T15:40:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-5698\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-ky4zzmpy4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085504-t0hu0iyh1\"}]","start":"2025-12-15T17:20:00.000Z","end":"2025-12-15T17:40:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6663\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-6s1w1zg1r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085503-8qb7bojjx\"}]","start":"2025-12-15T17:00:00.000Z","end":"2025-12-15T17:20:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9580\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-krpohnakp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085580-gmmqly0x0\"}]","start":"2026-03-19T14:20:00.000Z","end":"2026-03-19T14:40:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3706\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-zuh0s1iqp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085605-9pgn0q990\"}]","start":"2026-04-23T20:00:00.000Z","end":"2026-04-23T20:20:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5615\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-rylurjlsx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085624-8fv3jkbs2\"}]","start":"2026-05-20T18:40:00.000Z","end":"2026-05-20T19:00:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4881\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085973-8nhfi1ra1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085547-slngmhv1i\"}]","start":"2026-02-02T13:40:00.000Z","end":"2026-02-02T14:00:00.000Z","created":"2025-12-12T05:24:45.973Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6006\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-2nf0xal9w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085591-aj5n2upjg\"}]","start":"2026-04-02T18:20:00.000Z","end":"2026-04-02T18:40:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-9497\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-0d5r51zqc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-qm8smhafa\"}]","start":"2026-05-13T18:00:00.000Z","end":"2026-05-13T18:20:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9004\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-6w2uiva51","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085543-ulpf2d19z\"}]","start":"2026-01-27T15:20:00.000Z","end":"2026-01-27T15:40:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2091\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-nzk74wl2v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085544-ez6auwf63\"}]","start":"2026-01-29T19:00:00.000Z","end":"2026-01-29T19:20:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1385\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-eimm5b9ht","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085503-hqe76skxk\"}]","start":"2025-12-12T20:20:00.000Z","end":"2025-12-12T20:40:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8669\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-bnppvzk5a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085617-mtiy4hiz3\"}]","start":"2026-05-11T17:00:00.000Z","end":"2026-05-11T17:20:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-1032\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-b1fiuz7ur","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085541-868l3da04\"}]","start":"2026-01-23T20:00:00.000Z","end":"2026-01-23T20:20:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6484\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-usqjhh8k1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085581-4eiyw2adi\"}]","start":"2026-03-20T19:20:00.000Z","end":"2026-03-20T19:40:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5622\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-cudqx4d0i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085521-xvb1ukmvt\"}]","start":"2026-01-01T20:00:00.000Z","end":"2026-01-01T20:20:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-8231\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-1qb8o8kr7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085529-fivx27bjn\"}]","start":"2026-01-09T14:00:00.000Z","end":"2026-01-09T14:20:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9709\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-buihb3izt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085576-ob65hq84p\"}]","start":"2026-03-13T18:40:00.000Z","end":"2026-03-13T19:00:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8618\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085974-ava0s0phv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085614-5riybowqx\"}]","start":"2026-05-07T18:00:00.000Z","end":"2026-05-07T18:20:00.000Z","created":"2025-12-12T05:24:45.974Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5460\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085975-5pz2vpjh1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085579-3mlupteis\"}]","start":"2026-03-18T17:40:00.000Z","end":"2026-03-18T18:00:00.000Z","created":"2025-12-12T05:24:45.975Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1789\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.975Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085975-4bec0ydev","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085599-3nmqjbnvh\"}]","start":"2026-04-16T14:00:00.000Z","end":"2026-04-16T14:20:00.000Z","created":"2025-12-12T05:24:45.975Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8459\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.975Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085975-fvu1f3u9u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085560-05usfuv99\"}]","start":"2026-02-19T19:00:00.000Z","end":"2026-02-19T19:20:00.000Z","created":"2025-12-12T05:24:45.975Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4952\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.975Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-mdysv0mdb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085534-5tbb9px72\"}]","start":"2026-01-16T15:20:00.000Z","end":"2026-01-16T15:40:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7908\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-va560nrqm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085548-vvn5qp0xz\"}]","start":"2026-02-04T15:20:00.000Z","end":"2026-02-04T15:40:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4017\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-txt82smx1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-rjk298rax\"}]","start":"2026-01-15T16:20:00.000Z","end":"2026-01-15T16:40:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6510\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-omauen9b5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085585-c3x0bcxy5\"}]","start":"2026-03-25T17:40:00.000Z","end":"2026-03-25T18:00:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8235\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-v6r0debjs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085605-qhecs2wb4\"}]","start":"2026-04-24T14:20:00.000Z","end":"2026-04-24T14:40:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9028\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-hmh1r4pvr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085544-qoqtmw07q\"}]","start":"2026-01-28T18:00:00.000Z","end":"2026-01-28T18:20:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7867\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-thqbqj32c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085546-y6w40h93k\"}]","start":"2026-01-30T17:40:00.000Z","end":"2026-01-30T18:00:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3436\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-id5dq8jr1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085561-2yxhsqt7t\"}]","start":"2026-02-23T20:40:00.000Z","end":"2026-02-23T21:00:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6758\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-4oe80oly4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085614-y7l8iwnaf\"}]","start":"2026-05-07T12:40:00.000Z","end":"2026-05-07T13:00:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4356\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-gdxuechw0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085550-tr1d0ytrt\"}]","start":"2026-02-05T21:00:00.000Z","end":"2026-02-05T21:20:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8445\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085976-zcutjchf4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085580-bvwrtxd8d\"}]","start":"2026-03-19T14:40:00.000Z","end":"2026-03-19T15:00:00.000Z","created":"2025-12-12T05:24:45.976Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9971\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-n00fcm1dt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085605-obe5f0rir\"}]","start":"2026-04-24T15:20:00.000Z","end":"2026-04-24T15:40:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1129\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-m9px4qs2g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085612-uvjleg3vf\"}]","start":"2026-05-04T14:00:00.000Z","end":"2026-05-04T14:20:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4815\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-72rhod0zc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085625-qm7f2a0cq\"}]","start":"2026-05-22T14:40:00.000Z","end":"2026-05-22T15:00:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6140\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-tzme4f94q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085588-vubaf6nfs\"}]","start":"2026-04-01T15:20:00.000Z","end":"2026-04-01T15:40:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-4816\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-ced90digk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085533-4z8v5ird9\"}]","start":"2026-01-14T20:20:00.000Z","end":"2026-01-14T20:40:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1179\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-0livrwukt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085518-2nup5w3j9\"}]","start":"2025-12-29T20:40:00.000Z","end":"2025-12-29T21:00:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-5913\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-5hvnzv8nd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085603-2nni1cpbu\"}]","start":"2026-04-22T13:20:00.000Z","end":"2026-04-22T13:40:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-7028\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-fuq27qglb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085543-bumt3rjfl\"}]","start":"2026-01-28T13:20:00.000Z","end":"2026-01-28T13:40:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2129\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-35zgnhl1u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085567-nq2gb6vwj\"}]","start":"2026-03-02T15:40:00.000Z","end":"2026-03-02T16:00:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2920\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-2808dcf1a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085546-x4gne2p4t\"}]","start":"2026-01-29T20:40:00.000Z","end":"2026-01-29T21:00:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1922\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-3l1yo1mvi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085600-z1xx2tgjl\"}]","start":"2026-04-17T12:40:00.000Z","end":"2026-04-17T13:00:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7822\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-idnjrbpis","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085588-jbexb6o4k\"}]","start":"2026-04-01T17:40:00.000Z","end":"2026-04-01T18:00:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1270\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085977-w7buwfyjk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085542-68l63fpwe\"}]","start":"2026-01-26T17:20:00.000Z","end":"2026-01-26T17:40:00.000Z","created":"2025-12-12T05:24:45.977Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-1618\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-6b86hhwm6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085614-qsbqzrher\"}]","start":"2026-05-07T15:40:00.000Z","end":"2026-05-07T16:00:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6116\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-4y8jqbux6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085583-w1mvs4f4r\"}]","start":"2026-03-24T18:20:00.000Z","end":"2026-03-24T18:40:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2610\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-ys5hs7kwf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085529-79xosl3om\"}]","start":"2026-01-09T15:20:00.000Z","end":"2026-01-09T15:40:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6670\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-2nxzg2xet","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085565-orzbrkioq\"}]","start":"2026-02-26T16:20:00.000Z","end":"2026-02-26T16:40:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4872\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-j29tg8onk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085621-3h899glp6\"}]","start":"2026-05-18T16:00:00.000Z","end":"2026-05-18T16:20:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5082\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-692p5k04k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085623-3x6h3a2ln\"}]","start":"2026-05-20T12:40:00.000Z","end":"2026-05-20T13:00:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4876\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-oo42hf569","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085559-mup5cz570\"}]","start":"2026-02-18T17:40:00.000Z","end":"2026-02-18T18:00:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6352\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-vm5gaex6s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085623-vco2vmftk\"}]","start":"2026-05-19T15:00:00.000Z","end":"2026-05-19T15:20:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5122\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-fqjwrztz7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085516-1f6g6gg79\"}]","start":"2025-12-24T19:40:00.000Z","end":"2025-12-24T20:00:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7327\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-mw18udv7l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-ef9npt89w\"}]","start":"2026-04-02T20:00:00.000Z","end":"2026-04-02T20:20:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2976\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-2xzqtgb4q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085605-m81hgh1kq\"}]","start":"2026-04-24T13:20:00.000Z","end":"2026-04-24T13:40:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9723\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-6sy8px59k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085610-vy53lctl9\"}]","start":"2026-04-30T17:20:00.000Z","end":"2026-04-30T17:40:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-4038\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085978-ski4yund3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085623-03oe3p5p3\"}]","start":"2026-05-19T18:00:00.000Z","end":"2026-05-19T18:20:00.000Z","created":"2025-12-12T05:24:45.978Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8310\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-6kdqy5xu8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085547-uuwp82de8\"}]","start":"2026-02-02T18:40:00.000Z","end":"2026-02-02T19:00:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-9196\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-t943xcl8a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085523-8gc0nnecb\"}]","start":"2026-01-05T18:20:00.000Z","end":"2026-01-05T18:40:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8267\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-b4l60o70d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085503-lzkzgqhlw\"}]","start":"2025-12-12T21:00:00.000Z","end":"2025-12-12T21:20:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9962\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-7cm624dwh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085510-t561aviou\"}]","start":"2025-12-16T15:40:00.000Z","end":"2025-12-16T16:00:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5811\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-w07j8jgm4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085520-gm9kct7in\"}]","start":"2026-01-01T14:00:00.000Z","end":"2026-01-01T14:20:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-8175\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-wk4p6wd9v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085517-ua80lxtok\"}]","start":"2025-12-26T19:40:00.000Z","end":"2025-12-26T20:00:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5226\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-qr5s3xi4i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085546-wx2oeocn6\"}]","start":"2026-01-30T19:00:00.000Z","end":"2026-01-30T19:20:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1985\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-ab7mr05j0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085574-4phbosapw\"}]","start":"2026-03-11T14:40:00.000Z","end":"2026-03-11T15:00:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3345\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-vw1r9ijjr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085605-kowtkl6lx\"}]","start":"2026-04-23T19:20:00.000Z","end":"2026-04-23T19:40:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5155\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-gknlnec87","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085528-adg3vtpkc\"}]","start":"2026-01-07T15:20:00.000Z","end":"2026-01-07T15:40:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5155\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-1ub3o55sp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085581-ag4whophi\"}]","start":"2026-03-23T12:40:00.000Z","end":"2026-03-23T13:00:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5557\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-jl4ekj9zf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085502-th9d5sbeq\"}]","start":"2025-12-12T17:40:00.000Z","end":"2025-12-12T18:00:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5517\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085979-704fcaw8b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085608-bdg4r773t\"}]","start":"2026-04-29T13:40:00.000Z","end":"2026-04-29T14:00:00.000Z","created":"2025-12-12T05:24:45.979Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9995\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-t70r6f4b9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085601-zno80yhwe\"}]","start":"2026-04-20T20:20:00.000Z","end":"2026-04-20T20:40:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1975\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-a2ayibav9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085605-y3p8aegno\"}]","start":"2026-04-24T15:40:00.000Z","end":"2026-04-24T16:00:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8145\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-ec6bgyv6j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085548-iqypbo7u4\"}]","start":"2026-02-03T14:20:00.000Z","end":"2026-02-03T14:40:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5552\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-xno8wc7qy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085624-arih9mtfh\"}]","start":"2026-05-21T14:20:00.000Z","end":"2026-05-21T14:40:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5943\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-4f6qx0p8b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-h4dwweg7s\"}]","start":"2026-01-05T14:40:00.000Z","end":"2026-01-05T15:00:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1501\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-bvq5sqd7n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085572-5rg40ym6r\"}]","start":"2026-03-06T19:40:00.000Z","end":"2026-03-06T20:00:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5616\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-ta21t1ac7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085608-buiblc7uu\"}]","start":"2026-04-28T20:20:00.000Z","end":"2026-04-28T20:40:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2587\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-z9hrs2zrp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-mugn4vv6w\"}]","start":"2026-05-14T13:00:00.000Z","end":"2026-05-14T13:20:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-5453\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-xfx8tbrkv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085534-91dsuwl58\"}]","start":"2026-01-15T18:00:00.000Z","end":"2026-01-15T18:20:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4588\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-nvbbgccq8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085576-89i4yuzcz\"}]","start":"2026-03-16T12:00:00.000Z","end":"2026-03-16T12:20:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5211\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-p6qvw672i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085623-34e68a7kv\"}]","start":"2026-05-19T20:00:00.000Z","end":"2026-05-19T20:20:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1374\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-4ofv7wz7k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085572-wcw1t8o46\"}]","start":"2026-03-09T14:00:00.000Z","end":"2026-03-09T14:20:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4848\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085980-lwzcmk0qw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085529-bxfaurdpm\"}]","start":"2026-01-09T14:40:00.000Z","end":"2026-01-09T15:00:00.000Z","created":"2025-12-12T05:24:45.980Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2507\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-6u6ay1hyc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085622-t62akc40l\"}]","start":"2026-05-19T12:00:00.000Z","end":"2026-05-19T12:20:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7395\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-eqi1ato8g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085606-0lfb5pwfv\"}]","start":"2026-04-27T13:40:00.000Z","end":"2026-04-27T14:00:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9837\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-1tqciks55","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085518-asd5tsib3\"}]","start":"2025-12-30T13:00:00.000Z","end":"2025-12-30T13:20:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3569\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-aivcxysd2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085608-rp9zprebo\"}]","start":"2026-04-29T12:40:00.000Z","end":"2026-04-29T13:00:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4796\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-9ajg7asrh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085548-x7z821jve\"}]","start":"2026-02-03T15:00:00.000Z","end":"2026-02-03T15:20:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8465\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-q94le16wg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085528-j13o2c7r7\"}]","start":"2026-01-07T19:00:00.000Z","end":"2026-01-07T19:20:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3176\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-sjzhwey56","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085599-u4h58xf26\"}]","start":"2026-04-16T16:40:00.000Z","end":"2026-04-16T17:00:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7689\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-z4c0t82s6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085528-qh7sa9niq\"}]","start":"2026-01-07T14:20:00.000Z","end":"2026-01-07T14:40:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-5827\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-omw9b40tz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085533-3rj7irrww\"}]","start":"2026-01-14T17:20:00.000Z","end":"2026-01-14T17:40:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3155\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-26pfa15oy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-wkw5ex8ud\"}]","start":"2026-04-02T19:40:00.000Z","end":"2026-04-02T20:00:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1222\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-parrku8va","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085572-7h4xojcpe\"}]","start":"2026-03-09T16:40:00.000Z","end":"2026-03-09T17:00:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-4899\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085981-42jza4k91","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085581-umkg68c17\"}]","start":"2026-03-20T13:00:00.000Z","end":"2026-03-20T13:20:00.000Z","created":"2025-12-12T05:24:45.981Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6831\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-w1wsenlot","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085601-x89759dvj\"}]","start":"2026-04-21T13:20:00.000Z","end":"2026-04-21T13:40:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6311\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-w7dq43ivr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085534-8hcb1nnpc\"}]","start":"2026-01-15T14:20:00.000Z","end":"2026-01-15T14:40:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2168\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-b88v9quos","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085513-xjlsc21p3\"}]","start":"2025-12-22T16:40:00.000Z","end":"2025-12-22T17:00:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6178\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-qy6vjxc83","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085571-uvhlze8d3\"}]","start":"2026-03-06T17:00:00.000Z","end":"2026-03-06T17:20:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6545\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-0wf2jtipb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085544-l98j8wi94\"}]","start":"2026-01-28T19:00:00.000Z","end":"2026-01-28T19:20:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4158\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-kbiafwm5d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085566-94dmahwl8\"}]","start":"2026-02-27T19:40:00.000Z","end":"2026-02-27T20:00:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6113\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-4wevclrg4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085600-2rpttp0bg\"}]","start":"2026-04-17T17:00:00.000Z","end":"2026-04-17T17:20:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2101\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-u7pgm47xy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085569-blc8oxggm\"}]","start":"2026-03-05T15:00:00.000Z","end":"2026-03-05T15:20:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1048\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-uhis2koc8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-ufgru1fdn\"}]","start":"2026-02-20T18:00:00.000Z","end":"2026-02-20T18:20:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1461\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-8uwtwozxa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085562-rkrdlero4\"}]","start":"2026-02-25T14:20:00.000Z","end":"2026-02-25T14:40:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2941\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-49z0fg9m0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085541-tin0q84cr\"}]","start":"2026-01-23T21:00:00.000Z","end":"2026-01-23T21:20:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7152\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085982-eud9uwski","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085543-big4syw9d\"}]","start":"2026-01-28T16:00:00.000Z","end":"2026-01-28T16:20:00.000Z","created":"2025-12-12T05:24:45.982Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2542\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085984-yrgmtwq1s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085612-euo1vpkef\"}]","start":"2026-05-05T13:00:00.000Z","end":"2026-05-05T13:20:00.000Z","created":"2025-12-12T05:24:45.984Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-2322\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.984Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085984-eyqdbgg2h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085575-71mb7lsnc\"}]","start":"2026-03-12T14:40:00.000Z","end":"2026-03-12T15:00:00.000Z","created":"2025-12-12T05:24:45.984Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5974\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.984Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-1vvy5me6e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085567-av5niq8vf\"}]","start":"2026-03-03T13:00:00.000Z","end":"2026-03-03T13:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9260\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-ug2rs4cfh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085570-2zxfcwds3\"}]","start":"2026-03-05T20:40:00.000Z","end":"2026-03-05T21:00:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4496\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-wk4ulamgl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085544-mrnxou46g\"}]","start":"2026-01-29T15:00:00.000Z","end":"2026-01-29T15:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3402\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-20yym4c9c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085579-iv2ic4t5g\"}]","start":"2026-03-18T12:20:00.000Z","end":"2026-03-18T12:40:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7776\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-foabuixqs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085514-1zpkknuz7\"}]","start":"2025-12-23T14:00:00.000Z","end":"2025-12-23T14:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4383\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-wj8gytakx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085625-fv6xewejx\"}]","start":"2026-05-22T13:00:00.000Z","end":"2026-05-22T13:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7291\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-ac9a7d0gg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085605-2go2ltp44\"}]","start":"2026-04-24T14:00:00.000Z","end":"2026-04-24T14:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-8840\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-3k5w4s9tv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085582-1g1juj2ci\"}]","start":"2026-03-24T12:20:00.000Z","end":"2026-03-24T12:40:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2968\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-hw6d9ksx7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085518-nwwsls241\"}]","start":"2025-12-29T20:00:00.000Z","end":"2025-12-29T20:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9657\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-s5j3h294t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085581-6fr5cq40a\"}]","start":"2026-03-23T12:20:00.000Z","end":"2026-03-23T12:40:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6443\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-j9wh8d0rp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085618-912fy59dg\"}]","start":"2026-05-13T17:00:00.000Z","end":"2026-05-13T17:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7420\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-tkvljfxhz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-fcbianm0e\"}]","start":"2026-04-02T18:00:00.000Z","end":"2026-04-02T18:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1208\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085985-34pwf4r9e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085533-2u52hujj3\"}]","start":"2026-01-14T13:00:00.000Z","end":"2026-01-14T13:20:00.000Z","created":"2025-12-12T05:24:45.985Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4724\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-6kdllppqf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085573-ikz7hf7d8\"}]","start":"2026-03-09T20:00:00.000Z","end":"2026-03-09T20:20:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8708\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-d22lx3c2t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085543-kgxghh53u\"}]","start":"2026-01-27T19:00:00.000Z","end":"2026-01-27T19:20:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8581\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-3jb8x10gy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085580-ux7ypz48f\"}]","start":"2026-03-19T18:00:00.000Z","end":"2026-03-19T18:20:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-5373\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-bee9js2yc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085560-s4stldk50\"}]","start":"2026-02-20T13:00:00.000Z","end":"2026-02-20T13:20:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6624\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-6akax5usi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085547-qd188yhej\"}]","start":"2026-02-02T21:00:00.000Z","end":"2026-02-02T21:20:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5207\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-96glaeu2o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085624-mmuavkck6\"}]","start":"2026-05-20T14:40:00.000Z","end":"2026-05-20T15:00:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2026\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-6yneji1rz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085601-6gn66jlj5\"}]","start":"2026-04-20T15:20:00.000Z","end":"2026-04-20T15:40:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-7862\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-2u7vkwijk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085502-6vs7l0qe7\"}]","start":"2025-12-12T15:20:00.000Z","end":"2025-12-12T15:40:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6815\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-c2tuzjid3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-u35gcbf0c\"}]","start":"2026-05-22T16:20:00.000Z","end":"2026-05-22T16:40:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5863\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-6sryjnxac","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-5434hyy5h\"}]","start":"2026-02-19T17:40:00.000Z","end":"2026-02-19T18:00:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-6256\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-lfdns6j6t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-0s74foim7\"}]","start":"2026-04-01T18:00:00.000Z","end":"2026-04-01T18:20:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6917\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-by0jiaesu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085559-cb886k156\"}]","start":"2026-02-18T15:40:00.000Z","end":"2026-02-18T16:00:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8727\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085986-eyp47h1kx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085607-mc3zbvr6a\"}]","start":"2026-04-28T12:40:00.000Z","end":"2026-04-28T13:00:00.000Z","created":"2025-12-12T05:24:45.986Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6422\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-a4ua5juip","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085533-aavkn252y\"}]","start":"2026-01-13T21:40:00.000Z","end":"2026-01-13T22:00:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2775\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-brqd9iwsc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085511-6qxantlfq\"}]","start":"2025-12-17T18:40:00.000Z","end":"2025-12-17T19:00:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7553\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-ato2gy6q0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085533-38ynrd2f3\"}]","start":"2026-01-14T19:20:00.000Z","end":"2026-01-14T19:40:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5080\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-82m8o5i5j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085544-qhdzyuj3c\"}]","start":"2026-01-29T13:20:00.000Z","end":"2026-01-29T13:40:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-4604\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-pqusyjxrf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085611-ki6d8oghx\"}]","start":"2026-05-01T18:40:00.000Z","end":"2026-05-01T19:00:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4319\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-i1ds6s6xj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085548-b415oqvgx\"}]","start":"2026-02-04T15:00:00.000Z","end":"2026-02-04T15:20:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1783\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-ipeu6vb78","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085528-do7kl3nm4\"}]","start":"2026-01-07T20:20:00.000Z","end":"2026-01-07T20:40:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6358\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-msvumko6w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085544-bwu8qw3te\"}]","start":"2026-01-29T13:40:00.000Z","end":"2026-01-29T14:00:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8221\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-pl5awuzyd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085543-4oigizffw\"}]","start":"2026-01-28T15:40:00.000Z","end":"2026-01-28T16:00:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3948\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-rsw5v2rk4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085561-cwiq6iyck\"}]","start":"2026-02-23T16:20:00.000Z","end":"2026-02-23T16:40:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5840\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-2e6wl8trb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085573-ejhye7uxl\"}]","start":"2026-03-10T12:00:00.000Z","end":"2026-03-10T12:20:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1972\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-2aneakhtr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085608-ayfr9qtvi\"}]","start":"2026-04-28T16:00:00.000Z","end":"2026-04-28T16:20:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8257\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085987-o82y4bhic","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085613-fuoxl9y04\"}]","start":"2026-05-05T16:00:00.000Z","end":"2026-05-05T16:20:00.000Z","created":"2025-12-12T05:24:45.987Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4499\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-5i4ebd14d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085510-zbgtqfs9j\"}]","start":"2025-12-16T13:40:00.000Z","end":"2025-12-16T14:00:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-8941\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-ujwhpp4xo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-4ui524bu9\"}]","start":"2026-04-29T16:40:00.000Z","end":"2026-04-29T17:00:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2367\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-7tbvygufu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085600-wtsphp7c6\"}]","start":"2026-04-17T15:40:00.000Z","end":"2026-04-17T16:00:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1592\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-v4s6smrrj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085573-6ilhn0wtb\"}]","start":"2026-03-09T20:20:00.000Z","end":"2026-03-09T20:40:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2322\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-8oock0p0c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085549-na4mk8rfb\"}]","start":"2026-02-04T21:20:00.000Z","end":"2026-02-04T21:40:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3398\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-402qara5p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085604-vnwivsm77\"}]","start":"2026-04-23T14:20:00.000Z","end":"2026-04-23T14:40:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7083\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-q43dtpncv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085605-83lswj5i0\"}]","start":"2026-04-24T12:20:00.000Z","end":"2026-04-24T12:40:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9678\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-lkdzfpq6e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085513-i90e9y0hp\"}]","start":"2025-12-22T14:40:00.000Z","end":"2025-12-22T15:00:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-5921\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-vidrdrncb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085616-gb5v8y7e3\"}]","start":"2026-05-08T15:20:00.000Z","end":"2026-05-08T15:40:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6294\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-662m6pr8s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085581-tx5f04rd8\"}]","start":"2026-03-20T14:00:00.000Z","end":"2026-03-20T14:20:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6738\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-xjed3dsjr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085580-kjdl279yu\"}]","start":"2026-03-19T17:40:00.000Z","end":"2026-03-19T18:00:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2363\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085988-20fuu3mxm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085541-gxp2wzkwf\"}]","start":"2026-01-23T19:40:00.000Z","end":"2026-01-23T20:00:00.000Z","created":"2025-12-12T05:24:45.988Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8297\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-j6iumqife","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085513-2x14b95ke\"}]","start":"2025-12-22T16:00:00.000Z","end":"2025-12-22T16:20:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4656\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-4ggytqt8o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085599-1il4h9ixq\"}]","start":"2026-04-15T18:40:00.000Z","end":"2026-04-15T19:00:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5023\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-4ber60n0o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085549-nn2slyz8k\"}]","start":"2026-02-05T17:00:00.000Z","end":"2026-02-05T17:20:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1478\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-a9mcfyjhh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085503-f1pt8jq3a\"}]","start":"2025-12-12T21:20:00.000Z","end":"2025-12-12T21:40:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4031\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-1wbixudpd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085585-9zq0jj662\"}]","start":"2026-03-25T17:20:00.000Z","end":"2026-03-25T17:40:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3185\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-iibfh33na","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085532-jb5z2g6sa\"}]","start":"2026-01-13T17:20:00.000Z","end":"2026-01-13T17:40:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2500\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-66wq5hlkt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085618-cgeq13ow7\"}]","start":"2026-05-13T16:00:00.000Z","end":"2026-05-13T16:20:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6027\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-e6mls6k9q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085572-8y06ea9ru\"}]","start":"2026-03-09T15:40:00.000Z","end":"2026-03-09T16:00:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8673\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-0hvlf60at","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085601-ao2q0o4fz\"}]","start":"2026-04-20T17:20:00.000Z","end":"2026-04-20T17:40:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-8182\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-n0kqlggyx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085588-yp1k8annl\"}]","start":"2026-04-01T12:00:00.000Z","end":"2026-04-01T12:20:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6383\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085989-n70691i11","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085625-198mpf1wf\"}]","start":"2026-05-22T13:40:00.000Z","end":"2026-05-22T14:00:00.000Z","created":"2025-12-12T05:24:45.989Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7870\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085990-y69a71eat","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-f9l0r75fp\"}]","start":"2026-02-20T19:00:00.000Z","end":"2026-02-20T19:20:00.000Z","created":"2025-12-12T05:24:45.990Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8552\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085990-l0hyey4fs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085532-ophfynek3\"}]","start":"2026-01-13T19:00:00.000Z","end":"2026-01-13T19:20:00.000Z","created":"2025-12-12T05:24:45.990Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9970\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085990-phwm3iolp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-dsvcxt2hg\"}]","start":"2025-12-23T21:00:00.000Z","end":"2025-12-23T21:20:00.000Z","created":"2025-12-12T05:24:45.990Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9316\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085990-hvqowpli7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085624-1ot2cxesr\"}]","start":"2026-05-20T20:40:00.000Z","end":"2026-05-20T21:00:00.000Z","created":"2025-12-12T05:24:45.990Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3259\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085990-z8ikt0978","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085620-y5c8miuuo\"}]","start":"2026-05-14T19:20:00.000Z","end":"2026-05-14T19:40:00.000Z","created":"2025-12-12T05:24:45.990Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8545\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085990-4ut3ycol0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085622-4xi3ryx4m\"}]","start":"2026-05-19T13:20:00.000Z","end":"2026-05-19T13:40:00.000Z","created":"2025-12-12T05:24:45.990Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-6057\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085990-tnkefjqj2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085614-0jhnxi9ly\"}]","start":"2026-05-07T18:40:00.000Z","end":"2026-05-07T19:00:00.000Z","created":"2025-12-12T05:24:45.990Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7417\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085990-60cfto05t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085572-u9m2i2hfv\"}]","start":"2026-03-09T17:40:00.000Z","end":"2026-03-09T18:00:00.000Z","created":"2025-12-12T05:24:45.990Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5749\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-z8y21krho","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085572-ynvkt7bca\"}]","start":"2026-03-09T12:40:00.000Z","end":"2026-03-09T13:00:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7388\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-dnhuaivnz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085622-lcqcbfq53\"}]","start":"2026-05-19T12:20:00.000Z","end":"2026-05-19T12:40:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3025\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-d4tey5byy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085585-3k60kpo0j\"}]","start":"2026-03-26T12:20:00.000Z","end":"2026-03-26T12:40:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8442\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-b0a89yvfn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085572-ug9cd85sw\"}]","start":"2026-03-06T21:40:00.000Z","end":"2026-03-06T22:00:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2887\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-vyt9q4dht","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085582-dfwqx27lx\"}]","start":"2026-03-23T14:00:00.000Z","end":"2026-03-23T14:20:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8078\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-1mydrb012","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085603-gr5oxl8cr\"}]","start":"2026-04-21T16:20:00.000Z","end":"2026-04-21T16:40:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1301\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-lg0xsm0u5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085585-0e4rgbvyt\"}]","start":"2026-03-26T13:00:00.000Z","end":"2026-03-26T13:20:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-7476\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-36r6tirb1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-0tq949f8m\"}]","start":"2025-12-24T13:40:00.000Z","end":"2025-12-24T14:00:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9931\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085991-0ds94u0vs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085520-a5f4afuzj\"}]","start":"2025-12-31T19:40:00.000Z","end":"2025-12-31T20:00:00.000Z","created":"2025-12-12T05:24:45.991Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2371\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-lx899jtj0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085621-x89gjrslx\"}]","start":"2026-05-18T18:20:00.000Z","end":"2026-05-18T18:40:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1129\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-8vrlnz8du","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085570-v59kv8tpk\"}]","start":"2026-03-05T20:20:00.000Z","end":"2026-03-05T20:40:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4241\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-e07slsg3q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085589-nkgeo1b7o\"}]","start":"2026-04-02T13:40:00.000Z","end":"2026-04-02T14:00:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1639\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-5joae8b2d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085576-ysuerxywc\"}]","start":"2026-03-13T13:20:00.000Z","end":"2026-03-13T13:40:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-8196\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-h8epk9fie","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085562-6xovardbt\"}]","start":"2026-02-24T13:00:00.000Z","end":"2026-02-24T13:20:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8181\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-og46s1nth","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085588-dhfmcecnw\"}]","start":"2026-04-01T12:20:00.000Z","end":"2026-04-01T12:40:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5059\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-0zdnu4tdm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-294yvfmbj\"}]","start":"2026-05-14T16:20:00.000Z","end":"2026-05-14T16:40:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8756\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-c2pza1lxv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085542-4ro9gk9zw\"}]","start":"2026-01-27T13:00:00.000Z","end":"2026-01-27T13:20:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7407\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085992-wazbmgxqv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085542-ajckyu6rr\"}]","start":"2026-01-26T20:00:00.000Z","end":"2026-01-26T20:20:00.000Z","created":"2025-12-12T05:24:45.992Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7028\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-sw5k0of21","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085573-jgox2frt8\"}]","start":"2026-03-09T18:20:00.000Z","end":"2026-03-09T18:40:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4835\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-6ddka66j9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085528-vhwu7w391\"}]","start":"2026-01-07T14:40:00.000Z","end":"2026-01-07T15:00:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-6188\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-bb97fuwqy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085581-mvllw6u11\"}]","start":"2026-03-20T19:00:00.000Z","end":"2026-03-20T19:20:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9189\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-a2517t2wh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085550-uy9ybe8bs\"}]","start":"2026-02-06T18:40:00.000Z","end":"2026-02-06T19:00:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6783\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-aew57c8c4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085619-2iiwmy6gz\"}]","start":"2026-05-14T12:00:00.000Z","end":"2026-05-14T12:20:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5856\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-e1szly4zs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085510-kgbxlm0ak\"}]","start":"2025-12-16T14:00:00.000Z","end":"2025-12-16T14:20:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6277\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-0yj249tch","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085544-ossbpf3tk\"}]","start":"2026-01-29T15:40:00.000Z","end":"2026-01-29T16:00:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5471\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-c8w345un6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085544-rm12hi7ku\"}]","start":"2026-01-28T19:20:00.000Z","end":"2026-01-28T19:40:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1063\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-vtyz3909f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-3zw2genf0\"}]","start":"2026-01-15T14:40:00.000Z","end":"2026-01-15T15:00:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3996\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-crorx4oug","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085535-bypb7vqq9\"}]","start":"2026-01-16T18:00:00.000Z","end":"2026-01-16T18:20:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4371\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-crcp995vh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085519-as5rwftfp\"}]","start":"2025-12-31T15:20:00.000Z","end":"2025-12-31T15:40:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7168\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085993-csvr28ymp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085599-fqsdiin42\"}]","start":"2026-04-15T16:20:00.000Z","end":"2026-04-15T16:40:00.000Z","created":"2025-12-12T05:24:45.993Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4396\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085994-yremxzuw3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-45py4ah6d\"}]","start":"2026-02-20T19:20:00.000Z","end":"2026-02-20T19:40:00.000Z","created":"2025-12-12T05:24:45.994Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1347\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085994-4xe50dlcn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085565-a8ou951ma\"}]","start":"2026-02-27T16:00:00.000Z","end":"2026-02-27T16:20:00.000Z","created":"2025-12-12T05:24:45.994Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1579\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085994-wcj0pldqm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085599-yg0j03gkt\"}]","start":"2026-04-16T17:20:00.000Z","end":"2026-04-16T17:40:00.000Z","created":"2025-12-12T05:24:45.994Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1848\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085994-wq7bm43z1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085574-bnjlyo5ax\"}]","start":"2026-03-10T18:20:00.000Z","end":"2026-03-10T18:40:00.000Z","created":"2025-12-12T05:24:45.994Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-6013\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085994-6ylqmwmmz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085553-y73pu64yz\"}]","start":"2026-02-11T15:00:00.000Z","end":"2026-02-11T15:20:00.000Z","created":"2025-12-12T05:24:45.994Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4939\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085996-x2xomxkad","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085571-ap4fb5zu4\"}]","start":"2026-03-06T16:40:00.000Z","end":"2026-03-06T17:00:00.000Z","created":"2025-12-12T05:24:45.996Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9309\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085996-wo2v8lmos","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085580-r9aswuhui\"}]","start":"2026-03-18T19:40:00.000Z","end":"2026-03-18T20:00:00.000Z","created":"2025-12-12T05:24:45.996Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-3258\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085996-aeuawbf19","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085566-p1udsw8h1\"}]","start":"2026-02-27T19:20:00.000Z","end":"2026-02-27T19:40:00.000Z","created":"2025-12-12T05:24:45.996Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6067\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085996-wh8hqcesc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085559-kdglcd0jt\"}]","start":"2026-02-18T17:20:00.000Z","end":"2026-02-18T17:40:00.000Z","created":"2025-12-12T05:24:45.996Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6032\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085996-n951j3czc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085601-8wp1lvmhd\"}]","start":"2026-04-20T19:00:00.000Z","end":"2026-04-20T19:20:00.000Z","created":"2025-12-12T05:24:45.996Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1506\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085996-7pbyicpju","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085543-cfr2kl6x0\"}]","start":"2026-01-27T21:00:00.000Z","end":"2026-01-27T21:20:00.000Z","created":"2025-12-12T05:24:45.996Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7135\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085996-smdxtmuh3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085562-r934ydub1\"}]","start":"2026-02-24T13:20:00.000Z","end":"2026-02-24T13:40:00.000Z","created":"2025-12-12T05:24:45.996Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1188\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085996-7mojd19h4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085552-zd9krt0gs\"}]","start":"2026-02-09T14:40:00.000Z","end":"2026-02-09T15:00:00.000Z","created":"2025-12-12T05:24:45.996Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9484\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-0jds127kg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085601-5vwp7ujdw\"}]","start":"2026-04-20T18:40:00.000Z","end":"2026-04-20T19:00:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7282\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-3bk9aaezx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085624-7fpc47vir\"}]","start":"2026-05-21T13:20:00.000Z","end":"2026-05-21T13:40:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6037\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-m36wl1gf8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-b3pjplevw\"}]","start":"2025-12-23T14:40:00.000Z","end":"2025-12-23T15:00:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3114\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-os9ma6pla","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085513-vinh9o8i3\"}]","start":"2025-12-22T13:20:00.000Z","end":"2025-12-22T13:40:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4508\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-2iapxq9sb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-u6seu9zr9\"}]","start":"2026-04-01T16:40:00.000Z","end":"2026-04-01T17:00:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9489\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-17ezkdqtp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085548-wds0r6q17\"}]","start":"2026-02-04T16:20:00.000Z","end":"2026-02-04T16:40:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-2773\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-prka5snzf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085513-6ku69mnqs\"}]","start":"2025-12-22T18:40:00.000Z","end":"2025-12-22T19:00:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2482\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-0bmae3ees","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085519-5kjionve1\"}]","start":"2025-12-31T15:40:00.000Z","end":"2025-12-31T16:00:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8550\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-cngrvql5s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085541-bn6et3rqq\"}]","start":"2026-01-23T21:20:00.000Z","end":"2026-01-23T21:40:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-6232\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-mkphmp5bx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085510-lw2m0w2f3\"}]","start":"2025-12-16T19:00:00.000Z","end":"2025-12-16T19:20:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1285\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-1li4e6u9i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-lmbqfmdoc\"}]","start":"2026-05-13T19:00:00.000Z","end":"2026-05-13T19:20:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-9378\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-0kt9mbon2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085518-rbpq0pxh7\"}]","start":"2025-12-29T19:20:00.000Z","end":"2025-12-29T19:40:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1918\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085997-k3rodt4h7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-ma9cup26v\"}]","start":"2026-01-15T19:20:00.000Z","end":"2026-01-15T19:40:00.000Z","created":"2025-12-12T05:24:45.997Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8040\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-23l4qm5op","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085589-njlefg35t\"}]","start":"2026-04-02T16:20:00.000Z","end":"2026-04-02T16:40:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2246\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-xkrafoovs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085502-cd1ukonj1\"}]","start":"2025-12-12T13:40:00.000Z","end":"2025-12-12T14:00:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8065\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-o7gfqqbif","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085503-qfabq7luh\"}]","start":"2025-12-15T15:20:00.000Z","end":"2025-12-15T15:40:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2577\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-ns2ebmgsf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085546-tg3ek8nb4\"}]","start":"2026-01-29T21:40:00.000Z","end":"2026-01-29T22:00:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3323\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-fpotql09p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085601-mebsmglnp\"}]","start":"2026-04-21T14:40:00.000Z","end":"2026-04-21T15:00:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1763\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-vp0kmxrpw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085579-tfbvoy3rx\"}]","start":"2026-03-17T17:20:00.000Z","end":"2026-03-17T17:40:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2715\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-lx4fh3h2f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085578-tbo9bckfp\"}]","start":"2026-03-17T12:20:00.000Z","end":"2026-03-17T12:40:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7151\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-gt8m75cvk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085591-p4d52b7uc\"}]","start":"2026-04-03T13:40:00.000Z","end":"2026-04-03T14:00:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2019\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-cd128vacv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085623-g0ij3d71g\"}]","start":"2026-05-19T17:40:00.000Z","end":"2026-05-19T18:00:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5659\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-au6dcrv9t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085550-ivlmw39jm\"}]","start":"2026-02-06T14:40:00.000Z","end":"2026-02-06T15:00:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6030\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-qts2lgmsm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085503-lvqlchb03\"}]","start":"2025-12-15T16:20:00.000Z","end":"2025-12-15T16:40:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1645\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-1ly9mjh40","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085541-icvip3pyv\"}]","start":"2026-01-23T18:20:00.000Z","end":"2026-01-23T18:40:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-2343\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085998-mfj2bock4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085524-l1t5hlym3\"}]","start":"2026-01-05T21:40:00.000Z","end":"2026-01-05T22:00:00.000Z","created":"2025-12-12T05:24:45.998Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8738\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-j9otfptkl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085548-6x1fm0dkh\"}]","start":"2026-02-03T17:20:00.000Z","end":"2026-02-03T17:40:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7983\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-j3u2sy64q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085614-v6bjhxegy\"}]","start":"2026-05-07T17:20:00.000Z","end":"2026-05-07T17:40:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1478\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-2rktc69p3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085595-ip8lw86k3\"}]","start":"2026-04-09T19:00:00.000Z","end":"2026-04-09T19:20:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1815\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-p087vsg9k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085518-go1uvc76f\"}]","start":"2025-12-30T14:00:00.000Z","end":"2025-12-30T14:20:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4862\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-bxrru8pzx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-a6nor0e7w\"}]","start":"2026-03-10T18:40:00.000Z","end":"2026-03-10T19:00:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9725\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-68r63sqcp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085561-n3h924urt\"}]","start":"2026-02-20T20:00:00.000Z","end":"2026-02-20T20:20:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1340\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-txclzhz1x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085600-5jjqsl1j6\"}]","start":"2026-04-17T17:40:00.000Z","end":"2026-04-17T18:00:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5992\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-i9f8v3lmf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085624-9tm8q8a9e\"}]","start":"2026-05-20T17:40:00.000Z","end":"2026-05-20T18:00:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3546\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-dwgtmxlav","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085586-uho678jlv\"}]","start":"2026-03-27T18:40:00.000Z","end":"2026-03-27T19:00:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-4063\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-ledcwvxnb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085562-csj7yzb0w\"}]","start":"2026-02-23T21:00:00.000Z","end":"2026-02-23T21:20:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8310\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-mx2fsy442","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085623-x4jpfrvqb\"}]","start":"2026-05-19T19:00:00.000Z","end":"2026-05-19T19:20:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9220\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085999-c2tpzcf03","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085519-8bh9nq18s\"}]","start":"2025-12-30T15:00:00.000Z","end":"2025-12-30T15:20:00.000Z","created":"2025-12-12T05:24:45.999Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7921\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517086000-s8466bfh5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085611-q71e7x2vr\"}]","start":"2026-04-30T19:20:00.000Z","end":"2026-04-30T19:40:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8232\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-axl77drl5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085625-cx40hqokk\"}]","start":"2026-05-21T17:00:00.000Z","end":"2026-05-21T17:20:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2476\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-08hsdtzmj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085618-7hmmy7fkx\"}]","start":"2026-05-13T15:20:00.000Z","end":"2026-05-13T15:40:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1932\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-qvectakw4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085566-hsbm1b8a8\"}]","start":"2026-02-27T18:20:00.000Z","end":"2026-02-27T18:40:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6906\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-v8fr0ug6i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085533-nvgr6tx2z\"}]","start":"2026-01-14T17:40:00.000Z","end":"2026-01-14T18:00:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4158\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-qvbslgz1e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085516-yjx25e515\"}]","start":"2025-12-24T19:20:00.000Z","end":"2025-12-24T19:40:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8333\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-9albnx7s6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-yv4061ivc\"}]","start":"2026-04-29T15:40:00.000Z","end":"2026-04-29T16:00:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8038\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-y4nrwefzk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085589-s3obppgvb\"}]","start":"2026-04-01T20:40:00.000Z","end":"2026-04-01T21:00:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8889\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-zoxym83ud","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085502-gjj27mt5e\"}]","start":"2025-12-12T15:40:00.000Z","end":"2025-12-12T16:00:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3542\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-ajbok6zpe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085579-iwpa58j7w\"}]","start":"2026-03-17T17:40:00.000Z","end":"2026-03-17T18:00:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6179\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-dkkhapg6z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085623-j4x75ddwu\"}]","start":"2026-05-19T20:20:00.000Z","end":"2026-05-19T20:40:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-3745\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-r3j622b28","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085609-tj3ets8kj\"}]","start":"2026-04-29T19:20:00.000Z","end":"2026-04-29T19:40:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3213\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086000-zdmqzh9vw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085510-xabmjibfi\"}]","start":"2025-12-15T21:20:00.000Z","end":"2025-12-15T21:40:00.000Z","created":"2025-12-12T05:24:46.000Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2636\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-3f5w2z5rl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085598-6xiadsd5f\"}]","start":"2026-04-14T19:20:00.000Z","end":"2026-04-14T19:40:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4428\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-85i8mrpse","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-bywb2n7fs\"}]","start":"2026-02-19T21:40:00.000Z","end":"2026-02-19T22:00:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-1540\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-9bzjtzjgj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085624-43ai3vgan\"}]","start":"2026-05-20T20:20:00.000Z","end":"2026-05-20T20:40:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7652\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-dyywbnwm4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085592-vquv86f9j\"}]","start":"2026-04-06T14:20:00.000Z","end":"2026-04-06T14:40:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-2302\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-ojt6hr2m1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085585-pj8c3cwqf\"}]","start":"2026-03-26T14:20:00.000Z","end":"2026-03-26T14:40:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-5768\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-ngtyypf9o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085603-gualr6mri\"}]","start":"2026-04-22T13:40:00.000Z","end":"2026-04-22T14:00:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3081\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-1m00v3onw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085620-0ubfj3761\"}]","start":"2026-05-15T12:00:00.000Z","end":"2026-05-15T12:20:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8519\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-36pca8x69","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085604-m9gucu5u4\"}]","start":"2026-04-22T20:20:00.000Z","end":"2026-04-22T20:40:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9878\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-0pvnctxn6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-ssk8fp7wi\"}]","start":"2026-02-20T13:20:00.000Z","end":"2026-02-20T13:40:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6043\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-qfmga28lj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085580-driuec5c4\"}]","start":"2026-03-19T18:40:00.000Z","end":"2026-03-19T19:00:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4930\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-76ipxksli","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085513-3ru6m5ecb\"}]","start":"2025-12-22T17:20:00.000Z","end":"2025-12-22T17:40:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8517\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-wdgfl2vi7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-x8rhb1ysq\"}]","start":"2026-04-06T15:20:00.000Z","end":"2026-04-06T15:40:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8486\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086001-i8tujg36s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085512-yngwejbke\"}]","start":"2025-12-18T20:00:00.000Z","end":"2025-12-18T20:20:00.000Z","created":"2025-12-12T05:24:46.001Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5346\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-fp0qj2tun","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085586-gz5ayleoy\"}]","start":"2026-03-27T15:00:00.000Z","end":"2026-03-27T15:20:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3012\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-edslca8en","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085534-p6nqaeyvn\"}]","start":"2026-01-16T15:00:00.000Z","end":"2026-01-16T15:20:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5956\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-uxh125o79","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085526-m7if3m74o\"}]","start":"2026-01-06T16:00:00.000Z","end":"2026-01-06T16:20:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5341\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-dmq8tafnj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085591-ml6fokudv\"}]","start":"2026-04-03T20:00:00.000Z","end":"2026-04-03T20:20:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-1000\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-g615h5awc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085565-da98mo333\"}]","start":"2026-02-26T20:40:00.000Z","end":"2026-02-26T21:00:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3564\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-sz2v0nmz6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085585-aicfhi6yt\"}]","start":"2026-03-26T18:20:00.000Z","end":"2026-03-26T18:40:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1618\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-3qlsmkkqg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085533-070ezkx76\"}]","start":"2026-01-14T18:00:00.000Z","end":"2026-01-14T18:20:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9201\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-5euu1pxuf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085581-4lxemcm8z\"}]","start":"2026-03-19T20:40:00.000Z","end":"2026-03-19T21:00:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8336\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-58cmvjrs1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085561-wuu3i5mha\"}]","start":"2026-02-20T19:40:00.000Z","end":"2026-02-20T20:00:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1078\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-olxyn41tz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085617-k0u11f2xe\"}]","start":"2026-05-11T13:20:00.000Z","end":"2026-05-11T13:40:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-6881\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-n26v0pyed","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085528-1npduxf8d\"}]","start":"2026-01-07T19:40:00.000Z","end":"2026-01-07T20:00:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7808\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086002-t4ios2hkt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085575-lsdbxze45\"}]","start":"2026-03-11T17:40:00.000Z","end":"2026-03-11T18:00:00.000Z","created":"2025-12-12T05:24:46.002Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6578\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-1t8kbw2mp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085621-azys0fp7h\"}]","start":"2026-05-18T17:40:00.000Z","end":"2026-05-18T18:00:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3538\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-uk200183x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-yasspy514\"}]","start":"2026-01-15T17:20:00.000Z","end":"2026-01-15T17:40:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5698\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-7ftmknbbc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085503-azo2xoy1m\"}]","start":"2025-12-15T15:00:00.000Z","end":"2025-12-15T15:20:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8341\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-93bkk5s7j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-92jlp65pt\"}]","start":"2026-04-03T13:20:00.000Z","end":"2026-04-03T13:40:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9056\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-3evw9t39c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085513-8qydnmqoe\"}]","start":"2025-12-19T21:20:00.000Z","end":"2025-12-19T21:40:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2794\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-p0ubaeucr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085610-qm15agmz5\"}]","start":"2026-04-30T17:00:00.000Z","end":"2026-04-30T17:20:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6064\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-bw83wxpjt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085559-m344y7lor\"}]","start":"2026-02-18T21:20:00.000Z","end":"2026-02-18T21:40:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5076\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-2rh8s59sd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085529-397la2rjs\"}]","start":"2026-01-08T16:40:00.000Z","end":"2026-01-08T17:00:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2460\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-71rv1s52f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085543-betrcvgdv\"}]","start":"2026-01-27T20:40:00.000Z","end":"2026-01-27T21:00:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1964\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-l0tg49epv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085612-47wt2tozw\"}]","start":"2026-05-04T17:00:00.000Z","end":"2026-05-04T17:20:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6635\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-038bgwof0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085529-kvzc3r977\"}]","start":"2026-01-08T19:40:00.000Z","end":"2026-01-08T20:00:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3558\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-48ati4mr3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085563-1gopdq6t9\"}]","start":"2026-02-25T20:00:00.000Z","end":"2026-02-25T20:20:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4237\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086003-yswlx2atb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085607-w2zxi8e7e\"}]","start":"2026-04-28T14:00:00.000Z","end":"2026-04-28T14:20:00.000Z","created":"2025-12-12T05:24:46.003Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7437\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086004-4kbeeuoeg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085518-2fvxv6o49\"}]","start":"2025-12-29T18:00:00.000Z","end":"2025-12-29T18:20:00.000Z","created":"2025-12-12T05:24:46.004Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2727\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086004-ynscud6dd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085513-y7r00ye3v\"}]","start":"2025-12-19T20:20:00.000Z","end":"2025-12-19T20:40:00.000Z","created":"2025-12-12T05:24:46.004Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3728\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086004-fl1ao45mn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085624-gbkx32ain\"}]","start":"2026-05-20T19:20:00.000Z","end":"2026-05-20T19:40:00.000Z","created":"2025-12-12T05:24:46.004Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9335\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086004-ikqpyoirn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085550-qe1zt21h5\"}]","start":"2026-02-06T17:40:00.000Z","end":"2026-02-06T18:00:00.000Z","created":"2025-12-12T05:24:46.004Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4212\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086004-vcj3d8m99","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-4o4vjbxaw\"}]","start":"2026-04-06T19:00:00.000Z","end":"2026-04-06T19:20:00.000Z","created":"2025-12-12T05:24:46.004Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2906\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086004-8hisxq15x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085519-m0v326tfd\"}]","start":"2025-12-30T19:00:00.000Z","end":"2025-12-30T19:20:00.000Z","created":"2025-12-12T05:24:46.004Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4302\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086004-f1bp3nwe5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085570-elocsqumh\"}]","start":"2026-03-05T19:20:00.000Z","end":"2026-03-05T19:40:00.000Z","created":"2025-12-12T05:24:46.004Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6529\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086004-63eml04s7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085624-e969sg495\"}]","start":"2026-05-20T19:40:00.000Z","end":"2026-05-20T20:00:00.000Z","created":"2025-12-12T05:24:46.004Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3046\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-k23akfhb4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085600-2ffm2jkvh\"}]","start":"2026-04-17T14:00:00.000Z","end":"2026-04-17T14:20:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4750\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-41wv95sjv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085532-ff1td3yui\"}]","start":"2026-01-12T21:20:00.000Z","end":"2026-01-12T21:40:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4420\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-i8vnvohea","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085593-da7olqpue\"}]","start":"2026-04-08T12:40:00.000Z","end":"2026-04-08T13:00:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-7708\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-2efq3qcq3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-d41yefx2v\"}]","start":"2026-05-06T13:40:00.000Z","end":"2026-05-06T14:00:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9033\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-c9v460ru4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085569-m0r0keupl\"}]","start":"2026-03-05T13:00:00.000Z","end":"2026-03-05T13:20:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4060\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-nhoxnf392","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085543-otneyhowb\"}]","start":"2026-01-27T14:40:00.000Z","end":"2026-01-27T15:00:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4907\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-mhjobg9if","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085565-a183qvz2j\"}]","start":"2026-02-27T15:40:00.000Z","end":"2026-02-27T16:00:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3336\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-l0rri1j1u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085567-3zs6sh28o\"}]","start":"2026-03-02T19:40:00.000Z","end":"2026-03-02T20:00:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1251\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-pvqonirsp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085612-pcmmz7rl2\"}]","start":"2026-05-05T13:40:00.000Z","end":"2026-05-05T14:00:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1961\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086005-250l5pye8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085613-44wlkaoez\"}]","start":"2026-05-06T17:00:00.000Z","end":"2026-05-06T17:20:00.000Z","created":"2025-12-12T05:24:46.005Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2906\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086008-gjka24x8w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-yrh5efkwz\"}]","start":"2025-12-24T14:40:00.000Z","end":"2025-12-24T15:00:00.000Z","created":"2025-12-12T05:24:46.008Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5359\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.008Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-5t6idfzyl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085612-6clkrh0qb\"}]","start":"2026-05-04T17:40:00.000Z","end":"2026-05-04T18:00:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7536\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-bmkiv519w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085548-raw6zo7x8\"}]","start":"2026-02-04T14:00:00.000Z","end":"2026-02-04T14:20:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-7149\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-2gbuf7mt0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085513-zt2fl23km\"}]","start":"2025-12-22T15:40:00.000Z","end":"2025-12-22T16:00:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9030\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-10z70yd5d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-cb0lvwg5m\"}]","start":"2026-05-22T14:20:00.000Z","end":"2026-05-22T14:40:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8662\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-0tl5ehg9b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085559-ru1olu6wj\"}]","start":"2026-02-18T20:00:00.000Z","end":"2026-02-18T20:20:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1702\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-8yllsbgr7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-44thz99bo\"}]","start":"2026-04-02T18:40:00.000Z","end":"2026-04-02T19:00:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1139\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-nst2gn0kr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085527-jukiwwwov\"}]","start":"2026-01-06T21:40:00.000Z","end":"2026-01-06T22:00:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-8582\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-s68vfe2rf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085529-njbst7xlj\"}]","start":"2026-01-09T18:00:00.000Z","end":"2026-01-09T18:20:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9513\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-4958ssa3v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085611-rx1fvbe60\"}]","start":"2026-05-01T18:00:00.000Z","end":"2026-05-01T18:20:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5370\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086009-1tn1h1yiu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085612-wrqzv2mpv\"}]","start":"2026-05-05T12:00:00.000Z","end":"2026-05-05T12:20:00.000Z","created":"2025-12-12T05:24:46.009Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5765\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086010-y5g7bv56l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085604-3kni8w84i\"}]","start":"2026-04-23T13:00:00.000Z","end":"2026-04-23T13:20:00.000Z","created":"2025-12-12T05:24:46.010Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4730\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086010-6f84n2757","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085589-b14tao35f\"}]","start":"2026-04-02T14:20:00.000Z","end":"2026-04-02T14:40:00.000Z","created":"2025-12-12T05:24:46.010Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9946\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086010-vkh2amsiw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085600-pytz0s1b0\"}]","start":"2026-04-17T14:20:00.000Z","end":"2026-04-17T14:40:00.000Z","created":"2025-12-12T05:24:46.010Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1628\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086010-827zurwo9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-9yqc4pjdp\"}]","start":"2026-02-20T21:40:00.000Z","end":"2026-02-20T22:00:00.000Z","created":"2025-12-12T05:24:46.010Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2532\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086010-vm3uzzbf0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085560-e39tpfmm8\"}]","start":"2026-02-20T14:40:00.000Z","end":"2026-02-20T15:00:00.000Z","created":"2025-12-12T05:24:46.010Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6287\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086010-9wnfcd5r0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085512-fy037c1mv\"}]","start":"2025-12-19T13:20:00.000Z","end":"2025-12-19T13:40:00.000Z","created":"2025-12-12T05:24:46.010Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6694\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-9m9jtbxde","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085555-05bx67uyq\"}]","start":"2026-02-12T21:40:00.000Z","end":"2026-02-12T22:00:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3454\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-li76cfrj8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085534-mo2eidllz\"}]","start":"2026-01-15T20:20:00.000Z","end":"2026-01-15T20:40:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-2171\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-at7xbrtdp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085529-dcth8vij4\"}]","start":"2026-01-08T15:20:00.000Z","end":"2026-01-08T15:40:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1043\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-596966h0o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085615-pppwoy88y\"}]","start":"2026-05-08T12:20:00.000Z","end":"2026-05-08T12:40:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2601\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-1z4yl5i12","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085510-0dl6vfk31\"}]","start":"2025-12-16T17:40:00.000Z","end":"2025-12-16T18:00:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6993\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-udlj56mdc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085572-ng3srjjs7\"}]","start":"2026-03-06T21:20:00.000Z","end":"2026-03-06T21:40:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9776\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-pbr1xqhyt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085585-ec42nc3rv\"}]","start":"2026-03-25T19:00:00.000Z","end":"2026-03-25T19:20:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3073\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-q6uhcaze4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-38jqcxl7a\"}]","start":"2026-04-01T17:00:00.000Z","end":"2026-04-01T17:20:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4232\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-1e23a6l4m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085547-2xws309b1\"}]","start":"2026-02-02T19:20:00.000Z","end":"2026-02-02T19:40:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5339\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-51dl3qxnz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085510-y4rreew22\"}]","start":"2025-12-15T20:00:00.000Z","end":"2025-12-15T20:20:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1545\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086011-1p4ct1a55","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085614-pqsxxogrn\"}]","start":"2026-05-07T16:20:00.000Z","end":"2026-05-07T16:40:00.000Z","created":"2025-12-12T05:24:46.011Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2017\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-4kcaj2oft","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085517-spcgomzjt\"}]","start":"2025-12-25T19:40:00.000Z","end":"2025-12-25T20:00:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7178\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-loen7boxm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085514-o80tm4cdv\"}]","start":"2025-12-24T15:40:00.000Z","end":"2025-12-24T16:00:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8005\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-humb4srmp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085529-mfq283nkw\"}]","start":"2026-01-08T21:40:00.000Z","end":"2026-01-08T22:00:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2513\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-l4ldohcul","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085513-lt2ychbi4\"}]","start":"2025-12-19T19:20:00.000Z","end":"2025-12-19T19:40:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2670\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-5304s0485","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-jaelssimu\"}]","start":"2026-04-07T12:20:00.000Z","end":"2026-04-07T12:40:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5128\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-gazdjky2r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085611-kuwtpglax\"}]","start":"2026-05-01T15:20:00.000Z","end":"2026-05-01T15:40:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-1523\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-u7ndux6yx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085601-gwcwjzhi7\"}]","start":"2026-04-21T13:00:00.000Z","end":"2026-04-21T13:20:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3537\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-u4m72cwom","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-0xoyek2sb\"}]","start":"2026-04-01T15:00:00.000Z","end":"2026-04-01T15:20:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6643\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-voy8n4ecx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085511-y6hnr01o0\"}]","start":"2025-12-17T19:00:00.000Z","end":"2025-12-17T19:20:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7174\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-blk1ibhcu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085568-99j4wj63t\"}]","start":"2026-03-03T17:00:00.000Z","end":"2026-03-03T17:20:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-6999\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-v9xn9cidg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-moja95pd3\"}]","start":"2026-02-23T19:40:00.000Z","end":"2026-02-23T20:00:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4276\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086012-90b7j9jeu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085565-42tbk6m53\"}]","start":"2026-02-27T13:00:00.000Z","end":"2026-02-27T13:20:00.000Z","created":"2025-12-12T05:24:46.012Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3096\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-ypcsxmdrx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-0l7490b6d\"}]","start":"2026-01-26T13:20:00.000Z","end":"2026-01-26T13:40:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1171\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-1aiepifzj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085510-rmio7y7gl\"}]","start":"2025-12-16T16:40:00.000Z","end":"2025-12-16T17:00:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2408\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-3hhixan45","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085518-2xfprc25d\"}]","start":"2025-12-29T13:40:00.000Z","end":"2025-12-29T14:00:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9565\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-8cr2xspdm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085530-2m1xtofyt\"}]","start":"2026-01-09T19:20:00.000Z","end":"2026-01-09T19:40:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5675\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-3p1rwyv3x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085532-axzurxi3k\"}]","start":"2026-01-12T20:00:00.000Z","end":"2026-01-12T20:20:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9341\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-ck3ponivw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085580-kyh8aqwk4\"}]","start":"2026-03-18T19:20:00.000Z","end":"2026-03-18T19:40:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8401\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-zg40lfchx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085616-owg717xg7\"}]","start":"2026-05-08T14:20:00.000Z","end":"2026-05-08T14:40:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4938\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-fumc9twjc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085550-25nuklvm7\"}]","start":"2026-02-05T20:00:00.000Z","end":"2026-02-05T20:20:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7965\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-9w44100yt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085587-nw8t2zx60\"}]","start":"2026-03-30T13:40:00.000Z","end":"2026-03-30T14:00:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-9060\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-whvbl88l1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085624-ewvs32p7k\"}]","start":"2026-05-21T12:20:00.000Z","end":"2026-05-21T12:40:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3228\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-1nkllcip3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085616-awtfku636\"}]","start":"2026-05-08T18:40:00.000Z","end":"2026-05-08T19:00:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6728\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086013-4n58ba8m9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085510-5gid4mtaa\"}]","start":"2025-12-16T21:20:00.000Z","end":"2025-12-16T21:40:00.000Z","created":"2025-12-12T05:24:46.013Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5577\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-dgcnuhh23","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085604-i2gtimiqt\"}]","start":"2026-04-22T19:40:00.000Z","end":"2026-04-22T20:00:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7477\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-1gzoxx62h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085555-qtear75o2\"}]","start":"2026-02-13T15:20:00.000Z","end":"2026-02-13T15:40:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5443\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-aq91b0k6x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085619-87pt633k9\"}]","start":"2026-05-13T20:40:00.000Z","end":"2026-05-13T21:00:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3612\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-3ph37z5kp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085593-120vzkeyk\"}]","start":"2026-04-08T14:00:00.000Z","end":"2026-04-08T14:20:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3199\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-cth7fseq9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085597-900b8pwwb\"}]","start":"2026-04-13T12:40:00.000Z","end":"2026-04-13T13:00:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4337\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-lteckas04","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085623-tpgdj45cr\"}]","start":"2026-05-19T14:20:00.000Z","end":"2026-05-19T14:40:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3274\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-at2rv6lhb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085541-hhi0tyh5a\"}]","start":"2026-01-23T16:20:00.000Z","end":"2026-01-23T16:40:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4248\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-4pv6hn62h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085549-sxb5nntoa\"}]","start":"2026-02-05T14:40:00.000Z","end":"2026-02-05T15:00:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8307\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-hr608utj8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085597-axgv8l6fx\"}]","start":"2026-04-14T12:20:00.000Z","end":"2026-04-14T12:40:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8840\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-e76bveiun","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085625-futpmzkhk\"}]","start":"2026-05-22T12:40:00.000Z","end":"2026-05-22T13:00:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8567\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-ucg0kw4u5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085636-fnp8ifmv5\"}]","start":"2026-06-09T12:40:00.000Z","end":"2026-06-09T13:00:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7328\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086014-mwpov9fw7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085563-zszwuipo2\"}]","start":"2026-02-25T15:00:00.000Z","end":"2026-02-25T15:20:00.000Z","created":"2025-12-12T05:24:46.014Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2665\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-elrs0y97e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-gq49hixvy\"}]","start":"2026-02-20T21:20:00.000Z","end":"2026-02-20T21:40:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2550\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-skv5d5d29","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085581-3q238o7go\"}]","start":"2026-03-20T16:40:00.000Z","end":"2026-03-20T17:00:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3458\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-5bu2qv7as","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085572-86zx8ze8n\"}]","start":"2026-03-09T15:00:00.000Z","end":"2026-03-09T15:20:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2371\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-xs478d31r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085618-bkqeq6rxc\"}]","start":"2026-05-13T14:40:00.000Z","end":"2026-05-13T15:00:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1751\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-2wxffnoqv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085547-ruitbbpbz\"}]","start":"2026-01-30T21:40:00.000Z","end":"2026-01-30T22:00:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1644\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-eiaih12xf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085618-jcw4296c2\"}]","start":"2026-05-13T15:40:00.000Z","end":"2026-05-13T16:00:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3234\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-ct31ditfx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085565-n5y9harfh\"}]","start":"2026-02-27T13:20:00.000Z","end":"2026-02-27T13:40:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5521\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-h7jmgzlco","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085632-qethb2ymc\"}]","start":"2026-06-03T12:40:00.000Z","end":"2026-06-03T13:00:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-1013\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-pmrfrb9hb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085530-qvcia6km5\"}]","start":"2026-01-12T19:20:00.000Z","end":"2026-01-12T19:40:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3122\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-k1199zxuh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085603-o793z5ubn\"}]","start":"2026-04-21T17:20:00.000Z","end":"2026-04-21T17:40:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2503\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086015-aiwnordb4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085605-nwt8gbg1t\"}]","start":"2026-04-27T12:40:00.000Z","end":"2026-04-27T13:00:00.000Z","created":"2025-12-12T05:24:46.015Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1700\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-vn8agu6rj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085633-vnzi33902\"}]","start":"2026-06-04T13:40:00.000Z","end":"2026-06-04T14:00:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7654\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-dqfyespvy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085625-d89yvqjnn\"}]","start":"2026-05-22T18:00:00.000Z","end":"2026-05-22T18:20:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5564\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-er0a69v3w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085563-m1podzq3r\"}]","start":"2026-02-25T17:00:00.000Z","end":"2026-02-25T17:20:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9788\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-3mmqqz2ql","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085636-s0smqd1ib\"}]","start":"2026-06-08T20:20:00.000Z","end":"2026-06-08T20:40:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-3698\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-8m72l3gsq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085560-my42z9uz8\"}]","start":"2026-02-19T16:20:00.000Z","end":"2026-02-19T16:40:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2501\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-mdiwj7l4k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085584-6yd8hqmgp\"}]","start":"2026-03-25T14:20:00.000Z","end":"2026-03-25T14:40:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4382\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-axcx9npeq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085604-o5bgqfyn1\"}]","start":"2026-04-23T15:00:00.000Z","end":"2026-04-23T15:20:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3223\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-3p2ez57kl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085568-vxiyc4pcn\"}]","start":"2026-03-03T14:00:00.000Z","end":"2026-03-03T14:20:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-9792\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-hjcvu50bm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085527-2wglzv491\"}]","start":"2026-01-06T17:20:00.000Z","end":"2026-01-06T17:40:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7362\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-q735puv0b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085618-5ok05x8oj\"}]","start":"2026-05-13T13:20:00.000Z","end":"2026-05-13T13:40:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-2541\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086016-i3rimfc8k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085535-oe5wvuv13\"}]","start":"2026-01-16T16:40:00.000Z","end":"2026-01-16T17:00:00.000Z","created":"2025-12-12T05:24:46.016Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7021\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-56yfpn1t3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085636-dau7p148x\"}]","start":"2026-06-08T16:20:00.000Z","end":"2026-06-08T16:40:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8433\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-3u6bwbr2x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085511-mpuzpp4js\"}]","start":"2025-12-17T18:00:00.000Z","end":"2025-12-17T18:20:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6794\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-rt4s0u7e9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085570-u5oj70x49\"}]","start":"2026-03-05T21:00:00.000Z","end":"2026-03-05T21:20:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5377\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-5vzne51yi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085635-3e04sb5rl\"}]","start":"2026-06-04T19:40:00.000Z","end":"2026-06-04T20:00:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1102\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-m4y4mu7oe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085611-xj4sbd98a\"}]","start":"2026-05-01T14:40:00.000Z","end":"2026-05-01T15:00:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2532\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-be2qz8lkv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085610-amxw3mfa3\"}]","start":"2026-04-30T15:40:00.000Z","end":"2026-04-30T16:00:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6759\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-6urlghan6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085612-l49spv8ii\"}]","start":"2026-05-04T15:20:00.000Z","end":"2026-05-04T15:40:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9681\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-3w9y0j943","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085549-urrvzkebl\"}]","start":"2026-02-04T20:20:00.000Z","end":"2026-02-04T20:40:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1331\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086017-rrazhpf5t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085569-j9eonxrfq\"}]","start":"2026-03-04T19:40:00.000Z","end":"2026-03-04T20:00:00.000Z","created":"2025-12-12T05:24:46.017Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3975\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-2fb269124","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085549-07msplh4w\"}]","start":"2026-02-04T18:00:00.000Z","end":"2026-02-04T18:20:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8674\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-jo1j5ij1i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085559-qpxbazux1\"}]","start":"2026-02-18T19:20:00.000Z","end":"2026-02-18T19:40:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-4222\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-ljeirtqze","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085637-78s061ov9\"}]","start":"2026-06-09T19:40:00.000Z","end":"2026-06-09T20:00:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3294\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-1tgi1mgus","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085529-fnm6h4fmj\"}]","start":"2026-01-09T16:40:00.000Z","end":"2026-01-09T17:00:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1365\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-darbws9ne","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085618-x0s84ewff\"}]","start":"2026-05-12T16:00:00.000Z","end":"2026-05-12T16:20:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3961\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-atv4ahtz5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085626-d3agld6pr\"}]","start":"2026-05-22T19:00:00.000Z","end":"2026-05-22T19:20:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4655\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-qxxp2cx6k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-emmmsiou4\"}]","start":"2026-05-21T20:00:00.000Z","end":"2026-05-21T20:20:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-9578\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-eha7rczyn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085632-637hrqjrx\"}]","start":"2026-06-03T15:00:00.000Z","end":"2026-06-03T15:20:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9918\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-ua0zkqe7r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085535-8iumze7df\"}]","start":"2026-01-16T18:40:00.000Z","end":"2026-01-16T19:00:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-7201\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086018-lxf84unpw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085617-da1j8hhpc\"}]","start":"2026-05-11T16:20:00.000Z","end":"2026-05-11T16:40:00.000Z","created":"2025-12-12T05:24:46.018Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4885\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086019-tdxexx7sl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085577-kvuaabuno\"}]","start":"2026-03-16T17:20:00.000Z","end":"2026-03-16T17:40:00.000Z","created":"2025-12-12T05:24:46.019Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5193\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086019-3ukjooj1p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085559-6gq4vzi04\"}]","start":"2026-02-19T13:20:00.000Z","end":"2026-02-19T13:40:00.000Z","created":"2025-12-12T05:24:46.019Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1263\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086019-rrgls6tfn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085582-wvy4mio8u\"}]","start":"2026-03-24T13:00:00.000Z","end":"2026-03-24T13:20:00.000Z","created":"2025-12-12T05:24:46.019Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5947\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086019-s9lwjrswt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085605-91o9mymqu\"}]","start":"2026-04-24T20:40:00.000Z","end":"2026-04-24T21:00:00.000Z","created":"2025-12-12T05:24:46.019Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2947\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086021-qrycjs08a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-1r0ep1stu\"}]","start":"2026-04-03T18:40:00.000Z","end":"2026-04-03T19:00:00.000Z","created":"2025-12-12T05:24:46.021Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2021\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086021-dgmzgtaeh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085611-48nxbi8y3\"}]","start":"2026-05-01T15:00:00.000Z","end":"2026-05-01T15:20:00.000Z","created":"2025-12-12T05:24:46.021Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4971\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086021-jhbkpf11s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085622-w3b5n4cp9\"}]","start":"2026-05-18T19:40:00.000Z","end":"2026-05-18T20:00:00.000Z","created":"2025-12-12T05:24:46.021Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7065\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086021-cndyxvnws","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085602-mr2zoz3vn\"}]","start":"2026-04-21T15:40:00.000Z","end":"2026-04-21T16:00:00.000Z","created":"2025-12-12T05:24:46.021Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1601\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086021-c29hoxt43","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085549-4vjm9f5ry\"}]","start":"2026-02-05T16:40:00.000Z","end":"2026-02-05T17:00:00.000Z","created":"2025-12-12T05:24:46.021Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9313\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086021-wcv123zz5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085593-6trp0p4o4\"}]","start":"2026-04-07T16:20:00.000Z","end":"2026-04-07T16:40:00.000Z","created":"2025-12-12T05:24:46.021Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8076\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086021-332aeo8vm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085624-vlhlrmb58\"}]","start":"2026-05-21T13:00:00.000Z","end":"2026-05-21T13:20:00.000Z","created":"2025-12-12T05:24:46.021Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9196\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-63hekqqjo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085527-8ql6v47yg\"}]","start":"2026-01-07T13:20:00.000Z","end":"2026-01-07T13:40:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6213\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-6w62hge2f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085513-tm8gc7k4a\"}]","start":"2025-12-22T21:00:00.000Z","end":"2025-12-22T21:20:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8581\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-0vr3hh3j2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085597-u5lmr0k94\"}]","start":"2026-04-13T20:00:00.000Z","end":"2026-04-13T20:20:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-6838\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-ulxv1t67d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085560-refph3o0c\"}]","start":"2026-02-20T15:20:00.000Z","end":"2026-02-20T15:40:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7281\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-tg63uslqn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085635-yhqdgdq1u\"}]","start":"2026-06-05T19:00:00.000Z","end":"2026-06-05T19:20:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6323\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-t0qyq0k8x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085587-i42ojoyi6\"}]","start":"2026-03-31T14:00:00.000Z","end":"2026-03-31T14:20:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3531\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-65ldtt3tt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085592-tmz6dkfgs\"}]","start":"2026-04-07T13:00:00.000Z","end":"2026-04-07T13:20:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3988\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-4zla4eivn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085519-uo776ezun\"}]","start":"2025-12-30T16:00:00.000Z","end":"2025-12-30T16:20:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6954\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-h69c1qqoe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085617-rlz1r9mca\"}]","start":"2026-05-11T19:20:00.000Z","end":"2026-05-11T19:40:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5266\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-tapbjxjwe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085516-d2b1mlfds\"}]","start":"2025-12-25T16:00:00.000Z","end":"2025-12-25T16:20:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3884\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086022-ceacbug2y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085598-uoaywfj21\"}]","start":"2026-04-15T12:00:00.000Z","end":"2026-04-15T12:20:00.000Z","created":"2025-12-12T05:24:46.022Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2899\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086023-9t9b94t7v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-cbqgwyk48\"}]","start":"2026-01-05T16:00:00.000Z","end":"2026-01-05T16:20:00.000Z","created":"2025-12-12T05:24:46.023Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1063\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086023-ymt6r26ct","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085604-uzv9mw9x0\"}]","start":"2026-04-23T12:20:00.000Z","end":"2026-04-23T12:40:00.000Z","created":"2025-12-12T05:24:46.023Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5404\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086023-c22leiixe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085624-zchwcfapu\"}]","start":"2026-05-20T16:00:00.000Z","end":"2026-05-20T16:20:00.000Z","created":"2025-12-12T05:24:46.023Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5875\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086023-vmdu33phk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085542-it7ighs20\"}]","start":"2026-01-26T15:40:00.000Z","end":"2026-01-26T16:00:00.000Z","created":"2025-12-12T05:24:46.023Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9569\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086023-b25yf6s5s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085576-y1npbhda1\"}]","start":"2026-03-13T15:40:00.000Z","end":"2026-03-13T16:00:00.000Z","created":"2025-12-12T05:24:46.023Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4018\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086023-relt2nz9c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085513-gbw8pwois\"}]","start":"2025-12-22T19:40:00.000Z","end":"2025-12-22T20:00:00.000Z","created":"2025-12-12T05:24:46.023Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7793\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086023-n2qwx38n5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085534-uvwmws8wq\"}]","start":"2026-01-15T18:20:00.000Z","end":"2026-01-15T18:40:00.000Z","created":"2025-12-12T05:24:46.023Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5706\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-xqcsfawb3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085547-peqzj806w\"}]","start":"2026-01-30T21:20:00.000Z","end":"2026-01-30T21:40:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2036\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-ns4kq13pp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085515-t2qq6fik2\"}]","start":"2025-12-24T17:40:00.000Z","end":"2025-12-24T18:00:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1079\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-5ul8924yz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085547-8m07x5rmz\"}]","start":"2026-02-02T21:40:00.000Z","end":"2026-02-02T22:00:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1581\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-lyv51sosy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085624-ovvdupzqj\"}]","start":"2026-05-21T14:40:00.000Z","end":"2026-05-21T15:00:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9740\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-28ohfurd5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085547-c3kqk7rbi\"}]","start":"2026-02-02T14:40:00.000Z","end":"2026-02-02T15:00:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-2269\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-dqiscczjs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085617-q3f0d3y75\"}]","start":"2026-05-11T15:40:00.000Z","end":"2026-05-11T16:00:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3893\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-6aggxkos0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085636-mw041u649\"}]","start":"2026-06-08T18:20:00.000Z","end":"2026-06-08T18:40:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2364\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-9yvgmlweu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085541-lj66jphsn\"}]","start":"2026-01-23T14:00:00.000Z","end":"2026-01-23T14:20:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9466\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-otxamltue","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085548-mswl4j272\"}]","start":"2026-02-04T14:20:00.000Z","end":"2026-02-04T14:40:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-4390\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-bzuyf6ue1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085591-ncci0tw68\"}]","start":"2026-04-03T15:40:00.000Z","end":"2026-04-03T16:00:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9708\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-8w5cw9j2o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085555-7jc260rj5\"}]","start":"2026-02-13T14:00:00.000Z","end":"2026-02-13T14:20:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6990\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086024-511de93i2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085597-qo25nd2jw\"}]","start":"2026-04-13T19:20:00.000Z","end":"2026-04-13T19:40:00.000Z","created":"2025-12-12T05:24:46.024Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-4154\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-6gkhmnwaw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085611-hc8qnkzq1\"}]","start":"2026-05-01T19:40:00.000Z","end":"2026-05-01T20:00:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1991\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-bjzuvjfb7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085592-k7rrx0n64\"}]","start":"2026-04-06T16:00:00.000Z","end":"2026-04-06T16:20:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3873\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-cpwifn2du","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085563-l16jjo58p\"}]","start":"2026-02-25T18:40:00.000Z","end":"2026-02-25T19:00:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5793\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-cx9fjrfk7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085572-l0dm43jz9\"}]","start":"2026-03-09T15:20:00.000Z","end":"2026-03-09T15:40:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-2064\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-ib6ssdfe6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085623-pvskzj5i6\"}]","start":"2026-05-19T18:20:00.000Z","end":"2026-05-19T18:40:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3327\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-l9a4yo05p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085534-ypnor2r44\"}]","start":"2026-01-15T16:40:00.000Z","end":"2026-01-15T17:00:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2893\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-5g6ervl6e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085519-4psx9q237\"}]","start":"2025-12-30T15:40:00.000Z","end":"2025-12-30T16:00:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8791\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-e4a90oepq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085535-dq8gbtlny\"}]","start":"2026-01-16T19:00:00.000Z","end":"2026-01-16T19:20:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9118\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-w7csbmhso","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085601-qbzzuqwx6\"}]","start":"2026-04-20T19:20:00.000Z","end":"2026-04-20T19:40:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4814\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-636czlv4y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085637-3jscrjq3n\"}]","start":"2026-06-09T18:20:00.000Z","end":"2026-06-09T18:40:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1229\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-kle39hgly","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-9dybss85h\"}]","start":"2026-02-23T17:20:00.000Z","end":"2026-02-23T17:40:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4597\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-dbjioua0y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085585-m4bai2b4e\"}]","start":"2026-03-26T17:20:00.000Z","end":"2026-03-26T17:40:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3839\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086025-sa7egrom8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085624-pxh0u6pf4\"}]","start":"2026-05-20T18:20:00.000Z","end":"2026-05-20T18:40:00.000Z","created":"2025-12-12T05:24:46.025Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8004\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-vtzoxl7pa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085637-er90qwg8w\"}]","start":"2026-06-09T14:00:00.000Z","end":"2026-06-09T14:20:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7554\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-z0s046pa1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085522-l2mzxeplg\"}]","start":"2026-01-02T14:20:00.000Z","end":"2026-01-02T14:40:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9668\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-gxtumotcr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085519-qgwl63qa3\"}]","start":"2025-12-30T21:20:00.000Z","end":"2025-12-30T21:40:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3754\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-m8xewn809","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085510-6dilsbkb4\"}]","start":"2025-12-17T13:00:00.000Z","end":"2025-12-17T13:20:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7664\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-7dvu16nr8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085561-pg0awzdf2\"}]","start":"2026-02-23T20:20:00.000Z","end":"2026-02-23T20:40:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8736\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-bo1obawji","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085532-100ibv6jt\"}]","start":"2026-01-13T18:00:00.000Z","end":"2026-01-13T18:20:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7167\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-go6vf34tx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-rgcpagw9k\"}]","start":"2026-01-26T13:40:00.000Z","end":"2026-01-26T14:00:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6233\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-igfl82tsu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085511-wtjigy7ln\"}]","start":"2025-12-18T15:40:00.000Z","end":"2025-12-18T16:00:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2786\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-u3zbh3doq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085565-9co15w2jq\"}]","start":"2026-02-26T18:20:00.000Z","end":"2026-02-26T18:40:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1533\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-4xvfswtlj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085598-3kmsywxtt\"}]","start":"2026-04-14T18:20:00.000Z","end":"2026-04-14T18:40:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-9657\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086026-7uv1n4tr6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085625-4p1vlmjbf\"}]","start":"2026-05-22T12:00:00.000Z","end":"2026-05-22T12:20:00.000Z","created":"2025-12-12T05:24:46.026Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5126\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086028-xvjl1jyyy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085520-7mase0pm0\"}]","start":"2026-01-01T15:20:00.000Z","end":"2026-01-01T15:40:00.000Z","created":"2025-12-12T05:24:46.028Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8488\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086028-gtn68aj6y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085562-xskpwq7mn\"}]","start":"2026-02-25T13:20:00.000Z","end":"2026-02-25T13:40:00.000Z","created":"2025-12-12T05:24:46.028Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3967\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086028-ucvn40ddy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085581-f5opxheyf\"}]","start":"2026-03-20T18:40:00.000Z","end":"2026-03-20T19:00:00.000Z","created":"2025-12-12T05:24:46.028Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3550\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086028-0qhagl6fw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085635-76jiwskko\"}]","start":"2026-06-05T15:20:00.000Z","end":"2026-06-05T15:40:00.000Z","created":"2025-12-12T05:24:46.028Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9573\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086028-lvhgk9c7t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085550-p0wrmgfw6\"}]","start":"2026-02-06T19:40:00.000Z","end":"2026-02-06T20:00:00.000Z","created":"2025-12-12T05:24:46.028Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-1246\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-dlt2iwr26","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085611-n0xwsa8d0\"}]","start":"2026-04-30T19:40:00.000Z","end":"2026-04-30T20:00:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4586\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-d32bi1e65","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085576-rq1pllj8x\"}]","start":"2026-03-13T13:00:00.000Z","end":"2026-03-13T13:20:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3742\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-dhzi40i46","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085546-bvwfw5szd\"}]","start":"2026-01-30T17:00:00.000Z","end":"2026-01-30T17:20:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5439\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-thk0mb8sa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085625-slgngoqhw\"}]","start":"2026-05-22T14:00:00.000Z","end":"2026-05-22T14:20:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6700\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-epnva6ww3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085597-0fmuen279\"}]","start":"2026-04-14T12:40:00.000Z","end":"2026-04-14T13:00:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7429\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-4elsf76p5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085565-9ynrrbkm2\"}]","start":"2026-02-27T15:00:00.000Z","end":"2026-02-27T15:20:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4492\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-m0hi91k03","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085575-0mkcsapf4\"}]","start":"2026-03-12T17:20:00.000Z","end":"2026-03-12T17:40:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7524\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-f2d2j2yp2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-vi76kt75h\"}]","start":"2026-02-20T21:00:00.000Z","end":"2026-02-20T21:20:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9253\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-07na2a6yy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085514-dcf2n4z6t\"}]","start":"2025-12-23T18:00:00.000Z","end":"2025-12-23T18:20:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4472\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-d9xu98fde","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085548-duo2f13tt\"}]","start":"2026-02-03T20:40:00.000Z","end":"2026-02-03T21:00:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1206\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-dtx3pdi9v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085633-edqa9x7h3\"}]","start":"2026-06-04T14:00:00.000Z","end":"2026-06-04T14:20:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5639\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086029-4ji1affwv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085530-d2169ao0c\"}]","start":"2026-01-12T17:20:00.000Z","end":"2026-01-12T17:40:00.000Z","created":"2025-12-12T05:24:46.029Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2653\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-7yt0wwvyn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-xsbu83xmh\"}]","start":"2026-05-05T14:40:00.000Z","end":"2026-05-05T15:00:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3686\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-6z7a7hqpy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085543-zq4hswotb\"}]","start":"2026-01-28T13:00:00.000Z","end":"2026-01-28T13:20:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9387\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-6dxaivcbx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-0sc5heds8\"}]","start":"2026-04-06T19:40:00.000Z","end":"2026-04-06T20:00:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3665\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-1kh14f3xn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085586-s21pbwp9x\"}]","start":"2026-03-27T13:40:00.000Z","end":"2026-03-27T14:00:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6298\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-7em8ka66o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085512-6dwcq5xzu\"}]","start":"2025-12-19T16:00:00.000Z","end":"2025-12-19T16:20:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3899\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-g69cmt48a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085579-x8swsm4kd\"}]","start":"2026-03-17T20:20:00.000Z","end":"2026-03-17T20:40:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3755\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-soo8e8571","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085550-zpb2qs558\"}]","start":"2026-02-06T19:20:00.000Z","end":"2026-02-06T19:40:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6965\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-dbqoqoxqp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085637-hxkev708p\"}]","start":"2026-06-09T20:40:00.000Z","end":"2026-06-09T21:00:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6865\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-c44h3f9qo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085594-0c5ysdgkw\"}]","start":"2026-04-09T15:20:00.000Z","end":"2026-04-09T15:40:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-6886\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-mgat0bbwe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085595-6jdjtlkpj\"}]","start":"2026-04-10T13:40:00.000Z","end":"2026-04-10T14:00:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5831\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-2b134i95p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085611-tu2matrt8\"}]","start":"2026-05-01T16:20:00.000Z","end":"2026-05-01T16:40:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1942\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-aboxzl1jz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085583-nsnph5v18\"}]","start":"2026-03-24T19:00:00.000Z","end":"2026-03-24T19:20:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3636\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086030-atpali5vv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085615-hujhtupay\"}]","start":"2026-05-07T19:40:00.000Z","end":"2026-05-07T20:00:00.000Z","created":"2025-12-12T05:24:46.030Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2390\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-vxatcc5f2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085595-s79qxiffq\"}]","start":"2026-04-10T15:20:00.000Z","end":"2026-04-10T15:40:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5474\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-99ry1golm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085579-xcekgoq7k\"}]","start":"2026-03-18T17:20:00.000Z","end":"2026-03-18T17:40:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9639\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-l4uc07dlc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085552-4u4lqzwbx\"}]","start":"2026-02-09T19:00:00.000Z","end":"2026-02-09T19:20:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5211\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-sd813zgxd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085516-r3cmne5fg\"}]","start":"2025-12-25T13:20:00.000Z","end":"2025-12-25T13:40:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6023\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-vf0uv1vqx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085554-4gmgeugdx\"}]","start":"2026-02-12T15:00:00.000Z","end":"2026-02-12T15:20:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7596\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-x6y3abqrd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085587-ahbkmchr6\"}]","start":"2026-03-31T13:20:00.000Z","end":"2026-03-31T13:40:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1411\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-c8b9ejnfr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085535-v9y891esa\"}]","start":"2026-01-16T17:20:00.000Z","end":"2026-01-16T17:40:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-2812\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-lfnagcq29","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085519-l7sqfmztr\"}]","start":"2025-12-30T21:00:00.000Z","end":"2025-12-30T21:20:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1658\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-5mum49kxb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085575-6vct9cg50\"}]","start":"2026-03-12T13:00:00.000Z","end":"2026-03-12T13:20:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3992\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-l45q8jy03","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085577-sj428n29u\"}]","start":"2026-03-16T18:20:00.000Z","end":"2026-03-16T18:40:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7930\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086031-bbym1l4p0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085532-2ldsuym1f\"}]","start":"2026-01-13T17:00:00.000Z","end":"2026-01-13T17:20:00.000Z","created":"2025-12-12T05:24:46.031Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1359\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-dxv56btby","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085544-1t8jcbek1\"}]","start":"2026-01-29T16:20:00.000Z","end":"2026-01-29T16:40:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5356\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-q6lelypsd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085565-o13j5aer2\"}]","start":"2026-02-27T15:20:00.000Z","end":"2026-02-27T15:40:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7092\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-8xtv1tekc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085556-6eqgckcw0\"}]","start":"2026-02-16T14:00:00.000Z","end":"2026-02-16T14:20:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2216\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-url5s6onf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085535-nlta6cf0z\"}]","start":"2026-01-16T20:00:00.000Z","end":"2026-01-16T20:20:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3535\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-qaw56i09b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085586-40mz67rnn\"}]","start":"2026-03-27T20:20:00.000Z","end":"2026-03-27T20:40:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-3917\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-9t923yzh6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085586-zbfq47q25\"}]","start":"2026-03-27T16:20:00.000Z","end":"2026-03-27T16:40:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3751\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-m1zcwlbh3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085618-zw2idqtou\"}]","start":"2026-05-12T15:20:00.000Z","end":"2026-05-12T15:40:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2501\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-7ccb9sh6t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085583-bzxp076bc\"}]","start":"2026-03-24T20:40:00.000Z","end":"2026-03-24T21:00:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2842\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-vgndm0ntz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085535-8s6bkcc22\"}]","start":"2026-01-16T21:00:00.000Z","end":"2026-01-16T21:20:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-6435\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086032-r9lslf7kc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085637-4au917h2d\"}]","start":"2026-06-09T15:00:00.000Z","end":"2026-06-09T15:20:00.000Z","created":"2025-12-12T05:24:46.032Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7934\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086035-gli14y1iy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085581-93ys7hlhi\"}]","start":"2026-03-20T12:00:00.000Z","end":"2026-03-20T12:20:00.000Z","created":"2025-12-12T05:24:46.035Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6598\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086035-zftqwnchj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085512-aqqkqly2h\"}]","start":"2025-12-19T19:00:00.000Z","end":"2025-12-19T19:20:00.000Z","created":"2025-12-12T05:24:46.035Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1134\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086035-9rsq4sciv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085603-n04p26ell\"}]","start":"2026-04-21T20:00:00.000Z","end":"2026-04-21T20:20:00.000Z","created":"2025-12-12T05:24:46.035Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5789\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086035-p9uvqziey","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085594-k8r6fqmtx\"}]","start":"2026-04-09T14:20:00.000Z","end":"2026-04-09T14:40:00.000Z","created":"2025-12-12T05:24:46.035Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3839\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086035-vxpaaf1fu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085520-u4pefawiu\"}]","start":"2025-12-31T21:20:00.000Z","end":"2025-12-31T21:40:00.000Z","created":"2025-12-12T05:24:46.035Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8893\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-z7y9n3apl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085518-2crmxcbrn\"}]","start":"2025-12-26T20:40:00.000Z","end":"2025-12-26T21:00:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8147\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-iqgiobhh5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085631-56q9p663o\"}]","start":"2026-06-01T19:00:00.000Z","end":"2026-06-01T19:20:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-2612\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-3826w4j8t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085575-71022l4tn\"}]","start":"2026-03-12T16:20:00.000Z","end":"2026-03-12T16:40:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3933\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-o5yy6ngaq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085609-jjrdpxhzk\"}]","start":"2026-04-29T18:20:00.000Z","end":"2026-04-29T18:40:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7713\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-q1jz43vy2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085633-ott859m23\"}]","start":"2026-06-03T16:40:00.000Z","end":"2026-06-03T17:00:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-9806\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-cjkkpipg8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085560-ohdjmn9t1\"}]","start":"2026-02-19T18:20:00.000Z","end":"2026-02-19T18:40:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7101\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-auck6gcwz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-qvl7nos11\"}]","start":"2026-01-27T13:20:00.000Z","end":"2026-01-27T13:40:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6921\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-pntvo8q73","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085566-co6ftyy1n\"}]","start":"2026-02-27T20:20:00.000Z","end":"2026-02-27T20:40:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3603\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-z8ezr3f3z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085568-vtqg6whzc\"}]","start":"2026-03-03T14:20:00.000Z","end":"2026-03-03T14:40:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-5356\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-f5p86icee","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085518-izmsl6o4z\"}]","start":"2025-12-29T19:40:00.000Z","end":"2025-12-29T20:00:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9393\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-61jfb28mu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085612-q178542t7\"}]","start":"2026-05-04T20:40:00.000Z","end":"2026-05-04T21:00:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9299\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086036-zxkdpwim1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085555-b4ytnoonn\"}]","start":"2026-02-12T18:20:00.000Z","end":"2026-02-12T18:40:00.000Z","created":"2025-12-12T05:24:46.036Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4371\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-llrzr6jwx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085569-7qoxc2ho9\"}]","start":"2026-03-04T16:00:00.000Z","end":"2026-03-04T16:20:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2112\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-gvt58fyaw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085611-xc1knzk97\"}]","start":"2026-05-01T17:00:00.000Z","end":"2026-05-01T17:20:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5793\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-h1ougafaj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085586-h59gl2zgf\"}]","start":"2026-03-27T18:00:00.000Z","end":"2026-03-27T18:20:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1056\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-evkugq2y3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085624-s8znuylki\"}]","start":"2026-05-21T15:40:00.000Z","end":"2026-05-21T16:00:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1888\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-dfgrjihe2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085604-1ktvpmcrz\"}]","start":"2026-04-22T19:20:00.000Z","end":"2026-04-22T19:40:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4226\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-67i6iljrz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085511-y5mnof1u9\"}]","start":"2025-12-18T14:00:00.000Z","end":"2025-12-18T14:20:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1303\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-v584f4whu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085617-omt5gq43k\"}]","start":"2026-05-11T18:40:00.000Z","end":"2026-05-11T19:00:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1074\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-ecu15rp6a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085549-7m5efz915\"}]","start":"2026-02-04T16:40:00.000Z","end":"2026-02-04T17:00:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8275\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-fojxw121c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-rhxre84l8\"}]","start":"2026-05-21T16:40:00.000Z","end":"2026-05-21T17:00:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5164\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-yz3f1151t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085535-blthiy1iq\"}]","start":"2026-01-16T20:20:00.000Z","end":"2026-01-16T20:40:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8243\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086037-xe4a6cgl6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085585-bu3il3nbs\"}]","start":"2026-03-26T15:20:00.000Z","end":"2026-03-26T15:40:00.000Z","created":"2025-12-12T05:24:46.037Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5146\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-4qokk9bwb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085622-zxag64itz\"}]","start":"2026-05-19T12:40:00.000Z","end":"2026-05-19T13:00:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8696\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-po8u4tu8p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085593-ld74vnio3\"}]","start":"2026-04-07T19:00:00.000Z","end":"2026-04-07T19:20:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6672\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-5vntvlbmt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085579-vmo0z47f7\"}]","start":"2026-03-17T17:00:00.000Z","end":"2026-03-17T17:20:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1743\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-7tncy62mk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085557-bovv7na0c\"}]","start":"2026-02-16T21:40:00.000Z","end":"2026-02-16T22:00:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1980\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-coz7l8g1k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085606-g9bmdlk44\"}]","start":"2026-04-27T18:20:00.000Z","end":"2026-04-27T18:40:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-6545\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-xwvvxjzgo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085619-u1fireaan\"}]","start":"2026-05-14T13:20:00.000Z","end":"2026-05-14T13:40:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-6937\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-jyj5phvsq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085584-503t7abyt\"}]","start":"2026-03-25T15:20:00.000Z","end":"2026-03-25T15:40:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2693\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-08waonow1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085550-r41tptz71\"}]","start":"2026-02-06T17:20:00.000Z","end":"2026-02-06T17:40:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7205\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-jlvwffld9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-7uwwze4r1\"}]","start":"2026-05-21T18:40:00.000Z","end":"2026-05-21T19:00:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7943\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-kgy9vkjfm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085568-ovp0xvg64\"}]","start":"2026-03-04T13:00:00.000Z","end":"2026-03-04T13:20:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4355\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-7lazvseya","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-q57j7xce3\"}]","start":"2026-01-16T15:40:00.000Z","end":"2026-01-16T16:00:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7892\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-n0nhl7mlo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085580-6ig9vinlk\"}]","start":"2026-03-18T18:20:00.000Z","end":"2026-03-18T18:40:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8494\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086038-1u23930as","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085518-nwzc69h2c\"}]","start":"2025-12-29T21:00:00.000Z","end":"2025-12-29T21:20:00.000Z","created":"2025-12-12T05:24:46.038Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9859\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-nvurjpln2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085585-gumg31091\"}]","start":"2026-03-26T13:40:00.000Z","end":"2026-03-26T14:00:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8236\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-7257dq6u5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085603-lvup2ltyt\"}]","start":"2026-04-22T12:20:00.000Z","end":"2026-04-22T12:40:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6831\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-6tjxkcfav","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085534-xpfk0g05t\"}]","start":"2026-01-16T13:20:00.000Z","end":"2026-01-16T13:40:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7292\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-8p5awop11","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085523-j1821lcwo\"}]","start":"2026-01-02T20:40:00.000Z","end":"2026-01-02T21:00:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-6345\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-6k1ol7eig","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085635-ceb8rlp0g\"}]","start":"2026-06-05T16:00:00.000Z","end":"2026-06-05T16:20:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1274\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-d2vlsizfv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085631-bev0zh6qw\"}]","start":"2026-06-01T16:20:00.000Z","end":"2026-06-01T16:40:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1613\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-qqmg9kj8o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085511-ihwcic6sc\"}]","start":"2025-12-17T20:40:00.000Z","end":"2025-12-17T21:00:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4827\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-yjxajnoq7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085630-o022hwory\"}]","start":"2026-05-29T14:20:00.000Z","end":"2026-05-29T14:40:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9581\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-z2ncc9hx4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085594-uurexegqf\"}]","start":"2026-04-08T20:00:00.000Z","end":"2026-04-08T20:20:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6499\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086039-md95cyos4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085556-qmi7uyh6f\"}]","start":"2026-02-16T17:20:00.000Z","end":"2026-02-16T17:40:00.000Z","created":"2025-12-12T05:24:46.039Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2601\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-ybaqvuf5c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085604-f95thjogr\"}]","start":"2026-04-22T16:40:00.000Z","end":"2026-04-22T17:00:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1010\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-ct8n6bimr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085601-sk9ngywfu\"}]","start":"2026-04-20T14:20:00.000Z","end":"2026-04-20T14:40:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5877\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-e6131mych","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085600-r4d8k3f6v\"}]","start":"2026-04-20T12:00:00.000Z","end":"2026-04-20T12:20:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2565\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-gv0qlgpl6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085635-uzlf84bfa\"}]","start":"2026-06-05T17:00:00.000Z","end":"2026-06-05T17:20:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1493\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-2ru6mny7o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085530-30zeoc319\"}]","start":"2026-01-09T20:00:00.000Z","end":"2026-01-09T20:20:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-6203\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-j6vezq9zp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085603-z8zhw32yr\"}]","start":"2026-04-22T12:40:00.000Z","end":"2026-04-22T13:00:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4820\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-29dji76l6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085614-27wyru4pv\"}]","start":"2026-05-07T13:00:00.000Z","end":"2026-05-07T13:20:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5858\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-l8ooutjl3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085624-fxjcfiepo\"}]","start":"2026-05-20T20:00:00.000Z","end":"2026-05-20T20:20:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4932\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-t2ctq6v3i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085601-gd9xahmuq\"}]","start":"2026-04-21T14:20:00.000Z","end":"2026-04-21T14:40:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1029\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-gi4aw0938","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085552-ka26l6z63\"}]","start":"2026-02-09T13:00:00.000Z","end":"2026-02-09T13:20:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7321\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086040-mad2v2ikd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085533-m3yjvzodo\"}]","start":"2026-01-14T19:00:00.000Z","end":"2026-01-14T19:20:00.000Z","created":"2025-12-12T05:24:46.040Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9024\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-544z8kla4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085579-dd7rep4wh\"}]","start":"2026-03-18T13:00:00.000Z","end":"2026-03-18T13:20:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5949\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-9pyidkais","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085554-b2643tapf\"}]","start":"2026-02-12T17:20:00.000Z","end":"2026-02-12T17:40:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1332\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-7e72cpelp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085535-m76pqm3lv\"}]","start":"2026-01-19T14:20:00.000Z","end":"2026-01-19T14:40:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9490\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-y7bq2s97x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085568-vh1mye7xr\"}]","start":"2026-03-03T17:20:00.000Z","end":"2026-03-03T17:40:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3313\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-i4j7837j8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085604-luru4ja0y\"}]","start":"2026-04-23T19:00:00.000Z","end":"2026-04-23T19:20:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9452\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-i63lcg7hf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-fb9ud42tq\"}]","start":"2026-04-28T16:40:00.000Z","end":"2026-04-28T17:00:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8993\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-cy1hjlu0r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085587-z2dfutv6h\"}]","start":"2026-03-31T14:40:00.000Z","end":"2026-03-31T15:00:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2801\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-1c4dku1dx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085636-ym0nao6x5\"}]","start":"2026-06-05T20:20:00.000Z","end":"2026-06-05T20:40:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-7067\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-mcen8ym6t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085591-zr6wf5b93\"}]","start":"2026-04-03T18:00:00.000Z","end":"2026-04-03T18:20:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1909\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-51oqhqrxu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085565-h7pju49dn\"}]","start":"2026-02-26T20:00:00.000Z","end":"2026-02-26T20:20:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-6780\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-ajgbtzlbw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085550-mhnavr9cr\"}]","start":"2026-02-06T15:00:00.000Z","end":"2026-02-06T15:20:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2977\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-ddma1ysml","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085579-uhpphy0th\"}]","start":"2026-03-18T16:20:00.000Z","end":"2026-03-18T16:40:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2791\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086041-rtjha18bl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085556-ewk6eg1cf\"}]","start":"2026-02-16T19:20:00.000Z","end":"2026-02-16T19:40:00.000Z","created":"2025-12-12T05:24:46.041Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6885\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-os5hueygw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-mtaft042y\"}]","start":"2025-12-24T13:20:00.000Z","end":"2025-12-24T13:40:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6501\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-ou40w3beb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085544-sq6pgier7\"}]","start":"2026-01-28T18:20:00.000Z","end":"2026-01-28T18:40:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5440\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-x1x98itsg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085585-cyuovncw6\"}]","start":"2026-03-26T18:40:00.000Z","end":"2026-03-26T19:00:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4320\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-z52aa6z7f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085592-6yty1osqq\"}]","start":"2026-04-06T17:20:00.000Z","end":"2026-04-06T17:40:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7813\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-7butx6zgh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085518-3dx3l141g\"}]","start":"2025-12-29T18:20:00.000Z","end":"2025-12-29T18:40:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7122\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-h6vzr3c4o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085600-67f77lgzf\"}]","start":"2026-04-17T13:20:00.000Z","end":"2026-04-17T13:40:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8333\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-16sttis6q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085540-n4pwdsfyd\"}]","start":"2026-01-22T19:00:00.000Z","end":"2026-01-22T19:20:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6923\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-iqa3p30ah","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085589-i1npev4i\"}]","start":"2026-04-02T15:40:00.000Z","end":"2026-04-02T16:00:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5115\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-mj4l1q8jk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085599-pf00r7h73\"}]","start":"2026-04-15T18:00:00.000Z","end":"2026-04-15T18:20:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1322\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-zq40m4lrn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085539-3xl8lkd08\"}]","start":"2026-01-21T20:20:00.000Z","end":"2026-01-21T20:40:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4030\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-73t05cl6j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085569-4ift2rwct\"}]","start":"2026-03-05T13:40:00.000Z","end":"2026-03-05T14:00:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9413\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086042-hhywkw5qp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085609-uxx05hhug\"}]","start":"2026-04-29T20:20:00.000Z","end":"2026-04-29T20:40:00.000Z","created":"2025-12-12T05:24:46.042Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2863\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-lk47raq44","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085579-s35qfqai1\"}]","start":"2026-03-17T19:00:00.000Z","end":"2026-03-17T19:20:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2173\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-4skoehxna","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085511-mkn4wxzc8\"}]","start":"2025-12-17T21:40:00.000Z","end":"2025-12-17T22:00:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4221\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-7uvw84o6v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085519-0oq1sha29\"}]","start":"2025-12-30T19:40:00.000Z","end":"2025-12-30T20:00:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6094\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-buuwf7r51","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085624-v1brase8f\"}]","start":"2026-05-21T12:40:00.000Z","end":"2026-05-21T13:00:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5696\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-h6by3ju6g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085573-b1zapm6zz\"}]","start":"2026-03-10T13:20:00.000Z","end":"2026-03-10T13:40:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9140\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-61vf99qqz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085589-thve1mhrl\"}]","start":"2026-04-01T19:20:00.000Z","end":"2026-04-01T19:40:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7898\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-588lf56nr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085592-m1u6at534\"}]","start":"2026-04-06T18:20:00.000Z","end":"2026-04-06T18:40:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5222\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-oi5w6mnfh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085620-iz1trrgqj\"}]","start":"2026-05-15T15:00:00.000Z","end":"2026-05-15T15:20:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3593\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-uh0j7eqq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085534-912hpjujn\"}]","start":"2026-01-15T16:00:00.000Z","end":"2026-01-15T16:20:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3695\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-lm3jhieoc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085547-3vtf9220r\"}]","start":"2026-02-02T17:20:00.000Z","end":"2026-02-02T17:40:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4316\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-zupl1dd2z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085637-3u8cagnfu\"}]","start":"2026-06-09T18:40:00.000Z","end":"2026-06-09T19:00:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3105\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-pl844z9m5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085586-avusu34lj\"}]","start":"2026-03-27T19:40:00.000Z","end":"2026-03-27T20:00:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-8856\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086043-15h5lj1dw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085527-8kxop5c2z\"}]","start":"2026-01-06T18:20:00.000Z","end":"2026-01-06T18:40:00.000Z","created":"2025-12-12T05:24:46.043Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4770\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-n7flnj2ni","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085519-yudp9rqi9\"}]","start":"2025-12-30T16:40:00.000Z","end":"2025-12-30T17:00:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2039\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-yo9afohps","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085509-2sizhnfsl\"}]","start":"2025-12-15T19:20:00.000Z","end":"2025-12-15T19:40:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4644\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-jp9hz3ui1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085559-rmnlcz4yk\"}]","start":"2026-02-19T13:00:00.000Z","end":"2026-02-19T13:20:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9583\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-6gyatupc8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085583-epevvof9n\"}]","start":"2026-03-24T16:20:00.000Z","end":"2026-03-24T16:40:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6606\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-ylshbtaz6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085563-b5ehg6h2d\"}]","start":"2026-02-25T19:00:00.000Z","end":"2026-02-25T19:20:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-5330\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-u7wfh63pw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085527-f0wit4tkb\"}]","start":"2026-01-06T19:00:00.000Z","end":"2026-01-06T19:20:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6254\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-f6g3v0djl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085623-b8wk80ono\"}]","start":"2026-05-19T17:00:00.000Z","end":"2026-05-19T17:20:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3099\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-oxzb9tzrv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085559-nmu3gspmb\"}]","start":"2026-02-18T13:20:00.000Z","end":"2026-02-18T13:40:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8936\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-1h39nuzfe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085537-6yik1j97a\"}]","start":"2026-01-20T20:20:00.000Z","end":"2026-01-20T20:40:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9388\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-pj150u5fa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085598-svth7vvfc\"}]","start":"2026-04-14T16:40:00.000Z","end":"2026-04-14T17:00:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-7953\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-sv6ahsot0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085582-xv0c5wnsb\"}]","start":"2026-03-24T12:40:00.000Z","end":"2026-03-24T13:00:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4645\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086044-zco6nty9i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085594-4segdhror\"}]","start":"2026-04-09T15:40:00.000Z","end":"2026-04-09T16:00:00.000Z","created":"2025-12-12T05:24:46.044Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4352\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086046-3bqzsnlnj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085582-l2xz3hjpt\"}]","start":"2026-03-23T15:20:00.000Z","end":"2026-03-23T15:40:00.000Z","created":"2025-12-12T05:24:46.046Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5772\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.046Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-1imjcqzgl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085566-0vdxwbppz\"}]","start":"2026-03-02T15:00:00.000Z","end":"2026-03-02T15:20:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9218\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-y836khb2y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085515-1d7e16l92\"}]","start":"2025-12-24T17:00:00.000Z","end":"2025-12-24T17:20:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3496\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-fy3bxyudw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085546-sleh1c46g\"}]","start":"2026-01-30T18:00:00.000Z","end":"2026-01-30T18:20:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2056\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-rw2vurb1q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085632-iilrxb2an\"}]","start":"2026-06-02T17:00:00.000Z","end":"2026-06-02T17:20:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-3540\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-9csiq9v4v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085631-ppes0j1c6\"}]","start":"2026-06-01T15:40:00.000Z","end":"2026-06-01T16:00:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3834\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-0411kl281","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085567-whfqrvxt4\"}]","start":"2026-03-03T13:20:00.000Z","end":"2026-03-03T13:40:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2428\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-4amsrgqn2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085620-919httpyx\"}]","start":"2026-05-15T12:20:00.000Z","end":"2026-05-15T12:40:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8926\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-qwrnaocj3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085603-xuygwcmw3\"}]","start":"2026-04-22T13:00:00.000Z","end":"2026-04-22T13:20:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9559\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-4rrt5q9dk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085575-0258xt7fy\"}]","start":"2026-03-12T12:00:00.000Z","end":"2026-03-12T12:20:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2701\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-vz9kh1vzq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085552-q6d3yppfa\"}]","start":"2026-02-09T20:20:00.000Z","end":"2026-02-09T20:40:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5194\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-ysqt2w94t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085530-fiz5pk5ob\"}]","start":"2026-01-12T18:20:00.000Z","end":"2026-01-12T18:40:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4117\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086047-18gqpui8k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085608-rup6tqcbl\"}]","start":"2026-04-28T19:00:00.000Z","end":"2026-04-28T19:20:00.000Z","created":"2025-12-12T05:24:46.047Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1244\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-f99woxuai","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-8qglaoxn9\"}]","start":"2026-01-02T21:40:00.000Z","end":"2026-01-02T22:00:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2618\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-p46iwqmaz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085569-5j0r4jgre\"}]","start":"2026-03-05T14:40:00.000Z","end":"2026-03-05T15:00:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7862\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-3m3b1oafu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085563-ms6x9vf80\"}]","start":"2026-02-25T16:20:00.000Z","end":"2026-02-25T16:40:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9532\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-b4mo06w2k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085631-x973peq3l\"}]","start":"2026-06-01T15:00:00.000Z","end":"2026-06-01T15:20:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1385\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-87rdgepne","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085556-d41gub6k2\"}]","start":"2026-02-16T14:40:00.000Z","end":"2026-02-16T15:00:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-7882\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-5kmcwutrw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-79ehfwhy5\"}]","start":"2026-03-11T14:00:00.000Z","end":"2026-03-11T14:20:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7583\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-6umlvfxd0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085627-ftvmzf5bs\"}]","start":"2026-05-26T19:20:00.000Z","end":"2026-05-26T19:40:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-4153\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-vr4vf0g21","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085591-jnhx3lv2c\"}]","start":"2026-04-03T17:20:00.000Z","end":"2026-04-03T17:40:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2813\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-ghvv6xstm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085606-mmgybuof6\"}]","start":"2026-04-27T20:20:00.000Z","end":"2026-04-27T20:40:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8645\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-jsx07bptm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085502-kiboeubw5\"}]","start":"2025-12-12T14:00:00.000Z","end":"2025-12-12T14:20:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8184\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-p77aas49q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085627-6x1jqa17n\"}]","start":"2026-05-26T18:00:00.000Z","end":"2026-05-26T18:20:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4317\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086048-vudlppf18","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085591-c4brm0itd\"}]","start":"2026-04-03T13:00:00.000Z","end":"2026-04-03T13:20:00.000Z","created":"2025-12-12T05:24:46.048Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1763\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-345zxmplu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085535-0scay03i2\"}]","start":"2026-01-16T16:00:00.000Z","end":"2026-01-16T16:20:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1359\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-69bmy95uc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085600-b8t66vqa8\"}]","start":"2026-04-17T12:20:00.000Z","end":"2026-04-17T12:40:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3913\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-5rfdwwveq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085548-9eerko4mp\"}]","start":"2026-02-03T16:40:00.000Z","end":"2026-02-03T17:00:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4056\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-6ue5lc95d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085513-3u6jp487v\"}]","start":"2025-12-22T18:20:00.000Z","end":"2025-12-22T18:40:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3035\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-hchnubh31","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085557-mak5szgq6\"}]","start":"2026-02-17T17:20:00.000Z","end":"2026-02-17T17:40:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9851\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-nyh422eyj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085544-pzdtaweki\"}]","start":"2026-01-29T17:40:00.000Z","end":"2026-01-29T18:00:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7581\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-srlrrs8vl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085547-60pa6ht5b\"}]","start":"2026-02-02T20:40:00.000Z","end":"2026-02-02T21:00:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4870\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-cgpfdm2c0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085597-qiiz2g2hp\"}]","start":"2026-04-13T15:00:00.000Z","end":"2026-04-13T15:20:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6705\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-r6h5k0aaf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085569-i6v9u1hfy\"}]","start":"2026-03-04T16:20:00.000Z","end":"2026-03-04T16:40:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3723\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086049-70608u17n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085586-eame2oa1l\"}]","start":"2026-03-27T17:00:00.000Z","end":"2026-03-27T17:20:00.000Z","created":"2025-12-12T05:24:46.049Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4046\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-grtrlzd9m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085580-6wb392vgo\"}]","start":"2026-03-19T17:20:00.000Z","end":"2026-03-19T17:40:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1136\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-phjzbt0pv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085594-1dtof8p0v\"}]","start":"2026-04-08T20:40:00.000Z","end":"2026-04-08T21:00:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-5571\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-n71t2elpy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085552-75b6j5xf0\"}]","start":"2026-02-09T15:40:00.000Z","end":"2026-02-09T16:00:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1277\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-mxk0s9xaj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085503-pgyrw4ff1\"}]","start":"2025-12-12T19:00:00.000Z","end":"2025-12-12T19:20:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1335\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-ew8omogz5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085582-0j7142tvy\"}]","start":"2026-03-23T17:00:00.000Z","end":"2026-03-23T17:20:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6782\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-tfc4timwu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085625-4m7jz55o8\"}]","start":"2026-05-22T15:40:00.000Z","end":"2026-05-22T16:00:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-9432\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-t9seexx3u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085581-71lqey13z\"}]","start":"2026-03-20T14:40:00.000Z","end":"2026-03-20T15:00:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9912\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-wuup924e4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085552-ovg12hjr1\"}]","start":"2026-02-09T15:20:00.000Z","end":"2026-02-09T15:40:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3828\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-76s2u700n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085537-q2q1b94ay\"}]","start":"2026-01-20T15:40:00.000Z","end":"2026-01-20T16:00:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2288\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-hibi9sq22","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085600-t2sryhphx\"}]","start":"2026-04-16T19:40:00.000Z","end":"2026-04-16T20:00:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3564\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-l302yifcn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085592-uiwn41bjc\"}]","start":"2026-04-06T12:40:00.000Z","end":"2026-04-06T13:00:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9999\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086050-0vh1w8d34","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085598-h4u6m0wro\"}]","start":"2026-04-15T13:40:00.000Z","end":"2026-04-15T14:00:00.000Z","created":"2025-12-12T05:24:46.050Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8512\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-aogjco6vh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085577-fdf9111ma\"}]","start":"2026-03-16T16:40:00.000Z","end":"2026-03-16T17:00:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3983\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-jeqtrgnox","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085502-da0jmtlf2\"}]","start":"2025-12-12T17:00:00.000Z","end":"2025-12-12T17:20:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6475\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-h7odje3b7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085502-62jra3ok6\"}]","start":"2025-12-12T18:00:00.000Z","end":"2025-12-12T18:20:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8699\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-4pw9xhnx4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085562-0y3e2bpf6\"}]","start":"2026-02-24T19:00:00.000Z","end":"2026-02-24T19:20:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9510\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-pw8mgom53","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085626-2vfk5vkat\"}]","start":"2026-05-25T14:00:00.000Z","end":"2026-05-25T14:20:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6326\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-x2ya3efwk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085616-ryzth285t\"}]","start":"2026-05-08T14:40:00.000Z","end":"2026-05-08T15:00:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9167\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-dq4qza53d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085604-xmqbyoyjn\"}]","start":"2026-04-23T13:40:00.000Z","end":"2026-04-23T14:00:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3566\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-yo3mphnd6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085579-fn516ikbr\"}]","start":"2026-03-17T20:40:00.000Z","end":"2026-03-17T21:00:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1681\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-tturob74x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085570-36a2fam9j\"}]","start":"2026-03-06T14:20:00.000Z","end":"2026-03-06T14:40:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5512\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-oadi54tlq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085636-hja84i9aw\"}]","start":"2026-06-08T16:00:00.000Z","end":"2026-06-08T16:20:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2159\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-xtlnxbh97","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085618-m5m849209\"}]","start":"2026-05-12T20:00:00.000Z","end":"2026-05-12T20:20:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7285\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-xyk8wijt1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085612-4xohfvk80\"}]","start":"2026-05-05T14:00:00.000Z","end":"2026-05-05T14:20:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-7295\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086051-zt2ust030","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085579-al8ad1fnd\"}]","start":"2026-03-17T19:20:00.000Z","end":"2026-03-17T19:40:00.000Z","created":"2025-12-12T05:24:46.051Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-8268\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-r9as37nqd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085570-h0xyvhf60\"}]","start":"2026-03-06T13:20:00.000Z","end":"2026-03-06T13:40:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-2207\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-yfy8939iz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085624-6allq5iwr\"}]","start":"2026-05-20T15:00:00.000Z","end":"2026-05-20T15:20:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6959\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-qjoums444","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085617-lrg9v76d7\"}]","start":"2026-05-12T13:40:00.000Z","end":"2026-05-12T14:00:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1765\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-a59s5ngma","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085599-ibis9tscm\"}]","start":"2026-04-16T18:40:00.000Z","end":"2026-04-16T19:00:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-7858\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-wvzktv3wz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085518-j9sm90wgd\"}]","start":"2025-12-29T13:20:00.000Z","end":"2025-12-29T13:40:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6508\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-owy44737d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085617-jnmbxy3sy\"}]","start":"2026-05-11T15:20:00.000Z","end":"2026-05-11T15:40:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-8116\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-e157ijwmd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085588-darn989ge\"}]","start":"2026-03-31T19:00:00.000Z","end":"2026-03-31T19:20:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7460\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-ddd90i49r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085549-2kwtr5kwe\"}]","start":"2026-02-04T19:20:00.000Z","end":"2026-02-04T19:40:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-9348\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-8u6jygnsz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085518-cnq4q3ahp\"}]","start":"2025-12-29T21:20:00.000Z","end":"2025-12-29T21:40:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3242\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-1m23cjdn4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085526-iujgc68pi\"}]","start":"2026-01-06T15:40:00.000Z","end":"2026-01-06T16:00:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7655\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-tmin9ymja","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-uztqjr0ys\"}]","start":"2026-02-20T20:20:00.000Z","end":"2026-02-20T20:40:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5417\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-fzzxo1h4o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085565-pnmoyxipn\"}]","start":"2026-02-26T18:00:00.000Z","end":"2026-02-26T18:20:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7143\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086052-2h3nrdaqr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085617-6zn2ycb36\"}]","start":"2026-05-11T13:00:00.000Z","end":"2026-05-11T13:20:00.000Z","created":"2025-12-12T05:24:46.052Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1652\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-8koxgq7tp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085626-fn4zfxs8m\"}]","start":"2026-05-25T14:40:00.000Z","end":"2026-05-25T15:00:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4080\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-46s87kwsw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085532-8wtftpy4i\"}]","start":"2026-01-13T13:40:00.000Z","end":"2026-01-13T14:00:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9955\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-8me4y0rk6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-lsk2dvxs2\"}]","start":"2026-05-21T19:00:00.000Z","end":"2026-05-21T19:20:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4029\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-9toi13c4r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085581-ymm3vc1pm\"}]","start":"2026-03-20T19:40:00.000Z","end":"2026-03-20T20:00:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5852\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-gc0rw7b0x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085630-crurct8vc\"}]","start":"2026-05-29T17:00:00.000Z","end":"2026-05-29T17:20:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4495\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-zdclxt4s9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085625-v2patzv89\"}]","start":"2026-05-21T19:40:00.000Z","end":"2026-05-21T20:00:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4161\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-jc1693l05","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085595-1j8acz4jd\"}]","start":"2026-04-10T19:20:00.000Z","end":"2026-04-10T19:40:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6277\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-n3ivfam9p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085502-7sycgso83\"}]","start":"2025-12-12T16:20:00.000Z","end":"2025-12-12T16:40:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9578\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-puty5916l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085636-vybnved25\"}]","start":"2026-06-09T12:00:00.000Z","end":"2026-06-09T12:20:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3516\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-pv7vxjcqf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085537-ryzheiz4f\"}]","start":"2026-01-21T13:00:00.000Z","end":"2026-01-21T13:20:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8826\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-agguov1bo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085510-06immige3\"}]","start":"2025-12-16T13:20:00.000Z","end":"2025-12-16T13:40:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-7548\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-oplrzkc7c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085614-ubj1c1h4x\"}]","start":"2026-05-06T20:20:00.000Z","end":"2026-05-06T20:40:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3830\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086053-d20fyo1l0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085553-ykcnf6kx6\"}]","start":"2026-02-09T21:40:00.000Z","end":"2026-02-09T22:00:00.000Z","created":"2025-12-12T05:24:46.053Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1201\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-kia5074eg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-ij671y8zg\"}]","start":"2026-04-03T19:40:00.000Z","end":"2026-04-03T20:00:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7493\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-lg4xpyd7t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085621-cc4egefzh\"}]","start":"2026-05-18T14:40:00.000Z","end":"2026-05-18T15:00:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1739\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-s08oi91ll","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085540-oglkswr0y\"}]","start":"2026-01-22T16:20:00.000Z","end":"2026-01-22T16:40:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8831\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-ggpxwua7u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085513-87mf8rxwk\"}]","start":"2025-12-22T20:20:00.000Z","end":"2025-12-22T20:40:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9666\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-ui0y2dl01","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085605-ajj6n0s17\"}]","start":"2026-04-24T12:00:00.000Z","end":"2026-04-24T12:20:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3792\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-h2kv2orxg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085581-a9w3x8quu\"}]","start":"2026-03-20T20:20:00.000Z","end":"2026-03-20T20:40:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1086\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-dgs5pks12","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085550-f8ok8uc0o\"}]","start":"2026-02-06T16:00:00.000Z","end":"2026-02-06T16:20:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8073\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-1yay5ybry","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085626-bmq9bmzpo\"}]","start":"2026-05-25T12:00:00.000Z","end":"2026-05-25T12:20:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6583\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-1yerr1feg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085586-ikmh6ttwx\"}]","start":"2026-03-27T14:00:00.000Z","end":"2026-03-27T14:20:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6949\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-kdvjhc0d6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085617-ddzvkaf79\"}]","start":"2026-05-11T12:40:00.000Z","end":"2026-05-11T13:00:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5461\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-xjaegw5i2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085552-p9y36693o\"}]","start":"2026-02-09T17:00:00.000Z","end":"2026-02-09T17:20:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3048\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-6xz7lcizs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085597-jzgnqdydn\"}]","start":"2026-04-13T13:40:00.000Z","end":"2026-04-13T14:00:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7890\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086054-mux7zaa7f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085568-189nsvd4g\"}]","start":"2026-03-03T15:00:00.000Z","end":"2026-03-03T15:20:00.000Z","created":"2025-12-12T05:24:46.054Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5546\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-5r3j3zfyc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085520-jr9mv88x1\"}]","start":"2026-01-01T17:40:00.000Z","end":"2026-01-01T18:00:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2198\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-7tlfw0lwj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085604-3xqn1o0tw\"}]","start":"2026-04-23T18:00:00.000Z","end":"2026-04-23T18:20:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5715\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-aglbv1i28","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085593-n45dzac1i\"}]","start":"2026-04-07T19:40:00.000Z","end":"2026-04-07T20:00:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7113\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-0op5f3tvd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085585-c85alquob\"}]","start":"2026-03-26T16:00:00.000Z","end":"2026-03-26T16:20:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9534\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-vxzh5jbw6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085627-f5rdy34kr\"}]","start":"2026-05-26T17:20:00.000Z","end":"2026-05-26T17:40:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1473\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-ojy7r8y7s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085569-cwdzws0o3\"}]","start":"2026-03-05T17:20:00.000Z","end":"2026-03-05T17:40:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3791\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-247v0zimo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085574-iqd6aiyib\"}]","start":"2026-03-11T12:20:00.000Z","end":"2026-03-11T12:40:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-9451\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-10unpor4s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085503-apdbi0fd2\"}]","start":"2025-12-15T13:40:00.000Z","end":"2025-12-15T14:00:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6996\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-ynlj1gdba","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085619-yawb3l8yn\"}]","start":"2026-05-14T17:20:00.000Z","end":"2026-05-14T17:40:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4812\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-kphdl2o1x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085631-mnrmtyr4s\"}]","start":"2026-06-01T16:40:00.000Z","end":"2026-06-01T17:00:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1350\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086055-rgzc0taky","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085555-mhdyxdv4i\"}]","start":"2026-02-13T19:20:00.000Z","end":"2026-02-13T19:40:00.000Z","created":"2025-12-12T05:24:46.055Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4411\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086057-winjsc11k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085626-y64qlnks1\"}]","start":"2026-05-22T19:20:00.000Z","end":"2026-05-22T19:40:00.000Z","created":"2025-12-12T05:24:46.057Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9883\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.057Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-f15xhsdb5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085617-6rmwbxfx8\"}]","start":"2026-05-08T20:20:00.000Z","end":"2026-05-08T20:40:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-8354\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-wb6afeg41","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085543-kn7c3himd\"}]","start":"2026-01-27T19:20:00.000Z","end":"2026-01-27T19:40:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5380\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-cui9vf0t1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085533-4wb00qdfl\"}]","start":"2026-01-14T20:00:00.000Z","end":"2026-01-14T20:20:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4331\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-f6d8uhv10","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085610-d3hrin3jz\"}]","start":"2026-04-30T14:40:00.000Z","end":"2026-04-30T15:00:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-6148\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-yxh5vlu1b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085544-9dyphzh7a\"}]","start":"2026-01-29T18:00:00.000Z","end":"2026-01-29T18:20:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-5200\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-qd6amyeoz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085562-ym6te8oal\"}]","start":"2026-02-24T13:40:00.000Z","end":"2026-02-24T14:00:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4144\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-uszvb742i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085594-7dezwits0\"}]","start":"2026-04-09T17:00:00.000Z","end":"2026-04-09T17:20:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6991\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-54gonzfil","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085601-d28h3ktoa\"}]","start":"2026-04-20T18:00:00.000Z","end":"2026-04-20T18:20:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1076\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-jw70yvnbc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085589-fequf61f1\"}]","start":"2026-04-01T19:00:00.000Z","end":"2026-04-01T19:20:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6356\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-c33bupamd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085565-7h5t6i5zf\"}]","start":"2026-02-26T16:00:00.000Z","end":"2026-02-26T16:20:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5463\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-2sq6c9xip","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-5qly8859o\"}]","start":"2026-01-02T21:00:00.000Z","end":"2026-01-02T21:20:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-7336\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-ctgnnv14w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085618-tv1dsnmto\"}]","start":"2026-05-13T16:40:00.000Z","end":"2026-05-13T17:00:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4889\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086058-jqm1zu9ch","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085540-l21i3yq7y\"}]","start":"2026-01-22T14:20:00.000Z","end":"2026-01-22T14:40:00.000Z","created":"2025-12-12T05:24:46.058Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7604\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-xldx8n19f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085544-ri8ukw4zz\"}]","start":"2026-01-29T14:40:00.000Z","end":"2026-01-29T15:00:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4341\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-d3heeobtm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085550-z165shwem\"}]","start":"2026-02-06T18:00:00.000Z","end":"2026-02-06T18:20:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4827\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-okrobubea","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085547-xzwye0s52\"}]","start":"2026-02-02T13:20:00.000Z","end":"2026-02-02T13:40:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8905\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-h2c1xnkcv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085597-c5kuxhbum\"}]","start":"2026-04-13T17:00:00.000Z","end":"2026-04-13T17:20:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3007\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-kc46wteuy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085567-7s2woy0cd\"}]","start":"2026-03-02T19:20:00.000Z","end":"2026-03-02T19:40:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2086\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-om4eii4uj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085554-75yti0d3r\"}]","start":"2026-02-12T16:20:00.000Z","end":"2026-02-12T16:40:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3162\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-4w546v23j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085513-9p4kmw7c3\"}]","start":"2025-12-22T21:20:00.000Z","end":"2025-12-22T21:40:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8245\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-eeoutckn9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085618-dphi9ui74\"}]","start":"2026-05-12T17:20:00.000Z","end":"2026-05-12T17:40:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9015\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-ofoc824jx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085608-q9eys7h3j\"}]","start":"2026-04-29T14:20:00.000Z","end":"2026-04-29T14:40:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8014\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-acsjew5bq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-ilj3m22wl\"}]","start":"2026-01-26T16:00:00.000Z","end":"2026-01-26T16:20:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5499\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-03ifwfdd9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085556-apk9ivktr\"}]","start":"2026-02-16T16:00:00.000Z","end":"2026-02-16T16:20:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9467\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086059-ec9i4a67x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085600-2fbny8k1h\"}]","start":"2026-04-17T12:00:00.000Z","end":"2026-04-17T12:20:00.000Z","created":"2025-12-12T05:24:46.059Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2475\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-rk43g3qg4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085550-qtcc209pa\"}]","start":"2026-02-06T13:00:00.000Z","end":"2026-02-06T13:20:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2905\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-nwcnj2xhq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085557-rm996n8if\"}]","start":"2026-02-16T21:20:00.000Z","end":"2026-02-16T21:40:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5036\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-6qp4lgnu9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085511-epdskm9rg\"}]","start":"2025-12-18T15:00:00.000Z","end":"2025-12-18T15:20:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6439\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-q8f75zhux","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085630-uv1ef4slc\"}]","start":"2026-05-29T19:20:00.000Z","end":"2026-05-29T19:40:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8964\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-p4lp16bro","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085529-59f0vec0w\"}]","start":"2026-01-08T17:40:00.000Z","end":"2026-01-08T18:00:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2406\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-lv24eu81a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085559-w2pkj9s71\"}]","start":"2026-02-19T14:20:00.000Z","end":"2026-02-19T14:40:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6769\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-8xzenfm1i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085540-byky9t6y7\"}]","start":"2026-01-22T15:40:00.000Z","end":"2026-01-22T16:00:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9145\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-50jn6dfxl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085582-hvdcqmd8k\"}]","start":"2026-03-24T13:40:00.000Z","end":"2026-03-24T14:00:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9239\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-m57yz0kcb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085592-zsko4bwy2\"}]","start":"2026-04-06T15:00:00.000Z","end":"2026-04-06T15:20:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1650\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-73o1fnx66","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085580-tb20wtajf\"}]","start":"2026-03-18T20:20:00.000Z","end":"2026-03-18T20:40:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4252\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-7v4v5urfz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-ja31rdw56\"}]","start":"2026-05-14T19:00:00.000Z","end":"2026-05-14T19:20:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1038\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086060-vnfj76omz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-fe0v2kv1v\"}]","start":"2026-04-06T18:00:00.000Z","end":"2026-04-06T18:20:00.000Z","created":"2025-12-12T05:24:46.060Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8076\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-10g69gcfn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085615-fy6bkyfce\"}]","start":"2026-05-07T19:20:00.000Z","end":"2026-05-07T19:40:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8804\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-khantfbla","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085542-c27kktk1z\"}]","start":"2026-01-27T14:00:00.000Z","end":"2026-01-27T14:20:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1610\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-flkivmddm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085633-qpx6dq5r8\"}]","start":"2026-06-04T16:20:00.000Z","end":"2026-06-04T16:40:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5226\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-0m1a3iy1p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085532-ww96a4xrd\"}]","start":"2026-01-13T19:40:00.000Z","end":"2026-01-13T20:00:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1986\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-dowe938a7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085512-ej69jra4j\"}]","start":"2025-12-19T16:40:00.000Z","end":"2025-12-19T17:00:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6839\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-ckycfxfk1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085616-46hekjaqz\"}]","start":"2026-05-08T16:40:00.000Z","end":"2026-05-08T17:00:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-6176\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-uglgx97wq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085592-exkdgb29p\"}]","start":"2026-04-07T12:00:00.000Z","end":"2026-04-07T12:20:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5892\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-ynhsp44eh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085524-fdavlt1u2\"}]","start":"2026-01-06T14:00:00.000Z","end":"2026-01-06T14:20:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-2264\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-0d27q8mu5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085594-mo8pyivxi\"}]","start":"2026-04-08T16:00:00.000Z","end":"2026-04-08T16:20:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4233\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-n2jvphu5i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085578-m42pnj1dn\"}]","start":"2026-03-17T13:20:00.000Z","end":"2026-03-17T13:40:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2149\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-0po019bfo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085533-db7zqvra0\"}]","start":"2026-01-13T20:40:00.000Z","end":"2026-01-13T21:00:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9272\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-ie4c9mzb0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085572-n5t7rrr79\"}]","start":"2026-03-09T13:40:00.000Z","end":"2026-03-09T14:00:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8932\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086061-03d33wz4y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085604-c3ricubxb\"}]","start":"2026-04-23T12:00:00.000Z","end":"2026-04-23T12:20:00.000Z","created":"2025-12-12T05:24:46.061Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9808\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-0wiaq1uhc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085612-fyl88wmp2\"}]","start":"2026-05-04T14:40:00.000Z","end":"2026-05-04T15:00:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1522\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-9axm4i632","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085530-2z70ntq6c\"}]","start":"2026-01-09T20:20:00.000Z","end":"2026-01-09T20:40:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2815\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-4cioirqtq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085605-gasxg3sz3\"}]","start":"2026-04-24T20:20:00.000Z","end":"2026-04-24T20:40:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2766\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-zx8kf6hlu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085552-zw7q4vrqa\"}]","start":"2026-02-06T21:40:00.000Z","end":"2026-02-06T22:00:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2527\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-lzna3qsop","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-r4kpbgbbo\"}]","start":"2026-04-06T14:40:00.000Z","end":"2026-04-06T15:00:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2481\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-bi7zqdc9i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085561-tu1i3kvjb\"}]","start":"2026-02-23T18:40:00.000Z","end":"2026-02-23T19:00:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6952\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-hg6jymb7m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085580-ujunli0xq\"}]","start":"2026-03-19T18:20:00.000Z","end":"2026-03-19T18:40:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8481\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-ribcz1748","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085555-dmd38a9wk\"}]","start":"2026-02-13T20:40:00.000Z","end":"2026-02-13T21:00:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1530\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-hp36qf4ha","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085630-pz4p3cd8w\"}]","start":"2026-05-29T14:00:00.000Z","end":"2026-05-29T14:20:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3069\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-4815yfg68","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085550-s5vtlyh6c\"}]","start":"2026-02-06T13:20:00.000Z","end":"2026-02-06T13:40:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3748\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-953lymf1m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085614-p0emcgfec\"}]","start":"2026-05-07T15:00:00.000Z","end":"2026-05-07T15:20:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9000\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-d6gsitvcg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085627-a0ehbmob9\"}]","start":"2026-05-26T13:00:00.000Z","end":"2026-05-26T13:20:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7246\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-oc0mazwvr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085513-cxt012dqo\"}]","start":"2025-12-19T21:40:00.000Z","end":"2025-12-19T22:00:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7454\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086062-kj8v9p69e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085548-5j4xpr95r\"}]","start":"2026-02-03T14:40:00.000Z","end":"2026-02-03T15:00:00.000Z","created":"2025-12-12T05:24:46.062Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9752\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-bpyhaok8w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085593-9eg55f9ly\"}]","start":"2026-04-08T14:40:00.000Z","end":"2026-04-08T15:00:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8889\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-is70xplxc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-34ozzso1h\"}]","start":"2026-01-16T14:40:00.000Z","end":"2026-01-16T15:00:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1227\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-no75pjobg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085621-rcsslnp2q\"}]","start":"2026-05-18T17:20:00.000Z","end":"2026-05-18T17:40:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3837\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-872mti1i5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-5um2q0p5z\"}]","start":"2025-12-23T20:00:00.000Z","end":"2025-12-23T20:20:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4786\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-bz0i3d6pl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085626-2buwsr5vt\"}]","start":"2026-05-25T12:20:00.000Z","end":"2026-05-25T12:40:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7233\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-cv0bxgq16","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085514-t89fr80mw\"}]","start":"2025-12-23T18:40:00.000Z","end":"2025-12-23T19:00:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9517\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-cma3w5u7r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085546-igextp8tr\"}]","start":"2026-01-29T19:40:00.000Z","end":"2026-01-29T20:00:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9174\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-ykoxkzc2d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-x0qpnzn8s\"}]","start":"2026-04-29T16:20:00.000Z","end":"2026-04-29T16:40:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1298\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-rkk1i1azk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085510-haptkc2jp\"}]","start":"2025-12-16T18:00:00.000Z","end":"2025-12-16T18:20:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9415\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-ucvefcdac","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085617-cwtnvdk3u\"}]","start":"2026-05-11T19:00:00.000Z","end":"2026-05-11T19:20:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8242\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-tuf7q12rw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085601-5gk3vxnal\"}]","start":"2026-04-20T18:20:00.000Z","end":"2026-04-20T18:40:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7342\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086063-ck3kgqplh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085612-es29n9sph\"}]","start":"2026-05-04T12:20:00.000Z","end":"2026-05-04T12:40:00.000Z","created":"2025-12-12T05:24:46.063Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3390\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-9o6w684t9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085599-qnv2fdnzt\"}]","start":"2026-04-16T12:00:00.000Z","end":"2026-04-16T12:20:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1561\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-qbg0c1kh2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085604-fclcynd0t\"}]","start":"2026-04-23T16:40:00.000Z","end":"2026-04-23T17:00:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3265\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-xmh3px3ec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085511-pe9rebfdg\"}]","start":"2025-12-17T13:20:00.000Z","end":"2025-12-17T13:40:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8878\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-dlzga82u2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085520-67k28mb30\"}]","start":"2026-01-01T14:20:00.000Z","end":"2026-01-01T14:40:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4551\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-v27kd5ptm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-x2zcz1yzu\"}]","start":"2025-12-23T21:20:00.000Z","end":"2025-12-23T21:40:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2795\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-3jz7kof8k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085599-vt2hhqeqd\"}]","start":"2026-04-15T19:40:00.000Z","end":"2026-04-15T20:00:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1818\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-9g5gj7272","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085573-g5bm2rdh7\"}]","start":"2026-03-10T12:20:00.000Z","end":"2026-03-10T12:40:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9525\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-2qcaa0ht0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085558-0bcqq8ces\"}]","start":"2026-02-17T19:00:00.000Z","end":"2026-02-17T19:20:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7303\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-qn5m0e1sq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085613-yszy2e8pp\"}]","start":"2026-05-05T18:00:00.000Z","end":"2026-05-05T18:20:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6304\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-7on5y5xgf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085509-x0l9lna1z\"}]","start":"2025-12-15T18:40:00.000Z","end":"2025-12-15T19:00:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5970\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-vtei0xaw8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085594-j6xtpb1je\"}]","start":"2026-04-09T12:40:00.000Z","end":"2026-04-09T13:00:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7627\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086064-wn4bi93j2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085568-9f4e0s6rt\"}]","start":"2026-03-04T13:20:00.000Z","end":"2026-03-04T13:40:00.000Z","created":"2025-12-12T05:24:46.064Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1102\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-pen8nuiqv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085586-obpekbiwq\"}]","start":"2026-03-26T20:20:00.000Z","end":"2026-03-26T20:40:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6646\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-frypkjtum","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085623-trbav2i47\"}]","start":"2026-05-19T17:20:00.000Z","end":"2026-05-19T17:40:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3812\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-g65o9rubk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085549-fi4ssdbdt\"}]","start":"2026-02-04T17:00:00.000Z","end":"2026-02-04T17:20:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5708\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-0j4i86hsr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085512-1mi8b6n45\"}]","start":"2025-12-19T13:00:00.000Z","end":"2025-12-19T13:20:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2504\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-557w43odi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085535-plp9373oo\"}]","start":"2026-01-16T17:40:00.000Z","end":"2026-01-16T18:00:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-8848\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-hk3mlk0g2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085554-6zevum2wt\"}]","start":"2026-02-12T18:00:00.000Z","end":"2026-02-12T18:20:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-2468\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-k5z8mh8mt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085575-3nmz286i5\"}]","start":"2026-03-11T17:00:00.000Z","end":"2026-03-11T17:20:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4758\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-ii17gl46o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085520-dina1wax9\"}]","start":"2026-01-01T16:00:00.000Z","end":"2026-01-01T16:20:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2352\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-ro7wggbg4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085537-pg5masgc4\"}]","start":"2026-01-20T14:20:00.000Z","end":"2026-01-20T14:40:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3700\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-9iit46fah","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085632-98kw7sd2m\"}]","start":"2026-06-02T14:00:00.000Z","end":"2026-06-02T14:20:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9836\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-439c1xdvv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085517-fthgpj6fa\"}]","start":"2025-12-26T14:20:00.000Z","end":"2025-12-26T14:40:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6449\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086065-61m4xjm4b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085537-zi39phvyo\"}]","start":"2026-01-19T21:20:00.000Z","end":"2026-01-19T21:40:00.000Z","created":"2025-12-12T05:24:46.065Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5930\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-4m08g3upr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085503-28ggqvixg\"}]","start":"2025-12-12T20:40:00.000Z","end":"2025-12-12T21:00:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3310\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-hlt8br8n6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085520-8xbj6018g\"}]","start":"2025-12-31T18:40:00.000Z","end":"2025-12-31T19:00:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-9018\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-89kuqwlzy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085553-yq614ojhl\"}]","start":"2026-02-09T21:20:00.000Z","end":"2026-02-09T21:40:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1611\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-uzfewn37b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085587-ue84i9wth\"}]","start":"2026-03-30T19:20:00.000Z","end":"2026-03-30T19:40:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-9659\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-f1fs0xqpg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085574-8g5yy5h29\"}]","start":"2026-03-10T15:00:00.000Z","end":"2026-03-10T15:20:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9076\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-3tn3cbvjv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085625-ffjsvm5b7\"}]","start":"2026-05-22T12:20:00.000Z","end":"2026-05-22T12:40:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7164\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-qztlwr8zo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085559-hacd8jhrt\"}]","start":"2026-02-18T14:40:00.000Z","end":"2026-02-18T15:00:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5779\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-jcsiw7kzb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085514-em46ap5cb\"}]","start":"2025-12-23T13:40:00.000Z","end":"2025-12-23T14:00:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1004\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-hje5p77hg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085576-zkgmvhfsg\"}]","start":"2026-03-13T18:20:00.000Z","end":"2026-03-13T18:40:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7710\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-o14ia5nbs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085588-t25rdfsk2\"}]","start":"2026-03-31T17:00:00.000Z","end":"2026-03-31T17:20:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6014\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-59ed4zfcn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085523-23gmn7tdo\"}]","start":"2026-01-02T19:20:00.000Z","end":"2026-01-02T19:40:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3891\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086066-csgi78847","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085539-aa5xep221\"}]","start":"2026-01-21T20:40:00.000Z","end":"2026-01-21T21:00:00.000Z","created":"2025-12-12T05:24:46.066Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6900\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-qhe0fgcma","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-3ho6taa3r\"}]","start":"2026-01-16T14:00:00.000Z","end":"2026-01-16T14:20:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7951\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-imw7xq1jj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085625-05rkcc3ro\"}]","start":"2026-05-22T17:40:00.000Z","end":"2026-05-22T18:00:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5319\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-3guu2apzc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085519-l1z4td8xf\"}]","start":"2025-12-31T13:40:00.000Z","end":"2025-12-31T14:00:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5423\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-29d8pnasu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085517-6d5iqciq2\"}]","start":"2025-12-25T19:00:00.000Z","end":"2025-12-25T19:20:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6289\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-pzb965au5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085631-iv2sxyzzq\"}]","start":"2026-06-01T13:40:00.000Z","end":"2026-06-01T14:00:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7214\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-b6i7y5q1n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085618-weo0o8uv8\"}]","start":"2026-05-12T18:00:00.000Z","end":"2026-05-12T18:20:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5172\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-lt9ba2sbb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085598-c7v48o0pu\"}]","start":"2026-04-14T15:00:00.000Z","end":"2026-04-14T15:20:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9730\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-axb2bfyux","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085547-xngz79i8n\"}]","start":"2026-02-02T14:20:00.000Z","end":"2026-02-02T14:40:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3171\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-d27x9q1wb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085586-phcggawxi\"}]","start":"2026-03-27T15:40:00.000Z","end":"2026-03-27T16:00:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3562\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-x3xus76ok","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085588-gjky6fljn\"}]","start":"2026-03-31T16:00:00.000Z","end":"2026-03-31T16:20:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4896\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-o5b1zu4vl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085600-h1cxx3pdc\"}]","start":"2026-04-17T19:00:00.000Z","end":"2026-04-17T19:20:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-4205\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086069-df64xbvm9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085539-xx3t6tgld\"}]","start":"2026-01-21T20:00:00.000Z","end":"2026-01-21T20:20:00.000Z","created":"2025-12-12T05:24:46.069Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6906\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-3hz7alh54","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085601-pkgawnsc6\"}]","start":"2026-04-20T14:40:00.000Z","end":"2026-04-20T15:00:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1020\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-ztm094i5g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-9gaps4ugm\"}]","start":"2026-05-05T18:20:00.000Z","end":"2026-05-05T18:40:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2216\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-23zr7ynqw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085512-8js767kod\"}]","start":"2025-12-18T18:20:00.000Z","end":"2025-12-18T18:40:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9612\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-76re528m0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085633-3ircgtaat\"}]","start":"2026-06-03T17:40:00.000Z","end":"2026-06-03T18:00:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1067\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-1ezaecvih","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085582-ol28qzoqd\"}]","start":"2026-03-23T17:20:00.000Z","end":"2026-03-23T17:40:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9584\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-b3aue0hvy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085633-6f57k8cvb\"}]","start":"2026-06-03T19:40:00.000Z","end":"2026-06-03T20:00:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4381\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-q6p9f969y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085530-sjrjdcml3\"}]","start":"2026-01-12T13:00:00.000Z","end":"2026-01-12T13:20:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5942\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-j823la8um","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085577-rhnv3265e\"}]","start":"2026-03-16T15:20:00.000Z","end":"2026-03-16T15:40:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5647\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-a3h23zoub","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085630-zuocceo24\"}]","start":"2026-05-29T13:00:00.000Z","end":"2026-05-29T13:20:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8298\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-lb6u29bgn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085633-l2iiwsnbk\"}]","start":"2026-06-03T15:20:00.000Z","end":"2026-06-03T15:40:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8869\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-95ic3finh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085522-dayl1ad6g\"}]","start":"2026-01-02T18:00:00.000Z","end":"2026-01-02T18:20:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2568\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-4s4d4ya23","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085598-h959sl88y\"}]","start":"2026-04-14T20:00:00.000Z","end":"2026-04-14T20:20:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8008\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086070-p8ixcv2cq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085594-yxo6xz0e8\"}]","start":"2026-04-09T16:00:00.000Z","end":"2026-04-09T16:20:00.000Z","created":"2025-12-12T05:24:46.070Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2315\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-tlapw743z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085568-e861fvowo\"}]","start":"2026-03-03T21:00:00.000Z","end":"2026-03-03T21:20:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6620\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-3sauidrzw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085589-23s1t8uvb\"}]","start":"2026-04-01T20:20:00.000Z","end":"2026-04-01T20:40:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2132\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-zjd6e3afk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085605-qlfup13lb\"}]","start":"2026-04-24T18:40:00.000Z","end":"2026-04-24T19:00:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9449\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-k4zk47i2j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-up3o6phaq\"}]","start":"2026-05-05T20:20:00.000Z","end":"2026-05-05T20:40:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4114\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-gjci6k6v6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085537-4rlcigv7s\"}]","start":"2026-01-20T13:00:00.000Z","end":"2026-01-20T13:20:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1436\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-m347tprgp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085588-3fto637mm\"}]","start":"2026-04-01T13:20:00.000Z","end":"2026-04-01T13:40:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5695\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-52jh7sz55","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085542-iryqdokxd\"}]","start":"2026-01-26T16:20:00.000Z","end":"2026-01-26T16:40:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2584\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-c07j2uzwt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085557-xelbmtmsa\"}]","start":"2026-02-17T16:20:00.000Z","end":"2026-02-17T16:40:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7584\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-gu3fz30jj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085623-r8dp5135s\"}]","start":"2026-05-20T13:20:00.000Z","end":"2026-05-20T13:40:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4717\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-xjyu9vnxu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085594-hl4fbf9xc\"}]","start":"2026-04-08T17:00:00.000Z","end":"2026-04-08T17:20:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6599\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-oc8xgk5f7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085519-5nsnbz9y7\"}]","start":"2025-12-31T16:20:00.000Z","end":"2025-12-31T16:40:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7048\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086071-bx3u55p0y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085548-xs4yj65z7\"}]","start":"2026-02-03T17:40:00.000Z","end":"2026-02-03T18:00:00.000Z","created":"2025-12-12T05:24:46.071Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6956\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-6zsut6f1i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085519-unvhicqz6\"}]","start":"2025-12-30T19:20:00.000Z","end":"2025-12-30T19:40:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8552\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-40qh8bbyk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085510-ha2z7k63q\"}]","start":"2025-12-16T20:00:00.000Z","end":"2025-12-16T20:20:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8785\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-kb1gic4ds","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085571-9ck0wlenz\"}]","start":"2026-03-06T18:20:00.000Z","end":"2026-03-06T18:40:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7101\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-elwwtvddv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-235z9djdp\"}]","start":"2026-05-14T17:00:00.000Z","end":"2026-05-14T17:20:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3034\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-r3vbaq69g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085572-uddgzzkca\"}]","start":"2026-03-09T14:40:00.000Z","end":"2026-03-09T15:00:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4952\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-leq855xd7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085610-djvmu54kq\"}]","start":"2026-04-30T12:20:00.000Z","end":"2026-04-30T12:40:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8915\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-kqr2qfpqa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085551-d9ulxz36x\"}]","start":"2026-02-06T21:20:00.000Z","end":"2026-02-06T21:40:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-1032\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-xwkwthtg6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085517-9oht9zxx3\"}]","start":"2025-12-26T14:40:00.000Z","end":"2025-12-26T15:00:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8590\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-40tuckxqg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-uk1hee4z5\"}]","start":"2026-01-15T21:00:00.000Z","end":"2026-01-15T21:20:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3369\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-bjre4u3y6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085535-dazscxoas\"}]","start":"2026-01-19T17:00:00.000Z","end":"2026-01-19T17:20:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2584\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-oxstjgc3d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085585-rnfyt46q6\"}]","start":"2026-03-26T16:20:00.000Z","end":"2026-03-26T16:40:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1350\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-7d0mpbi0f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-ayah7bv0z\"}]","start":"2026-02-20T13:40:00.000Z","end":"2026-02-20T14:00:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6457\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086072-d3mch66ot","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085579-rn2th287n\"}]","start":"2026-03-18T15:00:00.000Z","end":"2026-03-18T15:20:00.000Z","created":"2025-12-12T05:24:46.072Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8558\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-tylbi0cwc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085534-m3j65x55y\"}]","start":"2026-01-15T17:40:00.000Z","end":"2026-01-15T18:00:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6621\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-y6067h675","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085577-s3kwz3url\"}]","start":"2026-03-16T14:00:00.000Z","end":"2026-03-16T14:20:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2878\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-ef0m7pkrl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085539-j4ww7menx\"}]","start":"2026-01-21T17:40:00.000Z","end":"2026-01-21T18:00:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-9594\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-2ytluix28","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085582-oihdyb3g7\"}]","start":"2026-03-23T17:40:00.000Z","end":"2026-03-23T18:00:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3758\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-7uv57qsfu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085586-ubui365wy\"}]","start":"2026-03-26T20:40:00.000Z","end":"2026-03-26T21:00:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5806\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-339deunv8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085597-o4hnt7kmo\"}]","start":"2026-04-13T18:20:00.000Z","end":"2026-04-13T18:40:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8364\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-gqyn2y42r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085520-vfzfdc8mb\"}]","start":"2026-01-01T15:40:00.000Z","end":"2026-01-01T16:00:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8155\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-2xi2o44dv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085579-b0dti978v\"}]","start":"2026-03-17T15:40:00.000Z","end":"2026-03-17T16:00:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-8323\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-h8wiwgbd0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085598-esiwwboyd\"}]","start":"2026-04-14T17:20:00.000Z","end":"2026-04-14T17:40:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1018\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086073-9x2d7n7qi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085551-xnw18q23o\"}]","start":"2026-02-06T20:40:00.000Z","end":"2026-02-06T21:00:00.000Z","created":"2025-12-12T05:24:46.073Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5969\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-mwm3hxa9z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085548-j5hlgltsv\"}]","start":"2026-02-03T20:00:00.000Z","end":"2026-02-03T20:20:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-2539\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-03qf6o349","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085569-2td9l3iim\"}]","start":"2026-03-04T21:20:00.000Z","end":"2026-03-04T21:40:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7562\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-vus9u29yv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085632-s0v8uh4qp\"}]","start":"2026-06-02T18:00:00.000Z","end":"2026-06-02T18:20:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8856\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-15oz28fso","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085514-p4rrpqrvw\"}]","start":"2025-12-23T20:20:00.000Z","end":"2025-12-23T20:40:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4944\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-xoyrlrg86","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085547-bs6w70b40\"}]","start":"2026-02-02T16:00:00.000Z","end":"2026-02-02T16:20:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-8723\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-c1y1grw1b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085608-rwc89jnh4\"}]","start":"2026-04-29T15:20:00.000Z","end":"2026-04-29T15:40:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4300\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-dyhedtzn9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085566-q6ivty5zy\"}]","start":"2026-03-02T13:20:00.000Z","end":"2026-03-02T13:40:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6388\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-r3kefvxbu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085576-amp673mzz\"}]","start":"2026-03-13T16:40:00.000Z","end":"2026-03-13T17:00:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8134\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-94bq5j7ib","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085533-q58bnxocj\"}]","start":"2026-01-14T19:40:00.000Z","end":"2026-01-14T20:00:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2148\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-ql4n68z93","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085533-az0eib6fb\"}]","start":"2026-01-14T14:40:00.000Z","end":"2026-01-14T15:00:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1892\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-nwz503nnd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085543-a0db6j6ei\"}]","start":"2026-01-27T18:20:00.000Z","end":"2026-01-27T18:40:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7826\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-5tkb9t3ne","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085565-mgxx0ptix\"}]","start":"2026-02-27T16:40:00.000Z","end":"2026-02-27T17:00:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3130\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086074-qi528hy19","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085533-t8bwo2kgv\"}]","start":"2026-01-14T16:40:00.000Z","end":"2026-01-14T17:00:00.000Z","created":"2025-12-12T05:24:46.074Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-8851\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-npm2s0oi5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085533-gqqij2ngp\"}]","start":"2026-01-14T20:40:00.000Z","end":"2026-01-14T21:00:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5914\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-ftcskjfdl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085550-yy2m3ipxr\"}]","start":"2026-02-06T20:20:00.000Z","end":"2026-02-06T20:40:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5918\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-wkvhbxfl1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085562-s31dud9vh\"}]","start":"2026-02-24T17:00:00.000Z","end":"2026-02-24T17:20:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-8815\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-4qqghcz0z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085517-cnekcupf3\"}]","start":"2025-12-25T18:40:00.000Z","end":"2025-12-25T19:00:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2024\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-5bzrsat48","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085510-vwz5un2b8\"}]","start":"2025-12-16T17:20:00.000Z","end":"2025-12-16T17:40:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3662\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-15czljjz7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085586-gxeraljdx\"}]","start":"2026-03-27T15:20:00.000Z","end":"2026-03-27T15:40:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3244\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-jpqjwd4om","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-8m9imogw9\"}]","start":"2026-04-01T16:20:00.000Z","end":"2026-04-01T16:40:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9977\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-fnt37d5l9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085619-gg8xxu4w8\"}]","start":"2026-05-14T12:40:00.000Z","end":"2026-05-14T13:00:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6519\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-gdnbddu68","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085579-tj3lu6eh6\"}]","start":"2026-03-17T16:00:00.000Z","end":"2026-03-17T16:20:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5680\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-tx9fpg4cf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085635-kw1jufoh9\"}]","start":"2026-06-05T20:00:00.000Z","end":"2026-06-05T20:20:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7732\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-xppkr0cn4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085595-jindd3imp\"}]","start":"2026-04-10T13:20:00.000Z","end":"2026-04-10T13:40:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2096\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086075-yztx3a9tt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085616-isyxt01jf\"}]","start":"2026-05-08T17:40:00.000Z","end":"2026-05-08T18:00:00.000Z","created":"2025-12-12T05:24:46.075Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7419\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-nstre6iud","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085574-6m5cc4scn\"}]","start":"2026-03-11T15:40:00.000Z","end":"2026-03-11T16:00:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1535\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-o0bmz0eis","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085540-11uqnhmtw\"}]","start":"2026-01-22T21:20:00.000Z","end":"2026-01-22T21:40:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7905\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-rc5n7bty1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085581-i371manfw\"}]","start":"2026-03-20T16:20:00.000Z","end":"2026-03-20T16:40:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7733\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-b8zob2vw9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085594-ote6ppcli\"}]","start":"2026-04-09T17:20:00.000Z","end":"2026-04-09T17:40:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9772\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-iph0clrtk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085550-cuzf9fb69\"}]","start":"2026-02-05T18:40:00.000Z","end":"2026-02-05T19:00:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2559\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-iq9qgflkx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085546-voomo2w0b\"}]","start":"2026-01-30T13:00:00.000Z","end":"2026-01-30T13:20:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8505\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-k5vwtljta","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085632-4rycp5ksa\"}]","start":"2026-06-03T14:00:00.000Z","end":"2026-06-03T14:20:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2002\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-s9bu9i5ns","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085578-76kqidnp3\"}]","start":"2026-03-16T20:40:00.000Z","end":"2026-03-16T21:00:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-1227\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-buc2ojuuk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085579-vsljk4lk4\"}]","start":"2026-03-18T16:40:00.000Z","end":"2026-03-18T17:00:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7548\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-7bb9g289y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085579-5hocbmuuh\"}]","start":"2026-03-18T14:40:00.000Z","end":"2026-03-18T15:00:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9106\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-79ge8p2qp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085559-j18y91itt\"}]","start":"2026-02-18T13:00:00.000Z","end":"2026-02-18T13:20:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5923\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-bd52lsduv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085514-jt3ryw05m\"}]","start":"2025-12-23T16:40:00.000Z","end":"2025-12-23T17:00:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5447\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086076-m1rfvqvm7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085556-krbzz2pum\"}]","start":"2026-02-16T17:00:00.000Z","end":"2026-02-16T17:20:00.000Z","created":"2025-12-12T05:24:46.076Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2535\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-l8bgcvppk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085601-cfhlg95kf\"}]","start":"2026-04-20T20:40:00.000Z","end":"2026-04-20T21:00:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2320\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-rx1pq891m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085604-ysjgm88e7\"}]","start":"2026-04-23T16:00:00.000Z","end":"2026-04-23T16:20:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8608\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-t9ba6xoyq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085564-srf89vn0o\"}]","start":"2026-02-25T21:20:00.000Z","end":"2026-02-25T21:40:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4905\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-57lv1pqqk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085586-2l0h30cwz\"}]","start":"2026-03-27T20:40:00.000Z","end":"2026-03-27T21:00:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6270\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-suvibzt9d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085578-xze6ek8z4\"}]","start":"2026-03-16T20:00:00.000Z","end":"2026-03-16T20:20:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8796\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-c2k0y0gdh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085571-htaxbrmgg\"}]","start":"2026-03-06T18:40:00.000Z","end":"2026-03-06T19:00:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4810\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-k12bwp5ep","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085572-hr3v3gvbe\"}]","start":"2026-03-09T13:00:00.000Z","end":"2026-03-09T13:20:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-4650\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-5tcvjfleo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085522-nhq9fkc6p\"}]","start":"2026-01-02T15:40:00.000Z","end":"2026-01-02T16:00:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-6041\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-4tzviq2h2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085587-vynxg8y3w\"}]","start":"2026-03-30T13:00:00.000Z","end":"2026-03-30T13:20:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4153\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-kmuq4w85l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085618-9y4wq892b\"}]","start":"2026-05-12T19:40:00.000Z","end":"2026-05-12T20:00:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8309\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086077-a0b79ef9y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085523-ql5l4o1s5\"}]","start":"2026-01-05T16:40:00.000Z","end":"2026-01-05T17:00:00.000Z","created":"2025-12-12T05:24:46.077Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1091\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086079-uqkx92qiz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085608-y1lj37zwy\"}]","start":"2026-04-28T20:40:00.000Z","end":"2026-04-28T21:00:00.000Z","created":"2025-12-12T05:24:46.079Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7335\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.079Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086079-v52h6tlvo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085537-nunir2ids\"}]","start":"2026-01-19T21:40:00.000Z","end":"2026-01-19T22:00:00.000Z","created":"2025-12-12T05:24:46.079Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8342\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.079Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-432ipc7ek","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085582-j5beqqzh3\"}]","start":"2026-03-23T16:40:00.000Z","end":"2026-03-23T17:00:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-1898\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-yj8mfxc8e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085597-x1m4btb58\"}]","start":"2026-04-13T20:20:00.000Z","end":"2026-04-13T20:40:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3144\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-xag2rtzl0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085611-nobdaqb4d\"}]","start":"2026-05-01T13:20:00.000Z","end":"2026-05-01T13:40:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7752\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-52zp8vbff","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085570-3iy2gwdny\"}]","start":"2026-03-06T14:00:00.000Z","end":"2026-03-06T14:20:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9508\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-frw1icz87","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085605-ixt1pt110\"}]","start":"2026-04-24T16:40:00.000Z","end":"2026-04-24T17:00:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-7030\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-e6nil96li","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085607-qaj1cg0cv\"}]","start":"2026-04-28T13:40:00.000Z","end":"2026-04-28T14:00:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7066\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-wmnv53k3g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085594-eu7fmr523\"}]","start":"2026-04-09T13:20:00.000Z","end":"2026-04-09T13:40:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4478\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-qrfr52hy5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085529-99n79mqbo\"}]","start":"2026-01-08T21:00:00.000Z","end":"2026-01-08T21:20:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-9593\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-53d4nl1gw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085566-l6xukiwez\"}]","start":"2026-02-27T20:40:00.000Z","end":"2026-02-27T21:00:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2918\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-746ir36vt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085633-n7s6dcwuk\"}]","start":"2026-06-03T20:20:00.000Z","end":"2026-06-03T20:40:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9135\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-ltpp42zlt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085606-tjnd6glid\"}]","start":"2026-04-27T18:40:00.000Z","end":"2026-04-27T19:00:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8627\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086080-etafhu2pq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085600-lacl6sfb8\"}]","start":"2026-04-17T19:40:00.000Z","end":"2026-04-17T20:00:00.000Z","created":"2025-12-12T05:24:46.080Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8656\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-elvq3iape","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085572-1at24c98f\"}]","start":"2026-03-09T13:20:00.000Z","end":"2026-03-09T13:40:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9062\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-id07j5jh2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085582-li087cqws\"}]","start":"2026-03-23T14:20:00.000Z","end":"2026-03-23T14:40:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2966\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-kdvihbwqk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085627-h9uldajxm\"}]","start":"2026-05-26T14:00:00.000Z","end":"2026-05-26T14:20:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8847\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-354lzujor","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085557-wg8o3x21s\"}]","start":"2026-02-17T13:20:00.000Z","end":"2026-02-17T13:40:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9938\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-kyvnr7rul","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085550-0coou13zs\"}]","start":"2026-02-06T13:40:00.000Z","end":"2026-02-06T14:00:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5003\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-cxyoe5tiv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085613-8ethcx3r7\"}]","start":"2026-05-05T19:20:00.000Z","end":"2026-05-05T19:40:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9278\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-iya7x1vij","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085565-tzvk421vi\"}]","start":"2026-02-26T18:40:00.000Z","end":"2026-02-26T19:00:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3009\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-kn2662ssn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085631-ls47telus\"}]","start":"2026-06-01T13:20:00.000Z","end":"2026-06-01T13:40:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4248\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-59b8n6ww9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085561-4kzxes9gg\"}]","start":"2026-02-20T17:40:00.000Z","end":"2026-02-20T18:00:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9168\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-zpirgfzzh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085592-a5jfgj9b5\"}]","start":"2026-04-07T13:40:00.000Z","end":"2026-04-07T14:00:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2834\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-lx25oeb5l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085546-kkxgokc23\"}]","start":"2026-01-30T20:00:00.000Z","end":"2026-01-30T20:20:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1150\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-fvq8wwamn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-t2otwe7xz\"}]","start":"2026-03-31T18:40:00.000Z","end":"2026-03-31T19:00:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2460\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086081-o1zerwj0c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085618-ofjhu2nvv\"}]","start":"2026-05-13T14:20:00.000Z","end":"2026-05-13T14:40:00.000Z","created":"2025-12-12T05:24:46.081Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8951\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-lzmk9agj9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085552-lbczws73r\"}]","start":"2026-02-09T13:40:00.000Z","end":"2026-02-09T14:00:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7490\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-fcfrv684q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085516-lpxqomds8\"}]","start":"2025-12-25T15:00:00.000Z","end":"2025-12-25T15:20:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-7892\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-muu0jrhjv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085512-bydvk9r74\"}]","start":"2025-12-18T21:20:00.000Z","end":"2025-12-18T21:40:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4286\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-l3bx9fdiq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085581-ypd33dxm2\"}]","start":"2026-03-20T16:00:00.000Z","end":"2026-03-20T16:20:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7580\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-7mqf0ga82","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-3lrmemg2a\"}]","start":"2026-01-02T20:00:00.000Z","end":"2026-01-02T20:20:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2768\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-4n6h4d4v5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085635-uiuwnigpx\"}]","start":"2026-06-05T13:00:00.000Z","end":"2026-06-05T13:20:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7636\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-tt65mka46","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085612-fkbvsrdcq\"}]","start":"2026-05-04T14:20:00.000Z","end":"2026-05-04T14:40:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6921\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-l886xswsf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085543-mj4nyai9a\"}]","start":"2026-01-28T15:00:00.000Z","end":"2026-01-28T15:20:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-7660\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-4c185u5ui","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085617-perqrgr76\"}]","start":"2026-05-11T20:20:00.000Z","end":"2026-05-11T20:40:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1116\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-qpdsg3mg0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085562-x22pcqeq1\"}]","start":"2026-02-24T14:00:00.000Z","end":"2026-02-24T14:20:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3094\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-af4qaa8mf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085511-6ay0csu39\"}]","start":"2025-12-17T14:00:00.000Z","end":"2025-12-17T14:20:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6447\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086082-8n5m98ebl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085533-e286wev1b\"}]","start":"2026-01-14T21:40:00.000Z","end":"2026-01-14T22:00:00.000Z","created":"2025-12-12T05:24:46.082Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-2289\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-5bc2y708e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085543-lw4hts7vm\"}]","start":"2026-01-28T14:00:00.000Z","end":"2026-01-28T14:20:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5725\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-kzu0ytv5u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085512-6eqltdzfo\"}]","start":"2025-12-19T15:40:00.000Z","end":"2025-12-19T16:00:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8446\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-z9xcyai9s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-b9jarexf6\"}]","start":"2026-04-29T12:20:00.000Z","end":"2026-04-29T12:40:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6571\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-0ldp4dd76","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085562-1gcusb11w\"}]","start":"2026-02-23T21:20:00.000Z","end":"2026-02-23T21:40:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-7429\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-42rmsdo9f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085556-mxodmk1o0\"}]","start":"2026-02-16T17:40:00.000Z","end":"2026-02-16T18:00:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9402\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-zpqvr9x7s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085564-tczh7ebzk\"}]","start":"2026-02-26T14:00:00.000Z","end":"2026-02-26T14:20:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5525\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-zt337yzme","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085600-eu9s3n4ys\"}]","start":"2026-04-17T13:40:00.000Z","end":"2026-04-17T14:00:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2203\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-wm2gm620f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085611-gkq74b2x6\"}]","start":"2026-05-01T18:20:00.000Z","end":"2026-05-01T18:40:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4894\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-emunyedjg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085560-kjw4344wg\"}]","start":"2026-02-19T19:40:00.000Z","end":"2026-02-19T20:00:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2126\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-jaz12d2ob","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085620-z6u6ovhzy\"}]","start":"2026-05-15T19:00:00.000Z","end":"2026-05-15T19:20:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1859\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086083-4kz4a874w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085580-wfpxuk4je\"}]","start":"2026-03-19T16:00:00.000Z","end":"2026-03-19T16:20:00.000Z","created":"2025-12-12T05:24:46.083Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7138\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-bay0j46mt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085631-c0nq68a82\"}]","start":"2026-06-01T17:20:00.000Z","end":"2026-06-01T17:40:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9980\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-lt50f0owx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085620-pl2bq4g3r\"}]","start":"2026-05-14T20:20:00.000Z","end":"2026-05-14T20:40:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7449\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-9wmhruyqy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085592-7gqnidmkb\"}]","start":"2026-04-06T20:40:00.000Z","end":"2026-04-06T21:00:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6250\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-fgtdljoh6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085618-ddcuwsfwi\"}]","start":"2026-05-13T13:40:00.000Z","end":"2026-05-13T14:00:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8948\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-p7ysitmkf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085529-42qzoixkd\"}]","start":"2026-01-08T21:20:00.000Z","end":"2026-01-08T21:40:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-6244\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-z9yemigzh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085517-y0ean1r5m\"}]","start":"2025-12-25T19:20:00.000Z","end":"2025-12-25T19:40:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-2941\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-63epexp9g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085603-zaqw0dhll\"}]","start":"2026-04-22T14:00:00.000Z","end":"2026-04-22T14:20:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3007\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-he4p4c1hd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085605-smpnsht8x\"}]","start":"2026-04-24T19:40:00.000Z","end":"2026-04-24T20:00:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-5099\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-390cgxw6d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085629-6y7ymyvrl\"}]","start":"2026-05-27T19:40:00.000Z","end":"2026-05-27T20:00:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6691\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-7knowq8as","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085537-gnk0ws1z2\"}]","start":"2026-01-20T19:40:00.000Z","end":"2026-01-20T20:00:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1831\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-4dgjxsh3n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085568-dcu9aym4s\"}]","start":"2026-03-03T16:40:00.000Z","end":"2026-03-03T17:00:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7013\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-o1d7oz088","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085564-6ckdf4ili\"}]","start":"2026-02-26T15:40:00.000Z","end":"2026-02-26T16:00:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7835\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086084-vnwppq5cc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085520-36qffx4zt\"}]","start":"2026-01-01T16:20:00.000Z","end":"2026-01-01T16:40:00.000Z","created":"2025-12-12T05:24:46.084Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5548\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-u1vfs38kf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085509-9cxw7gitk\"}]","start":"2025-12-15T19:00:00.000Z","end":"2025-12-15T19:20:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5146\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-o655mvr19","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085624-7dag7m9s7\"}]","start":"2026-05-20T17:00:00.000Z","end":"2026-05-20T17:20:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4448\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-bidcx57qm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085624-s64iyjeqo\"}]","start":"2026-05-20T16:40:00.000Z","end":"2026-05-20T17:00:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4153\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-8jq4yur8b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085556-4uxrrc8cr\"}]","start":"2026-02-16T18:00:00.000Z","end":"2026-02-16T18:20:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8549\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-7ymcxjqjt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085543-oebkxu0y8\"}]","start":"2026-01-27T18:00:00.000Z","end":"2026-01-27T18:20:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7948\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-6nvxzy69h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085537-epx744phi\"}]","start":"2026-01-20T18:20:00.000Z","end":"2026-01-20T18:40:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-4177\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-c2ku1lk2b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085533-lazzdowzp\"}]","start":"2026-01-14T13:40:00.000Z","end":"2026-01-14T14:00:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8454\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-6txdq9ae6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085543-j9ic1eo2k\"}]","start":"2026-01-28T15:20:00.000Z","end":"2026-01-28T15:40:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8385\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-p8kswq9o5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085520-33ouxa1i6\"}]","start":"2026-01-01T13:40:00.000Z","end":"2026-01-01T14:00:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4204\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-7bci66h0d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085582-2ft5cz3cm\"}]","start":"2026-03-24T13:20:00.000Z","end":"2026-03-24T13:40:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7893\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-vw3fhj6df","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085597-hzvsvek7r\"}]","start":"2026-04-13T18:40:00.000Z","end":"2026-04-13T19:00:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8443\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-14c7y46xh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085580-ri16r833y\"}]","start":"2026-03-18T19:00:00.000Z","end":"2026-03-18T19:20:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9348\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086085-3ujg32jv1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085593-6q57f0ohc\"}]","start":"2026-04-07T20:20:00.000Z","end":"2026-04-07T20:40:00.000Z","created":"2025-12-12T05:24:46.085Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4725\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-g141jnu02","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085589-halw06k1q\"}]","start":"2026-04-02T16:40:00.000Z","end":"2026-04-02T17:00:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5691\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-x3lzzc074","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085636-4qop5b8hj\"}]","start":"2026-06-08T17:00:00.000Z","end":"2026-06-08T17:20:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5155\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-55ffw8vgy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085611-ag0mfq3t6\"}]","start":"2026-05-01T19:20:00.000Z","end":"2026-05-01T19:40:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2754\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-kxl4e7uqp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085616-ra7spoq2h\"}]","start":"2026-05-08T15:40:00.000Z","end":"2026-05-08T16:00:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2668\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-eowrbt86y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085624-c06ae6p5d\"}]","start":"2026-05-21T14:00:00.000Z","end":"2026-05-21T14:20:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1825\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-yka9c3jez","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085592-iup89s2xr\"}]","start":"2026-04-06T16:20:00.000Z","end":"2026-04-06T16:40:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9351\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-acrgo44ot","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085555-zerofa9u3\"}]","start":"2026-02-13T18:40:00.000Z","end":"2026-02-13T19:00:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6323\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-ug099n5wm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085513-cqp7t8gtg\"}]","start":"2025-12-22T13:40:00.000Z","end":"2025-12-22T14:00:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1298\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-pi5a4mma3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085635-xj45fezei\"}]","start":"2026-06-05T19:20:00.000Z","end":"2026-06-05T19:40:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8056\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-bbdzxzod4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085561-mlunemq9c\"}]","start":"2026-02-23T14:00:00.000Z","end":"2026-02-23T14:20:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-5968\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-08rld8jhk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085533-8kqsndd13\"}]","start":"2026-01-14T21:20:00.000Z","end":"2026-01-14T21:40:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3658\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086086-fwtft3bg2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085614-4dr50p9ax\"}]","start":"2026-05-07T18:20:00.000Z","end":"2026-05-07T18:40:00.000Z","created":"2025-12-12T05:24:46.086Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4109\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-m6uupjdeh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085616-an1e3797l\"}]","start":"2026-05-08T19:20:00.000Z","end":"2026-05-08T19:40:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3702\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-fk2emdcgu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085633-t4ttynbui\"}]","start":"2026-06-03T17:20:00.000Z","end":"2026-06-03T17:40:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5803\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-8zi5vprb2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085539-8ly4x2l2v\"}]","start":"2026-01-21T19:00:00.000Z","end":"2026-01-21T19:20:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9218\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-875r1104s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085606-p09z1s17v\"}]","start":"2026-04-27T20:00:00.000Z","end":"2026-04-27T20:20:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3531\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-62i5uhii3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085580-l7rerh7x0\"}]","start":"2026-03-18T20:00:00.000Z","end":"2026-03-18T20:20:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6120\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-nr2vb746l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-e3f8urq8g\"}]","start":"2026-01-05T17:20:00.000Z","end":"2026-01-05T17:40:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4129\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-vbbdvspe5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085612-fxwaphfwd\"}]","start":"2026-05-05T12:20:00.000Z","end":"2026-05-05T12:40:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-6474\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-051ner4gk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085587-952m418l3\"}]","start":"2026-03-30T20:20:00.000Z","end":"2026-03-30T20:40:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1964\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-s6fsbvs76","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085568-mrggjlk05\"}]","start":"2026-03-03T16:00:00.000Z","end":"2026-03-03T16:20:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3465\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-ialba5pzp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085550-7bsy0ryu6\"}]","start":"2026-02-05T19:40:00.000Z","end":"2026-02-05T20:00:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5896\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-t9k5znysi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085597-smldk6yv7\"}]","start":"2026-04-13T16:40:00.000Z","end":"2026-04-13T17:00:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3573\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086087-on7k3ngbv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-twzxdx0xw\"}]","start":"2026-03-31T20:20:00.000Z","end":"2026-03-31T20:40:00.000Z","created":"2025-12-12T05:24:46.087Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6753\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-6sy6lvt15","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085630-mtpb9ou14\"}]","start":"2026-05-29T12:00:00.000Z","end":"2026-05-29T12:20:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-6934\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-79du1gagq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085599-jxh3fxhnq\"}]","start":"2026-04-16T16:00:00.000Z","end":"2026-04-16T16:20:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4701\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-q9zq7v9kh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085583-1nah2smdp\"}]","start":"2026-03-24T17:20:00.000Z","end":"2026-03-24T17:40:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-6916\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-srb344kx8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085588-lom042lf9\"}]","start":"2026-04-01T17:20:00.000Z","end":"2026-04-01T17:40:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7326\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-nm0kql1h6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085573-ekp6fhp9d\"}]","start":"2026-03-09T18:00:00.000Z","end":"2026-03-09T18:20:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9142\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-qkntyy9c4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085524-5yr1uh0df\"}]","start":"2026-01-06T14:20:00.000Z","end":"2026-01-06T14:40:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6455\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-w6kpwtt0p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085570-69nism8r6\"}]","start":"2026-03-06T13:00:00.000Z","end":"2026-03-06T13:20:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5493\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-ymk8b2jsp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085601-sos849zuv\"}]","start":"2026-04-21T13:40:00.000Z","end":"2026-04-21T14:00:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8818\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086088-ek74h9ui4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085623-wievpyhgz\"}]","start":"2026-05-19T20:40:00.000Z","end":"2026-05-19T21:00:00.000Z","created":"2025-12-12T05:24:46.088Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7858\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086090-gcd9sxy1u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085543-2xdcypr78\"}]","start":"2026-01-27T16:40:00.000Z","end":"2026-01-27T17:00:00.000Z","created":"2025-12-12T05:24:46.090Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5705\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.090Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086090-embqh1yhs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085604-uovtmh86e\"}]","start":"2026-04-23T15:40:00.000Z","end":"2026-04-23T16:00:00.000Z","created":"2025-12-12T05:24:46.090Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7270\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.090Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-oaf0vilc6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085624-d2qaelel1\"}]","start":"2026-05-20T17:20:00.000Z","end":"2026-05-20T17:40:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3893\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-rouwxdu0p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085528-d8cp2kapq\"}]","start":"2026-01-07T17:20:00.000Z","end":"2026-01-07T17:40:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-2446\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-1sw2nhfd4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085568-emcmy40e8\"}]","start":"2026-03-03T18:40:00.000Z","end":"2026-03-03T19:00:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1285\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-sm8b5k2ei","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085519-14ytaspc9\"}]","start":"2025-12-31T14:40:00.000Z","end":"2025-12-31T15:00:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-3724\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-hlnvij70e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-21oysm3v5\"}]","start":"2026-04-03T17:40:00.000Z","end":"2026-04-03T18:00:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3409\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-hvurwmgaw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085629-57aygid4d\"}]","start":"2026-05-27T20:20:00.000Z","end":"2026-05-27T20:40:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1713\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-54nftncdm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085541-2pj70pnwk\"}]","start":"2026-01-23T17:00:00.000Z","end":"2026-01-23T17:20:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3301\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-390z52nan","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085619-5hezbmaf0\"}]","start":"2026-05-14T16:00:00.000Z","end":"2026-05-14T16:20:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4538\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-8ogcc8g47","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085520-6o57ao026\"}]","start":"2026-01-01T16:40:00.000Z","end":"2026-01-01T17:00:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1707\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-cm68x67k3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085617-p0rwe3467\"}]","start":"2026-05-11T16:00:00.000Z","end":"2026-05-11T16:20:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-2044\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-jx2688jk4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085633-l9wz6ewcr\"}]","start":"2026-06-03T16:00:00.000Z","end":"2026-06-03T16:20:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9208\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086091-td9ozg5ah","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085619-xj5ep0n2q\"}]","start":"2026-05-14T16:40:00.000Z","end":"2026-05-14T17:00:00.000Z","created":"2025-12-12T05:24:46.091Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4672\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-opjb6wmpc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085522-7vszbdkbi\"}]","start":"2026-01-02T18:40:00.000Z","end":"2026-01-02T19:00:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7982\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-ypafblzpe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085625-lvp94ksj4\"}]","start":"2026-05-22T13:20:00.000Z","end":"2026-05-22T13:40:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-7205\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-z22d2ko0z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085593-cdi3tozto\"}]","start":"2026-04-07T18:40:00.000Z","end":"2026-04-07T19:00:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-4995\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-u2o48yvh6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085616-x5qe9kaog\"}]","start":"2026-05-08T17:00:00.000Z","end":"2026-05-08T17:20:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1658\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-dq7vup37j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085617-pd2qtgkl8\"}]","start":"2026-05-11T14:40:00.000Z","end":"2026-05-11T15:00:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-9535\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-vmijrt32y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085520-uw4avk3ta\"}]","start":"2026-01-01T17:20:00.000Z","end":"2026-01-01T17:40:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-5474\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-deabk6nml","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085555-n18nhlee9\"}]","start":"2026-02-12T20:40:00.000Z","end":"2026-02-12T21:00:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9255\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-zhfzk0vpl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085512-zni9618wr\"}]","start":"2025-12-19T14:20:00.000Z","end":"2025-12-19T14:40:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2734\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-a2ca5d06l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085587-euwdw12fv\"}]","start":"2026-03-30T19:40:00.000Z","end":"2026-03-30T20:00:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-6857\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-2ns4bnoqn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085584-04ou02wwk\"}]","start":"2026-03-25T15:00:00.000Z","end":"2026-03-25T15:20:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3351\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-r37pnerx2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085558-r1ua0n9hn\"}]","start":"2026-02-17T19:40:00.000Z","end":"2026-02-17T20:00:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1823\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086092-v0q2hq2o4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085558-9nb36e64a\"}]","start":"2026-02-17T20:40:00.000Z","end":"2026-02-17T21:00:00.000Z","created":"2025-12-12T05:24:46.092Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3378\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-2gsigito5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085541-tonj4ime0\"}]","start":"2026-01-22T21:40:00.000Z","end":"2026-01-22T22:00:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3239\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-zz9t0i0w3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085630-bx5lcmc3t\"}]","start":"2026-05-28T18:00:00.000Z","end":"2026-05-28T18:20:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3563\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-0lvzz8srt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085523-brvc9or72\"}]","start":"2026-01-05T14:00:00.000Z","end":"2026-01-05T14:20:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4987\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-eupnwj338","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085583-8p5p295kc\"}]","start":"2026-03-24T18:00:00.000Z","end":"2026-03-24T18:20:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2350\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-k5hch13ld","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085630-g37s7vobf\"}]","start":"2026-05-28T20:40:00.000Z","end":"2026-05-28T21:00:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7210\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-ccqelzv7m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085622-o6bi4db8e\"}]","start":"2026-05-19T13:40:00.000Z","end":"2026-05-19T14:00:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5851\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-n8oo1akia","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085580-t077blebb\"}]","start":"2026-03-19T15:00:00.000Z","end":"2026-03-19T15:20:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8527\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-q7so0srk1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-3wawqqzry\"}]","start":"2026-03-11T16:00:00.000Z","end":"2026-03-11T16:20:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1445\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-t4y3s7u06","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085534-cq6us34yi\"}]","start":"2026-01-16T14:20:00.000Z","end":"2026-01-16T14:40:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5861\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-505bij879","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085527-kf33rzgg4\"}]","start":"2026-01-06T18:40:00.000Z","end":"2026-01-06T19:00:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4823\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-z5bianutl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085550-c1rojejxm\"}]","start":"2026-02-05T20:20:00.000Z","end":"2026-02-05T20:40:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-4292\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-7lwfmzw2j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085605-v8f0l7pqi\"}]","start":"2026-04-24T18:00:00.000Z","end":"2026-04-24T18:20:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9750\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086093-fvgkxx3ss","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085512-23ujp1c4h\"}]","start":"2025-12-19T18:40:00.000Z","end":"2025-12-19T19:00:00.000Z","created":"2025-12-12T05:24:46.093Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-8766\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-nawc3uv7t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085528-vf0n31e2f\"}]","start":"2026-01-07T14:00:00.000Z","end":"2026-01-07T14:20:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6254\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-awk5k5uz6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085598-62kqihzdm\"}]","start":"2026-04-15T13:00:00.000Z","end":"2026-04-15T13:20:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3892\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-hjgxfld0q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085627-6ut9fpbd7\"}]","start":"2026-05-27T12:00:00.000Z","end":"2026-05-27T12:20:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4554\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-b2dj99t81","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085537-zmsbtym1k\"}]","start":"2026-01-20T21:20:00.000Z","end":"2026-01-20T21:40:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7606\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-g3h1fn4gw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085597-0kh66br6c\"}]","start":"2026-04-14T13:40:00.000Z","end":"2026-04-14T14:00:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7068\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-tq5zh80mf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085591-xtxzrkvu9\"}]","start":"2026-04-03T12:40:00.000Z","end":"2026-04-03T13:00:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2623\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-nng778368","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085546-nzqbzqkfo\"}]","start":"2026-01-30T16:00:00.000Z","end":"2026-01-30T16:20:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4483\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-toepunlhh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085598-354wr5z4e\"}]","start":"2026-04-15T15:00:00.000Z","end":"2026-04-15T15:20:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2918\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-j1hkb4ygz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085523-niivaoaqv\"}]","start":"2026-01-05T14:20:00.000Z","end":"2026-01-05T14:40:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1561\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-3f95rfws4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085630-1f8nbg6kh\"}]","start":"2026-05-29T14:40:00.000Z","end":"2026-05-29T15:00:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7423\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-6sib88bj6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085626-as6ocktp4\"}]","start":"2026-05-22T20:20:00.000Z","end":"2026-05-22T20:40:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4517\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086094-nyux7bdny","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085547-ssr9wbnst\"}]","start":"2026-02-02T17:00:00.000Z","end":"2026-02-02T17:20:00.000Z","created":"2025-12-12T05:24:46.094Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5266\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-2mvqezohz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085606-tuhybf572\"}]","start":"2026-04-27T19:00:00.000Z","end":"2026-04-27T19:20:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-7528\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-w7tjab5bt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085624-w9vdf8chy\"}]","start":"2026-05-20T15:20:00.000Z","end":"2026-05-20T15:40:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7311\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-ujq8h3ynl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085588-4e5s6ney4\"}]","start":"2026-04-01T15:40:00.000Z","end":"2026-04-01T16:00:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3702\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-j73sjba18","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085593-pdcf3xan8\"}]","start":"2026-04-07T16:00:00.000Z","end":"2026-04-07T16:20:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-8696\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-nxtk6ps2y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085510-c0jv71i6y\"}]","start":"2025-12-15T21:00:00.000Z","end":"2025-12-15T21:20:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9089\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-p8a6devfe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085595-01cidmdzu\"}]","start":"2026-04-10T14:40:00.000Z","end":"2026-04-10T15:00:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7278\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-1opike4r9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085614-daelgwm4z\"}]","start":"2026-05-06T17:40:00.000Z","end":"2026-05-06T18:00:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9549\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-67zwdqdm5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085523-900gghusi\"}]","start":"2026-01-05T13:20:00.000Z","end":"2026-01-05T13:40:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-9125\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-54wv8jo0y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085566-g2k5q4vde\"}]","start":"2026-03-02T14:40:00.000Z","end":"2026-03-02T15:00:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8612\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-46ggbgacz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-y6tkm1rqi\"}]","start":"2026-05-06T14:40:00.000Z","end":"2026-05-06T15:00:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7776\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-pfofkh7c7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085626-ipl40u1xx\"}]","start":"2026-05-22T20:00:00.000Z","end":"2026-05-22T20:20:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2839\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-w2ybp5vg7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085612-j6s6mysfm\"}]","start":"2026-05-04T13:00:00.000Z","end":"2026-05-04T13:20:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2081\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086095-rhvv0734b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085555-ag9xxas3v\"}]","start":"2026-02-13T18:20:00.000Z","end":"2026-02-13T18:40:00.000Z","created":"2025-12-12T05:24:46.095Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6807\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-bsr6bzej3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085586-ii3409g48\"}]","start":"2026-03-27T14:40:00.000Z","end":"2026-03-27T15:00:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7081\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-hlrhrwdcu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085566-jgy205sqg\"}]","start":"2026-02-27T21:20:00.000Z","end":"2026-02-27T21:40:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8938\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-r67ntujyu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085582-s0qdul2z1\"}]","start":"2026-03-23T18:00:00.000Z","end":"2026-03-23T18:20:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2967\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-qdnjpu5rx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085561-dc5wtdxz8\"}]","start":"2026-02-23T17:40:00.000Z","end":"2026-02-23T18:00:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9587\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-z0sdu0xye","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085593-dykvpgrdp\"}]","start":"2026-04-07T20:40:00.000Z","end":"2026-04-07T21:00:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9666\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-ju4onkxou","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085550-f4i4t4lne\"}]","start":"2026-02-06T15:40:00.000Z","end":"2026-02-06T16:00:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5069\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-w6a3vds11","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085503-3u1k6xfid\"}]","start":"2025-12-15T13:00:00.000Z","end":"2025-12-15T13:20:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8314\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-hc03fp7mw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085629-amxzsb0qy\"}]","start":"2026-05-27T20:40:00.000Z","end":"2026-05-27T21:00:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8005\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-5gyypa1le","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085583-spowub35k\"}]","start":"2026-03-24T15:40:00.000Z","end":"2026-03-24T16:00:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1588\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-2wgmkqg0a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085562-baj1228mv\"}]","start":"2026-02-25T14:40:00.000Z","end":"2026-02-25T15:00:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4698\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-la7zw8is6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-odedzwxa0\"}]","start":"2026-03-10T14:00:00.000Z","end":"2026-03-10T14:20:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-1904\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086096-f081tpif7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085556-7nroivwev\"}]","start":"2026-02-16T15:00:00.000Z","end":"2026-02-16T15:20:00.000Z","created":"2025-12-12T05:24:46.096Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1350\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-5mgi3ufzd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085573-7oc14ad0f\"}]","start":"2026-03-09T19:40:00.000Z","end":"2026-03-09T20:00:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1568\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-zdyaj1g8u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085539-dzwiow63o\"}]","start":"2026-01-21T19:20:00.000Z","end":"2026-01-21T19:40:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4967\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-dw1jjc8ka","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085591-nxuq3m7rg\"}]","start":"2026-04-03T14:20:00.000Z","end":"2026-04-03T14:40:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-9173\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-u617u986d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085575-jb9k6efvc\"}]","start":"2026-03-11T17:20:00.000Z","end":"2026-03-11T17:40:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4862\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-vduo9exxh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085632-7bhkund6c\"}]","start":"2026-06-02T17:40:00.000Z","end":"2026-06-02T18:00:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4224\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-6xi5rnttm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085587-7ip9w44pa\"}]","start":"2026-03-30T18:00:00.000Z","end":"2026-03-30T18:20:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2209\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-lffl99i6g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085630-t7c63iqc7\"}]","start":"2026-05-28T19:20:00.000Z","end":"2026-05-28T19:40:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-6804\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-mstwfdn76","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085539-ncnmllw2e\"}]","start":"2026-01-21T16:40:00.000Z","end":"2026-01-21T17:00:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8506\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-lcbcqk10h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085630-imqc5lsh9\"}]","start":"2026-05-29T18:00:00.000Z","end":"2026-05-29T18:20:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8683\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-o2zx3ag0d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085523-isz4uv0xk\"}]","start":"2026-01-02T19:00:00.000Z","end":"2026-01-02T19:20:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5942\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-kvn2urpvu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085502-vnvpuyow6\"}]","start":"2025-12-12T17:20:00.000Z","end":"2025-12-12T17:40:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2319\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-3dix8hiw4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085601-xiew1akb0\"}]","start":"2026-04-20T13:40:00.000Z","end":"2026-04-20T14:00:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-4013\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086097-mta9y7qle","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085606-hq1h86a0r\"}]","start":"2026-04-27T14:00:00.000Z","end":"2026-04-27T14:20:00.000Z","created":"2025-12-12T05:24:46.097Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6326\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-be2mbkqau","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085529-xv4e6jtod\"}]","start":"2026-01-08T17:20:00.000Z","end":"2026-01-08T17:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-8544\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-ifgym4wn4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085576-cucc1sgjj\"}]","start":"2026-03-16T12:20:00.000Z","end":"2026-03-16T12:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7011\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-sjwsbd1it","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085637-4v8o2mwbd\"}]","start":"2026-06-09T17:20:00.000Z","end":"2026-06-09T17:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4645\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-pnzgsxzmx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085512-shvy1qn26\"}]","start":"2025-12-18T17:20:00.000Z","end":"2025-12-18T17:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4511\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-53hldbfy3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085576-r7xmmggf1\"}]","start":"2026-03-12T20:20:00.000Z","end":"2026-03-12T20:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2111\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-le2cvf029","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085637-ek4dh208o\"}]","start":"2026-06-09T19:20:00.000Z","end":"2026-06-09T19:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7985\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-4x3qxlwuk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085618-pd5yuex5v\"}]","start":"2026-05-13T12:20:00.000Z","end":"2026-05-13T12:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-2312\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-s6c0e9crp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085543-qmnvcvmsi\"}]","start":"2026-01-28T14:40:00.000Z","end":"2026-01-28T15:00:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7651\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-aa6xrrrsd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085548-o66l0hiyy\"}]","start":"2026-02-03T16:00:00.000Z","end":"2026-02-03T16:20:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5469\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-9i9oe73tx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085571-wi04bvqdq\"}]","start":"2026-03-06T16:20:00.000Z","end":"2026-03-06T16:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8499\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-irt381j55","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085555-z8wwzx4bp\"}]","start":"2026-02-13T18:00:00.000Z","end":"2026-02-13T18:20:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9412\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-5ddym4fog","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-5qhs8qpk1\"}]","start":"2026-01-26T13:00:00.000Z","end":"2026-01-26T13:20:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8163\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086098-sr6dtp5a1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-05r2zwz2r\"}]","start":"2026-04-28T17:20:00.000Z","end":"2026-04-28T17:40:00.000Z","created":"2025-12-12T05:24:46.098Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5573\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-if6czx4ef","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085532-764em4afm\"}]","start":"2026-01-13T14:40:00.000Z","end":"2026-01-13T15:00:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9458\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-9wadwebje","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085528-kdugo9cj4\"}]","start":"2026-01-07T15:00:00.000Z","end":"2026-01-07T15:20:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5359\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-ir1herwtd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085614-znlnoeat4\"}]","start":"2026-05-07T13:20:00.000Z","end":"2026-05-07T13:40:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6888\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-rfbvcq1uk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085534-4l5o7lxir\"}]","start":"2026-01-15T15:20:00.000Z","end":"2026-01-15T15:40:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4917\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-e6oifzmcw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085586-kdwz2gqhr\"}]","start":"2026-03-27T20:00:00.000Z","end":"2026-03-27T20:20:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6266\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-83lvs69wa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085625-pdypo505i\"}]","start":"2026-05-22T17:00:00.000Z","end":"2026-05-22T17:20:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1657\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-9k5fvuycp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-ikijkddum\"}]","start":"2026-04-07T14:00:00.000Z","end":"2026-04-07T14:20:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2407\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-1w3mfrrps","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085608-mfzy359td\"}]","start":"2026-04-28T17:00:00.000Z","end":"2026-04-28T17:20:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2009\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-046nwwg0w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085539-r4s1ibv2p\"}]","start":"2026-01-21T19:40:00.000Z","end":"2026-01-21T20:00:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7949\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-abmwbjwrd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085513-pls22c4tp\"}]","start":"2025-12-22T14:20:00.000Z","end":"2025-12-22T14:40:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-6780\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086099-rzv6r2en2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085530-r58isnt2p\"}]","start":"2026-01-12T16:40:00.000Z","end":"2026-01-12T17:00:00.000Z","created":"2025-12-12T05:24:46.099Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2746\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086101-2acn4e4qq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085577-8021mjp31\"}]","start":"2026-03-16T16:20:00.000Z","end":"2026-03-16T16:40:00.000Z","created":"2025-12-12T05:24:46.101Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3394\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.101Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086101-g8c1o0na8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085550-h5sg47f4y\"}]","start":"2026-02-05T19:20:00.000Z","end":"2026-02-05T19:40:00.000Z","created":"2025-12-12T05:24:46.101Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4882\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.101Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086101-cyvmheoqi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085591-qx538h7uq\"}]","start":"2026-04-03T12:20:00.000Z","end":"2026-04-03T12:40:00.000Z","created":"2025-12-12T05:24:46.101Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1650\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.101Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-l2quzht9a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085616-xdk1goh17\"}]","start":"2026-05-08T14:00:00.000Z","end":"2026-05-08T14:20:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-6372\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-17z80tw79","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085517-jwyiqj3ls\"}]","start":"2025-12-25T20:00:00.000Z","end":"2025-12-25T20:20:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8657\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-u9rym6don","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085549-s1ch3fso2\"}]","start":"2026-02-05T14:20:00.000Z","end":"2026-02-05T14:40:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-2914\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-8d2tospmp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085589-beyaasdv7\"}]","start":"2026-04-02T13:20:00.000Z","end":"2026-04-02T13:40:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6584\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-vp5x15boi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085616-purmmgzgq\"}]","start":"2026-05-08T20:00:00.000Z","end":"2026-05-08T20:20:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5876\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-ouz4ubfg8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085556-xtfg4760h\"}]","start":"2026-02-16T15:40:00.000Z","end":"2026-02-16T16:00:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8361\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-92kwg1muv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085612-djp81e7y0\"}]","start":"2026-05-04T12:40:00.000Z","end":"2026-05-04T13:00:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2003\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-men5jv3oi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085549-r4ulj32k6\"}]","start":"2026-02-04T18:40:00.000Z","end":"2026-02-04T19:00:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7464\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-lnx4o2hqk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085610-6ww3ciro2\"}]","start":"2026-04-30T15:20:00.000Z","end":"2026-04-30T15:40:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2178\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-jtj09telc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085530-83bmdmoag\"}]","start":"2026-01-12T14:00:00.000Z","end":"2026-01-12T14:20:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2947\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086102-mt5d6lglk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085543-1uo89er3h\"}]","start":"2026-01-27T21:20:00.000Z","end":"2026-01-27T21:40:00.000Z","created":"2025-12-12T05:24:46.102Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8761\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-njey5hwq8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085610-197kcpa47\"}]","start":"2026-04-30T17:40:00.000Z","end":"2026-04-30T18:00:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6560\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-99ycscdnn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085518-tacdthwcw\"}]","start":"2025-12-29T14:40:00.000Z","end":"2025-12-29T15:00:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1041\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-he8h7xibr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085550-s6u16axnm\"}]","start":"2026-02-05T21:20:00.000Z","end":"2026-02-05T21:40:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9362\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-a87rcyu7h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-9nqag7y3g\"}]","start":"2026-03-11T12:00:00.000Z","end":"2026-03-11T12:20:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4839\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-fxotk0v9p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085539-510etn1x3\"}]","start":"2026-01-21T14:20:00.000Z","end":"2026-01-21T14:40:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3998\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-ds2wdg13r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085517-6gcsvq6zk\"}]","start":"2025-12-26T17:20:00.000Z","end":"2025-12-26T17:40:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6884\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-yo21ixim9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085599-1d2thyeak\"}]","start":"2026-04-15T19:00:00.000Z","end":"2026-04-15T19:20:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3806\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-x0deno6h1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085611-5wbsehsvw\"}]","start":"2026-04-30T20:00:00.000Z","end":"2026-04-30T20:20:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-3044\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-wywbxudgf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085631-ssw5qfgmt\"}]","start":"2026-06-02T12:20:00.000Z","end":"2026-06-02T12:40:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1633\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-4fd0jpnic","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085559-a1tk42ssc\"}]","start":"2026-02-18T14:20:00.000Z","end":"2026-02-18T14:40:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1307\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-wjik2u78x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085555-dx125uwgl\"}]","start":"2026-02-13T17:00:00.000Z","end":"2026-02-13T17:20:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7423\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-c76m235ec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085510-f2ek5irkn\"}]","start":"2025-12-16T16:20:00.000Z","end":"2025-12-16T16:40:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8079\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086103-8wi5sjc0k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085539-oa28now59\"}]","start":"2026-01-21T15:20:00.000Z","end":"2026-01-21T15:40:00.000Z","created":"2025-12-12T05:24:46.103Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2804\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-xyanqzr8u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085512-a81yi2mfz\"}]","start":"2025-12-18T19:20:00.000Z","end":"2025-12-18T19:40:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4894\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-i16xn3fad","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085598-ubfwn4nq3\"}]","start":"2026-04-14T17:00:00.000Z","end":"2026-04-14T17:20:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6766\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-w84ux6khz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085511-nrq2x18r1\"}]","start":"2025-12-18T13:40:00.000Z","end":"2025-12-18T14:00:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4168\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-wotjg1zev","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085617-3x7pl1ktj\"}]","start":"2026-05-11T17:40:00.000Z","end":"2026-05-11T18:00:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8864\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-tjsth3lgh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085637-uqixg3b09\"}]","start":"2026-06-09T14:40:00.000Z","end":"2026-06-09T15:00:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9347\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-tu1b8y659","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085598-r4z0eqcg8\"}]","start":"2026-04-15T16:00:00.000Z","end":"2026-04-15T16:20:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2678\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-w698glrih","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085618-e834ngdzy\"}]","start":"2026-05-12T18:20:00.000Z","end":"2026-05-12T18:40:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-3029\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-761e86mjl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085553-xlwxc2tlj\"}]","start":"2026-02-10T20:40:00.000Z","end":"2026-02-10T21:00:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5310\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-5afnbpd57","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085512-iliduwqt5\"}]","start":"2025-12-18T18:40:00.000Z","end":"2025-12-18T19:00:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2929\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-hnak1l9te","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085580-xl23l4v4c\"}]","start":"2026-03-19T13:00:00.000Z","end":"2026-03-19T13:20:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3417\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-onj667gxz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085517-g4pvszw8s\"}]","start":"2025-12-26T19:00:00.000Z","end":"2025-12-26T19:20:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4212\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-kff7gu824","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085530-fllq95i6o\"}]","start":"2026-01-12T15:40:00.000Z","end":"2026-01-12T16:00:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-4626\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086104-v9kkpn5na","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085617-m5k9ic7cf\"}]","start":"2026-05-11T16:40:00.000Z","end":"2026-05-11T17:00:00.000Z","created":"2025-12-12T05:24:46.104Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4381\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-asfa23xyv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085632-3at96twcv\"}]","start":"2026-06-02T16:00:00.000Z","end":"2026-06-02T16:20:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2767\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-yp7afzeoe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085519-aomwpju7f\"}]","start":"2025-12-30T21:40:00.000Z","end":"2025-12-30T22:00:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3796\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-t08fb9bwj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085636-x7tbbanl7\"}]","start":"2026-06-08T13:20:00.000Z","end":"2026-06-08T13:40:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-9772\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-97m0050b4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085544-fxhvqlw73\"}]","start":"2026-01-28T20:20:00.000Z","end":"2026-01-28T20:40:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9320\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-fzqsrdiqk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085580-srp8x3obv\"}]","start":"2026-03-19T19:40:00.000Z","end":"2026-03-19T20:00:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-9919\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-rx38vxjfr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085565-apx1wgv4z\"}]","start":"2026-02-27T18:00:00.000Z","end":"2026-02-27T18:20:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9695\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-g92ixi85n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085599-at7ow36rd\"}]","start":"2026-04-15T20:00:00.000Z","end":"2026-04-15T20:20:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-1739\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-5ketu3d0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085613-5paytkvmd\"}]","start":"2026-05-05T18:40:00.000Z","end":"2026-05-05T19:00:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5196\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-t5dedxojg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085563-c9jq6zw5b\"}]","start":"2026-02-25T20:20:00.000Z","end":"2026-02-25T20:40:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1084\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-wkeanrwp8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-sv34g4a1x\"}]","start":"2026-02-19T15:00:00.000Z","end":"2026-02-19T15:20:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1502\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-cm6bpkget","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085629-dblcas0bh\"}]","start":"2026-05-28T12:40:00.000Z","end":"2026-05-28T13:00:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5973\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-g8a4nt9qp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-tc058aarg\"}]","start":"2026-01-26T19:20:00.000Z","end":"2026-01-26T19:40:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2427\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086105-gpj9tfu7l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085626-nsceohz09\"}]","start":"2026-05-25T13:20:00.000Z","end":"2026-05-25T13:40:00.000Z","created":"2025-12-12T05:24:46.105Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6548\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-azx08wm94","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085597-uhewr1tyc\"}]","start":"2026-04-13T17:40:00.000Z","end":"2026-04-13T18:00:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-8459\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-zpmtm1je1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085530-u78el2jhn\"}]","start":"2026-01-12T16:00:00.000Z","end":"2026-01-12T16:20:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9454\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-zeyrfihy8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085530-dk3a255q9\"}]","start":"2026-01-12T17:00:00.000Z","end":"2026-01-12T17:20:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9565\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-474fpc7xa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085511-am9jjljxz\"}]","start":"2025-12-17T16:00:00.000Z","end":"2025-12-17T16:20:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1139\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-5f1bpitel","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085583-qccgpanye\"}]","start":"2026-03-24T17:40:00.000Z","end":"2026-03-24T18:00:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-9814\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-jyk5xsrxa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085552-7hwzyazzx\"}]","start":"2026-02-09T18:00:00.000Z","end":"2026-02-09T18:20:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8735\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-45hnylboo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085594-ffe4haxmb\"}]","start":"2026-04-08T19:20:00.000Z","end":"2026-04-08T19:40:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-4421\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-qb7q9erp1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085556-9xconemw0\"}]","start":"2026-02-16T20:20:00.000Z","end":"2026-02-16T20:40:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3584\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-4pjart9wp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085632-amdbkk4sz\"}]","start":"2026-06-02T15:00:00.000Z","end":"2026-06-02T15:20:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-4416\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086106-bcaqwfv7x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085513-vhcyefnzm\"}]","start":"2025-12-19T21:00:00.000Z","end":"2025-12-19T21:20:00.000Z","created":"2025-12-12T05:24:46.106Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2645\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-pecrc6v1m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085637-7hb3uzzvl\"}]","start":"2026-06-09T13:40:00.000Z","end":"2026-06-09T14:00:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9075\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-eru1ifj2z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085626-cr2q8ue5j\"}]","start":"2026-05-25T17:00:00.000Z","end":"2026-05-25T17:20:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2175\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-9eh1e8zas","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085580-v7pr0t9he\"}]","start":"2026-03-19T12:20:00.000Z","end":"2026-03-19T12:40:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7011\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-w0wfahcgz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085629-ckuqilyc4\"}]","start":"2026-05-28T14:00:00.000Z","end":"2026-05-28T14:20:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1283\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-9izgqi5ff","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085575-1ez3ixmh3\"}]","start":"2026-03-12T15:40:00.000Z","end":"2026-03-12T16:00:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7906\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-ek92seykt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085544-vkruke96o\"}]","start":"2026-01-29T18:40:00.000Z","end":"2026-01-29T19:00:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8074\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-vxrlimvyn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085623-x3xx06ynh\"}]","start":"2026-05-19T16:40:00.000Z","end":"2026-05-19T17:00:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6068\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-gj1wl4rl1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085533-q4g0b4leu\"}]","start":"2026-01-14T15:40:00.000Z","end":"2026-01-14T16:00:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1047\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-kplm78ij9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085558-aqe6sh49y\"}]","start":"2026-02-17T21:20:00.000Z","end":"2026-02-17T21:40:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8928\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-fbi4cd6ji","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085537-vg86bzvf1\"}]","start":"2026-01-20T17:00:00.000Z","end":"2026-01-20T17:20:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7762\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-1kw8ve4cx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085546-l0kpx2ntn\"}]","start":"2026-01-30T17:20:00.000Z","end":"2026-01-30T17:40:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3490\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-em4ppava4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085528-am5q3x36o\"}]","start":"2026-01-07T21:40:00.000Z","end":"2026-01-07T22:00:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4420\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086107-gi71y7n3s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085583-bzvcfmj8i\"}]","start":"2026-03-24T20:20:00.000Z","end":"2026-03-24T20:40:00.000Z","created":"2025-12-12T05:24:46.107Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-8101\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-bjiyhzwj7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085539-q28nuolud\"}]","start":"2026-01-22T13:00:00.000Z","end":"2026-01-22T13:20:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-8481\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-8thlyxpzj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085624-uk4gqgheh\"}]","start":"2026-05-20T16:20:00.000Z","end":"2026-05-20T16:40:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7960\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-2khnyunda","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085618-uepg5zvqn\"}]","start":"2026-05-12T20:20:00.000Z","end":"2026-05-12T20:40:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8050\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-nzj8okz39","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085554-y3n44abnq\"}]","start":"2026-02-12T14:00:00.000Z","end":"2026-02-12T14:20:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9606\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-4y5twc0w0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085540-93l4jc0lz\"}]","start":"2026-01-22T17:20:00.000Z","end":"2026-01-22T17:40:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8657\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-z01fo2uwt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085564-zbju80wrn\"}]","start":"2026-02-26T14:20:00.000Z","end":"2026-02-26T14:40:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2965\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-6ogs0kiou","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085579-il2i2u8bg\"}]","start":"2026-03-18T15:20:00.000Z","end":"2026-03-18T15:40:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1690\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-vr13h1ahw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085583-qxsq5n5qv\"}]","start":"2026-03-24T16:00:00.000Z","end":"2026-03-24T16:20:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1127\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-c8uomqzyz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085635-ag7pen859\"}]","start":"2026-06-05T17:20:00.000Z","end":"2026-06-05T17:40:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-7378\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-wu1cn6sxl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085611-ul5k1bikv\"}]","start":"2026-05-01T19:00:00.000Z","end":"2026-05-01T19:20:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2172\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-y186xv9pn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085627-jshvtssfx\"}]","start":"2026-05-26T18:40:00.000Z","end":"2026-05-26T19:00:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2464\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-ykt7s6ief","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085627-23ukjfq7u\"}]","start":"2026-05-26T16:20:00.000Z","end":"2026-05-26T16:40:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4143\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086108-pp3sg7d3d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085549-yhbt095jp\"}]","start":"2026-02-04T18:20:00.000Z","end":"2026-02-04T18:40:00.000Z","created":"2025-12-12T05:24:46.108Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3186\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-fuzy2uh68","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085553-0oudvpb3q\"}]","start":"2026-02-11T14:20:00.000Z","end":"2026-02-11T14:40:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2431\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-efr786e8n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-pu9og303q\"}]","start":"2026-05-06T12:00:00.000Z","end":"2026-05-06T12:20:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3373\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-cqlb9tthl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085630-zwlzn7txu\"}]","start":"2026-05-29T12:40:00.000Z","end":"2026-05-29T13:00:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6569\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-xu6hyn8ce","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085598-wvwvxzpc8\"}]","start":"2026-04-15T12:20:00.000Z","end":"2026-04-15T12:40:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5736\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-68axha945","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085601-nak0ysk4m\"}]","start":"2026-04-20T16:40:00.000Z","end":"2026-04-20T17:00:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7792\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-jqif54tct","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085618-e4kxqzr24\"}]","start":"2026-05-13T16:20:00.000Z","end":"2026-05-13T16:40:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-7134\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-vpp2yj549","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085532-rlub3b1t7\"}]","start":"2026-01-12T21:00:00.000Z","end":"2026-01-12T21:20:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2960\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-2uopjdjx7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085532-wb8f17amq\"}]","start":"2026-01-13T14:20:00.000Z","end":"2026-01-13T14:40:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5047\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-w246gpiq9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085588-99jqmj978\"}]","start":"2026-03-31T17:20:00.000Z","end":"2026-03-31T17:40:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5337\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-mix46ae7r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085513-trvxmk3zz\"}]","start":"2025-12-22T20:00:00.000Z","end":"2025-12-22T20:20:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3500\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-uk5s3cr92","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085589-2cc4uvjzt\"}]","start":"2026-04-02T14:00:00.000Z","end":"2026-04-02T14:20:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-2778\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086109-6l9oi6t7d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085557-ychb0fpnh\"}]","start":"2026-02-17T14:00:00.000Z","end":"2026-02-17T14:20:00.000Z","created":"2025-12-12T05:24:46.109Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7972\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-0qhum2sg2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085517-wu2uwpwq0\"}]","start":"2025-12-26T18:00:00.000Z","end":"2025-12-26T18:20:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-2233\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-aqsxv7oga","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085570-rjxh6fu4b\"}]","start":"2026-03-05T21:40:00.000Z","end":"2026-03-05T22:00:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7472\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-hmzb6te1x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085570-qvp5umyvq\"}]","start":"2026-03-06T14:40:00.000Z","end":"2026-03-06T15:00:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4227\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-qt1mg88jr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085615-bdi3tetmx\"}]","start":"2026-05-08T12:40:00.000Z","end":"2026-05-08T13:00:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6384\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-j0jcop6by","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085520-c9kzhoi8v\"}]","start":"2025-12-31T19:00:00.000Z","end":"2025-12-31T19:20:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2501\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-uag82i9us","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085599-uojlbj6di\"}]","start":"2026-04-16T15:40:00.000Z","end":"2026-04-16T16:00:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4720\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-1bobmf3vi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085557-hhrb87t8j\"}]","start":"2026-02-17T15:40:00.000Z","end":"2026-02-17T16:00:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6715\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-znj54yoig","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085636-8y4avulti\"}]","start":"2026-06-08T20:00:00.000Z","end":"2026-06-08T20:20:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5142\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-fbn2bjpj3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085560-0tmxuxz0m\"}]","start":"2026-02-19T20:20:00.000Z","end":"2026-02-19T20:40:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7212\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086110-dzhto9xd9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085578-gc6gn7ijd\"}]","start":"2026-03-16T20:20:00.000Z","end":"2026-03-16T20:40:00.000Z","created":"2025-12-12T05:24:46.110Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5183\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086112-a0awi6ard","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085617-o0ayer0eg\"}]","start":"2026-05-12T12:00:00.000Z","end":"2026-05-12T12:20:00.000Z","created":"2025-12-12T05:24:46.112Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3437\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.112Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086112-vlhzka870","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085585-m4alu8boa\"}]","start":"2026-03-25T16:20:00.000Z","end":"2026-03-25T16:40:00.000Z","created":"2025-12-12T05:24:46.112Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3561\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.112Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086112-a00r0rhnq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085573-pxog92zs7\"}]","start":"2026-03-09T18:40:00.000Z","end":"2026-03-09T19:00:00.000Z","created":"2025-12-12T05:24:46.112Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7894\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.112Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-zibl04jib","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085557-6dnl4u022\"}]","start":"2026-02-17T14:40:00.000Z","end":"2026-02-17T15:00:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5442\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-nea8k0hmr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085518-o6qgc0ey2\"}]","start":"2025-12-26T21:40:00.000Z","end":"2025-12-26T22:00:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7073\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-crojhxryy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085511-2unsac5h2\"}]","start":"2025-12-17T16:40:00.000Z","end":"2025-12-17T17:00:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-6096\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-ql2vbzyzo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085546-b050erd01\"}]","start":"2026-01-29T21:20:00.000Z","end":"2026-01-29T21:40:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5939\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-vexgy3xt8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085546-om4ruz30z\"}]","start":"2026-01-30T18:40:00.000Z","end":"2026-01-30T19:00:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-8276\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-5jwn8efgz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085605-s2duv3dgo\"}]","start":"2026-04-24T20:00:00.000Z","end":"2026-04-24T20:20:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9049\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-eqg8npyx5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085537-3165i227u\"}]","start":"2026-01-20T13:20:00.000Z","end":"2026-01-20T13:40:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-2552\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-hn3gzrhjv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085630-4m3520go3\"}]","start":"2026-05-29T17:20:00.000Z","end":"2026-05-29T17:40:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2005\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-3lmjdoh6y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085597-62pk3dlyn\"}]","start":"2026-04-13T14:00:00.000Z","end":"2026-04-13T14:20:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8408\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-3ku6mngkr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085598-8y21w2ene\"}]","start":"2026-04-15T14:40:00.000Z","end":"2026-04-15T15:00:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4590\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-zs7rox06r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085568-qjtk7nfph\"}]","start":"2026-03-04T13:40:00.000Z","end":"2026-03-04T14:00:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4222\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-6267g0pgc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085537-9zar29apx\"}]","start":"2026-01-20T18:00:00.000Z","end":"2026-01-20T18:20:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1317\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086113-ls00pofm6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085606-ckw6ih0q6\"}]","start":"2026-04-27T14:40:00.000Z","end":"2026-04-27T15:00:00.000Z","created":"2025-12-12T05:24:46.113Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7615\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-165do9kqm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085586-gk96h3yr6\"}]","start":"2026-03-27T13:20:00.000Z","end":"2026-03-27T13:40:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2837\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-ovadm500f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085579-1k1hfg6ac\"}]","start":"2026-03-18T13:20:00.000Z","end":"2026-03-18T13:40:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8687\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-8q3bxbtxq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085603-58n7y9i9m\"}]","start":"2026-04-21T20:20:00.000Z","end":"2026-04-21T20:40:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9291\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-xij5mwmnx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085589-9y3m9pfu2\"}]","start":"2026-04-02T16:00:00.000Z","end":"2026-04-02T16:20:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3804\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-ir5a8k38f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085521-hmurdyifp\"}]","start":"2026-01-01T19:00:00.000Z","end":"2026-01-01T19:20:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4291\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-azta551g1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085557-xd7f23nbu\"}]","start":"2026-02-17T14:20:00.000Z","end":"2026-02-17T14:40:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2323\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-c5q0wjq1m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085555-6z1apa3ly\"}]","start":"2026-02-13T13:20:00.000Z","end":"2026-02-13T13:40:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5685\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-uzx5zkbjj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085554-qos93rxdi\"}]","start":"2026-02-12T17:40:00.000Z","end":"2026-02-12T18:00:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3159\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-6cwz0nlbu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085539-e9nsaveuk\"}]","start":"2026-01-22T13:20:00.000Z","end":"2026-01-22T13:40:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4514\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-gaauwnoyq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085562-3tclpfs6p\"}]","start":"2026-02-24T14:20:00.000Z","end":"2026-02-24T14:40:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9287\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-9aww8wigr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085530-mrzgj5hfb\"}]","start":"2026-01-12T14:40:00.000Z","end":"2026-01-12T15:00:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4313\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086114-idqc67zff","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085556-wam868ik6\"}]","start":"2026-02-16T20:40:00.000Z","end":"2026-02-16T21:00:00.000Z","created":"2025-12-12T05:24:46.114Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-7453\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-fp4t5ueso","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085577-rfq40w580\"}]","start":"2026-03-16T14:40:00.000Z","end":"2026-03-16T15:00:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2243\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-5hicoye35","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085574-t3skzhhtg\"}]","start":"2026-03-11T16:20:00.000Z","end":"2026-03-11T16:40:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6908\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-hod5pe3f9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085575-hmibl8a5s\"}]","start":"2026-03-12T15:00:00.000Z","end":"2026-03-12T15:20:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9045\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-uwc0cuwqy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085616-7bs0jjfp3\"}]","start":"2026-05-08T16:20:00.000Z","end":"2026-05-08T16:40:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2414\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-587ulij39","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085561-bn2m7bzzx\"}]","start":"2026-02-20T20:40:00.000Z","end":"2026-02-20T21:00:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-1451\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-7a1khrrbh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085629-tija12zn7\"}]","start":"2026-05-28T15:20:00.000Z","end":"2026-05-28T15:40:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2047\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-z9wdlgw5v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085509-utnru5ns0\"}]","start":"2025-12-15T18:20:00.000Z","end":"2025-12-15T18:40:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2284\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-0xvhmcvyw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085570-adoslucgy\"}]","start":"2026-03-06T15:00:00.000Z","end":"2026-03-06T15:20:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2288\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-9fobo43ob","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085519-anho9bp1q\"}]","start":"2025-12-30T15:20:00.000Z","end":"2025-12-30T15:40:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8418\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-8k28p1vdi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085544-es1rx4zs5\"}]","start":"2026-01-29T15:20:00.000Z","end":"2026-01-29T15:40:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5463\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-hmawys41e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085594-sxqqm57ix\"}]","start":"2026-04-08T19:40:00.000Z","end":"2026-04-08T20:00:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3023\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086115-yr8wgcbnz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085587-zp8vi11e7\"}]","start":"2026-03-31T13:00:00.000Z","end":"2026-03-31T13:20:00.000Z","created":"2025-12-12T05:24:46.115Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-2843\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-nz3czc85y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085576-xfcp5qd4e\"}]","start":"2026-03-16T13:20:00.000Z","end":"2026-03-16T13:40:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6195\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-ivjew81dp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085597-jirnqay2t\"}]","start":"2026-04-13T15:20:00.000Z","end":"2026-04-13T15:40:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2334\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-9szz1h0f7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085550-zhay0l5z7\"}]","start":"2026-02-06T19:00:00.000Z","end":"2026-02-06T19:20:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5997\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-hoznt8y98","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085600-fhs1pq683\"}]","start":"2026-04-17T18:00:00.000Z","end":"2026-04-17T18:20:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8805\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-tahx708tv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085635-lnif14bj5\"}]","start":"2026-06-05T14:20:00.000Z","end":"2026-06-05T14:40:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7828\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-5inhcgsg4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085522-9fknr7cqy\"}]","start":"2026-01-02T17:00:00.000Z","end":"2026-01-02T17:20:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8087\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-3p2qwz3jv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085554-kqfzq78g7\"}]","start":"2026-02-11T18:00:00.000Z","end":"2026-02-11T18:20:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2145\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-irinc2xed","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085602-o3kygux9u\"}]","start":"2026-04-21T15:20:00.000Z","end":"2026-04-21T15:40:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8467\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-ohdzxt894","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085541-xkypp25ns\"}]","start":"2026-01-23T13:20:00.000Z","end":"2026-01-23T13:40:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1985\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-xfpafci4t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085556-2ycoq182u\"}]","start":"2026-02-16T20:00:00.000Z","end":"2026-02-16T20:20:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9191\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-utthegm0l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085589-va06v6y3s\"}]","start":"2026-04-01T18:40:00.000Z","end":"2026-04-01T19:00:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4102\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086116-vtahk7lb7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085593-dfs4s96ri\"}]","start":"2026-04-07T15:40:00.000Z","end":"2026-04-07T16:00:00.000Z","created":"2025-12-12T05:24:46.116Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3873\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-swssn0kvp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085535-efdq9ot95\"}]","start":"2026-01-16T17:00:00.000Z","end":"2026-01-16T17:20:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-4805\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-rltmvckyp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085549-y2r38wqu2\"}]","start":"2026-02-05T13:40:00.000Z","end":"2026-02-05T14:00:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6816\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-w19luqf2q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085592-vwzop366r\"}]","start":"2026-04-06T16:40:00.000Z","end":"2026-04-06T17:00:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1000\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-a66e33m0i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085628-5768ov1e5\"}]","start":"2026-05-27T13:00:00.000Z","end":"2026-05-27T13:20:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7160\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-jj34k10zp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085580-3y9rgtibf\"}]","start":"2026-03-19T15:20:00.000Z","end":"2026-03-19T15:40:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6366\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-103dhf2sq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085529-t1v8716mx\"}]","start":"2026-01-08T18:00:00.000Z","end":"2026-01-08T18:20:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7348\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-3wcx4pjf0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085547-96mzwtrcq\"}]","start":"2026-02-02T18:20:00.000Z","end":"2026-02-02T18:40:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9517\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-lglcnj1hc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085585-2ssu6pp8x\"}]","start":"2026-03-25T20:20:00.000Z","end":"2026-03-25T20:40:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1712\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-kw2o227xi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085553-yccnw19bc\"}]","start":"2026-02-10T17:40:00.000Z","end":"2026-02-10T18:00:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-5757\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-4bwdi2zjl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085560-pzr1s0gvo\"}]","start":"2026-02-20T16:20:00.000Z","end":"2026-02-20T16:40:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2680\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-r8pp36way","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085605-udbw4kbw4\"}]","start":"2026-04-23T19:40:00.000Z","end":"2026-04-23T20:00:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1803\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-5v229a1xe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085529-17gqkxsz9\"}]","start":"2026-01-09T17:40:00.000Z","end":"2026-01-09T18:00:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-3407\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086117-r7vv3v7mr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085521-cltj1ibjx\"}]","start":"2026-01-01T21:00:00.000Z","end":"2026-01-01T21:20:00.000Z","created":"2025-12-12T05:24:46.117Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5599\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-lem7d2frb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-1tdj4u5ua\"}]","start":"2026-05-05T15:20:00.000Z","end":"2026-05-05T15:40:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-4776\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-3ietkjat1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-8hulxx3gt\"}]","start":"2026-04-06T20:20:00.000Z","end":"2026-04-06T20:40:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5825\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-oy6cfjwfg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085601-rc0c40b8x\"}]","start":"2026-04-20T16:20:00.000Z","end":"2026-04-20T16:40:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8733\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-jl37fq8h2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085512-ogu7xy1we\"}]","start":"2025-12-18T21:40:00.000Z","end":"2025-12-18T22:00:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8094\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-bvi4ncbye","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085635-avc83rsps\"}]","start":"2026-06-05T15:00:00.000Z","end":"2026-06-05T15:20:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5817\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-m15drxdmh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085530-glnw61bmh\"}]","start":"2026-01-12T19:00:00.000Z","end":"2026-01-12T19:20:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2717\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-miaepncg9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085548-5lu4tp6ng\"}]","start":"2026-02-03T18:20:00.000Z","end":"2026-02-03T18:40:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7070\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-8c3dwa7ce","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085522-vt5id29up\"}]","start":"2026-01-02T16:20:00.000Z","end":"2026-01-02T16:40:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4917\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-4exg8hg9y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085542-acrwzctjd\"}]","start":"2026-01-26T14:20:00.000Z","end":"2026-01-26T14:40:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6393\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-vvmzysz7b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085579-g3p65gmbw\"}]","start":"2026-03-18T12:00:00.000Z","end":"2026-03-18T12:20:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7705\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-zdqo97bmt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085630-24qf7fqm5\"}]","start":"2026-05-29T15:40:00.000Z","end":"2026-05-29T16:00:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8018\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086118-99px58vcw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085559-k2933es50\"}]","start":"2026-02-18T14:00:00.000Z","end":"2026-02-18T14:20:00.000Z","created":"2025-12-12T05:24:46.118Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8486\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-926sn6xxe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085576-271w78v1l\"}]","start":"2026-03-13T17:20:00.000Z","end":"2026-03-13T17:40:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6302\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-0lucjh3bu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085567-fugtx6k5k\"}]","start":"2026-03-02T18:40:00.000Z","end":"2026-03-02T19:00:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4624\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-2ffqrkysj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085585-zl3edhxjw\"}]","start":"2026-03-26T17:00:00.000Z","end":"2026-03-26T17:20:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7966\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-e7rlfy437","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085550-478ffixhl\"}]","start":"2026-02-06T14:00:00.000Z","end":"2026-02-06T14:20:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1832\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-9a3d76z2d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085534-i96qyuy01\"}]","start":"2026-01-15T14:00:00.000Z","end":"2026-01-15T14:20:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8321\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-c2jotofbd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085610-rau5q1h48\"}]","start":"2026-04-30T15:00:00.000Z","end":"2026-04-30T15:20:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1293\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-y2zjk06l5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085597-qzaoh2ycb\"}]","start":"2026-04-13T20:40:00.000Z","end":"2026-04-13T21:00:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5995\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-j18rna0or","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085552-q0b747qhj\"}]","start":"2026-02-09T19:40:00.000Z","end":"2026-02-09T20:00:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6702\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-4y9t2bi2j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085613-xkkcf0wfy\"}]","start":"2026-05-06T12:40:00.000Z","end":"2026-05-06T13:00:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5329\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-3yxytjkxj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085605-i5bo5njm8\"}]","start":"2026-04-24T16:00:00.000Z","end":"2026-04-24T16:20:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4173\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-oichj66ns","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085609-rra8iaik9\"}]","start":"2026-04-29T18:40:00.000Z","end":"2026-04-29T19:00:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5327\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-mo5ii2pib","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085503-on19yne9u\"}]","start":"2025-12-15T13:20:00.000Z","end":"2025-12-15T13:40:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5222\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086119-fn909z1pl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085514-gubui17w1\"}]","start":"2025-12-23T19:40:00.000Z","end":"2025-12-23T20:00:00.000Z","created":"2025-12-12T05:24:46.119Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5522\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-m56fvpzmt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085513-cy6lqq8s2\"}]","start":"2025-12-19T19:40:00.000Z","end":"2025-12-19T20:00:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6308\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-iidjhb5wh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085569-nhi7wwbc3\"}]","start":"2026-03-04T16:40:00.000Z","end":"2026-03-04T17:00:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1142\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-95224ofhd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085517-fbp7j5ez4\"}]","start":"2025-12-26T16:40:00.000Z","end":"2025-12-26T17:00:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-5012\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-tb1qfp0yc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085523-gdtrp74gw\"}]","start":"2026-01-05T15:00:00.000Z","end":"2026-01-05T15:20:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8055\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-yyphifrj9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085633-bnws9ed59\"}]","start":"2026-06-04T16:40:00.000Z","end":"2026-06-04T17:00:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3968\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-68kzh2psm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085603-26y8f0yrh\"}]","start":"2026-04-21T18:40:00.000Z","end":"2026-04-21T19:00:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4108\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-e9bunuoq5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085623-y33ptfkee\"}]","start":"2026-05-20T14:20:00.000Z","end":"2026-05-20T14:40:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5001\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-akoo9soc7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085553-pdkw3n3k1\"}]","start":"2026-02-10T17:00:00.000Z","end":"2026-02-10T17:20:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5373\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-a6sn84hoh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085631-t3f1r9aez\"}]","start":"2026-06-01T15:20:00.000Z","end":"2026-06-01T15:40:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7143\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-edbdll620","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085555-m5i8e3fbp\"}]","start":"2026-02-12T21:20:00.000Z","end":"2026-02-12T21:40:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3542\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-9bagupg25","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085600-b6mv3vson\"}]","start":"2026-04-17T18:40:00.000Z","end":"2026-04-17T19:00:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-8903\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-0ur4sqprb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085528-dtdef71e2\"}]","start":"2026-01-07T19:20:00.000Z","end":"2026-01-07T19:40:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5189\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086120-kew5z2p7o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085605-mpo7p7hbw\"}]","start":"2026-04-27T13:00:00.000Z","end":"2026-04-27T13:20:00.000Z","created":"2025-12-12T05:24:46.120Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3292\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086121-5074rmg0i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085528-o6bdrsgyl\"}]","start":"2026-01-08T13:00:00.000Z","end":"2026-01-08T13:20:00.000Z","created":"2025-12-12T05:24:46.121Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3555\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086121-jgvzma3gi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085546-oqaao916k\"}]","start":"2026-01-30T14:20:00.000Z","end":"2026-01-30T14:40:00.000Z","created":"2025-12-12T05:24:46.121Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2984\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086121-g4ro59t4b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085614-neafyexc5\"}]","start":"2026-05-06T18:40:00.000Z","end":"2026-05-06T19:00:00.000Z","created":"2025-12-12T05:24:46.121Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1830\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086121-kh2ytek11","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085587-gjcge5t35\"}]","start":"2026-03-31T14:20:00.000Z","end":"2026-03-31T14:40:00.000Z","created":"2025-12-12T05:24:46.121Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8181\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086121-d6tvd11e8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085636-gu3w8yi5x\"}]","start":"2026-06-08T18:40:00.000Z","end":"2026-06-08T19:00:00.000Z","created":"2025-12-12T05:24:46.121Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1774\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086121-uwzylwtmt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085603-8w2bhzk9e\"}]","start":"2026-04-22T16:20:00.000Z","end":"2026-04-22T16:40:00.000Z","created":"2025-12-12T05:24:46.121Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8418\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086121-4689hmxhg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085606-87od9oy8h\"}]","start":"2026-04-27T17:40:00.000Z","end":"2026-04-27T18:00:00.000Z","created":"2025-12-12T05:24:46.121Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1910\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086123-16tixod9m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085567-gd7dbmqfx\"}]","start":"2026-03-02T21:40:00.000Z","end":"2026-03-02T22:00:00.000Z","created":"2025-12-12T05:24:46.123Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1847\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086123-4k5gv0e1z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-qf4505s1u\"}]","start":"2025-12-23T17:20:00.000Z","end":"2025-12-23T17:40:00.000Z","created":"2025-12-12T05:24:46.123Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-2205\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086123-e81tgibj9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085587-3sjrat247\"}]","start":"2026-03-30T12:40:00.000Z","end":"2026-03-30T13:00:00.000Z","created":"2025-12-12T05:24:46.123Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8704\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086123-jvyddni9k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085629-qm2evzie9\"}]","start":"2026-05-28T12:20:00.000Z","end":"2026-05-28T12:40:00.000Z","created":"2025-12-12T05:24:46.123Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-4162\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086123-ts1t0bo9c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085625-0dwtc0vh3\"}]","start":"2026-05-21T17:40:00.000Z","end":"2026-05-21T18:00:00.000Z","created":"2025-12-12T05:24:46.123Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8780\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086123-wck1bt5f1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085512-a12n8wktv\"}]","start":"2025-12-19T16:20:00.000Z","end":"2025-12-19T16:40:00.000Z","created":"2025-12-12T05:24:46.123Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8243\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-16ryt57lp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085589-49u6jsdrq\"}]","start":"2026-04-02T12:40:00.000Z","end":"2026-04-02T13:00:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-9065\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-2we0acqxv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085567-m3gwkso9g\"}]","start":"2026-03-02T18:00:00.000Z","end":"2026-03-02T18:20:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2225\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-bfcyy9tma","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085601-x6bd2okp6\"}]","start":"2026-04-20T17:00:00.000Z","end":"2026-04-20T17:20:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5862\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-uvpdux466","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085593-huofb3eye\"}]","start":"2026-04-08T13:00:00.000Z","end":"2026-04-08T13:20:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1114\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-ial529tn0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085580-phfo2ymxi\"}]","start":"2026-03-19T13:20:00.000Z","end":"2026-03-19T13:40:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5551\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-zh4swtzp5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085513-f0e37uybo\"}]","start":"2025-12-22T18:00:00.000Z","end":"2025-12-22T18:20:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7315\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-jdwsdgc8l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085547-pous3w9x3\"}]","start":"2026-02-02T20:00:00.000Z","end":"2026-02-02T20:20:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4866\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-vrjac43cy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085579-y2ydfj45g\"}]","start":"2026-03-18T17:00:00.000Z","end":"2026-03-18T17:20:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9954\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-gv7jwviy3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085585-ttl86461a\"}]","start":"2026-03-26T15:00:00.000Z","end":"2026-03-26T15:20:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-2465\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-xcki31xr5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085510-6wbwxh86k\"}]","start":"2025-12-16T15:00:00.000Z","end":"2025-12-16T15:20:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5015\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-wcu8az9vj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085581-m1201jnfo\"}]","start":"2026-03-20T12:40:00.000Z","end":"2026-03-20T13:00:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-8151\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-pnhtnpuuw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085530-v11fid6lb\"}]","start":"2026-01-09T19:40:00.000Z","end":"2026-01-09T20:00:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-5299\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086124-c1gwprssi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085612-msp9qez3g\"}]","start":"2026-05-04T20:20:00.000Z","end":"2026-05-04T20:40:00.000Z","created":"2025-12-12T05:24:46.124Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8926\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-y4dclplhh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085575-ahh9c7n3c\"}]","start":"2026-03-11T18:40:00.000Z","end":"2026-03-11T19:00:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-5580\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-voxnr3z67","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085536-hsw04y35a\"}]","start":"2026-01-19T21:00:00.000Z","end":"2026-01-19T21:20:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7635\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-oe1eodyl4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085578-l1gdi2u52\"}]","start":"2026-03-17T14:00:00.000Z","end":"2026-03-17T14:20:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7474\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-3w365z9kf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085513-9bfeu3wd4\"}]","start":"2025-12-22T16:20:00.000Z","end":"2025-12-22T16:40:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9218\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-9slhqxzwn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085586-zfkl57fli\"}]","start":"2026-03-27T19:00:00.000Z","end":"2026-03-27T19:20:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4309\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-kwkex9i6v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085561-5df21wy55\"}]","start":"2026-02-20T18:40:00.000Z","end":"2026-02-20T19:00:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3883\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-s7p60dv1s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085528-6yagoczlm\"}]","start":"2026-01-08T13:40:00.000Z","end":"2026-01-08T14:00:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8311\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-85dwjd29a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085621-ui5c49hrx\"}]","start":"2026-05-18T13:40:00.000Z","end":"2026-05-18T14:00:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6905\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-b0mfdn9ki","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085594-744nqfkq6\"}]","start":"2026-04-09T17:40:00.000Z","end":"2026-04-09T18:00:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5287\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-oo4qj4p62","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085637-5b7b91cb0\"}]","start":"2026-06-09T16:00:00.000Z","end":"2026-06-09T16:20:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9403\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-q3ekqgriv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085577-1mm9bcw6o\"}]","start":"2026-03-16T16:00:00.000Z","end":"2026-03-16T16:20:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2654\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-edv3j8qsz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085582-fw9zhu711\"}]","start":"2026-03-23T15:40:00.000Z","end":"2026-03-23T16:00:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3955\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086125-5d20uyu2c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085529-3i3n7h7l4\"}]","start":"2026-01-08T20:20:00.000Z","end":"2026-01-08T20:40:00.000Z","created":"2025-12-12T05:24:46.125Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1839\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-l3sfm6ddx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085554-v8hb41oye\"}]","start":"2026-02-12T16:00:00.000Z","end":"2026-02-12T16:20:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-9096\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-td22p8n7w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085529-wyxiddmic\"}]","start":"2026-01-08T18:40:00.000Z","end":"2026-01-08T19:00:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4280\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-uhf9ins0u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085514-a9moaybfs\"}]","start":"2025-12-23T16:20:00.000Z","end":"2025-12-23T16:40:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4629\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-66h2gpm3n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085548-8jnf7r0as\"}]","start":"2026-02-04T15:40:00.000Z","end":"2026-02-04T16:00:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5637\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-wa3jv4byn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085631-ldintw31q\"}]","start":"2026-06-01T18:00:00.000Z","end":"2026-06-01T18:20:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1739\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-o8frp7i93","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085587-42a5nc6rk\"}]","start":"2026-03-30T17:00:00.000Z","end":"2026-03-30T17:20:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-3606\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-qnkjuzdha","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085635-moo3j0fg3\"}]","start":"2026-06-04T20:40:00.000Z","end":"2026-06-04T21:00:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1645\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-clrgzfr4j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085554-csij7msd2\"}]","start":"2026-02-12T13:00:00.000Z","end":"2026-02-12T13:20:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-4123\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-r3vdzldss","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085548-jvbfvzhrt\"}]","start":"2026-02-04T13:40:00.000Z","end":"2026-02-04T14:00:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-7504\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-mxx5zm20h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085619-pgl1484ij\"}]","start":"2026-05-13T18:20:00.000Z","end":"2026-05-13T18:40:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4168\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-qoytybapb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085597-k4kxhi015\"}]","start":"2026-04-13T15:40:00.000Z","end":"2026-04-13T16:00:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8339\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086126-qu1dptbp4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085627-4nzhaxkwu\"}]","start":"2026-05-26T17:40:00.000Z","end":"2026-05-26T18:00:00.000Z","created":"2025-12-12T05:24:46.126Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5016\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-v9lxadxkw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085575-h1naehh3h\"}]","start":"2026-03-12T16:00:00.000Z","end":"2026-03-12T16:20:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9928\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-noxhxl3st","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085510-d608k6uzs\"}]","start":"2025-12-16T21:00:00.000Z","end":"2025-12-16T21:20:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5335\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-a1k112g09","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085632-swhmkm92v\"}]","start":"2026-06-03T12:00:00.000Z","end":"2026-06-03T12:20:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-9210\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-y1dotbd1b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085599-fyvp7ej3r\"}]","start":"2026-04-16T13:00:00.000Z","end":"2026-04-16T13:20:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9418\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-n0l4anvui","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085617-tx9c45tlk\"}]","start":"2026-05-11T18:20:00.000Z","end":"2026-05-11T18:40:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1551\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-m0x7e7sw3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085617-7nhfpevtl\"}]","start":"2026-05-11T20:40:00.000Z","end":"2026-05-11T21:00:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-3260\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-h1bclmh9l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085593-dfbk6m2oa\"}]","start":"2026-04-08T15:00:00.000Z","end":"2026-04-08T15:20:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8048\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-eavd4rnxu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085580-kpqper5t8\"}]","start":"2026-03-19T16:40:00.000Z","end":"2026-03-19T17:00:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2782\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-zf9xkjgrb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085595-ht60151e8\"}]","start":"2026-04-10T15:40:00.000Z","end":"2026-04-10T16:00:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3544\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-gr3jmrr69","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085614-yp4ujxnr9\"}]","start":"2026-05-07T16:00:00.000Z","end":"2026-05-07T16:20:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1366\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-cocgiu9pp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085587-7mt289y24\"}]","start":"2026-03-30T14:20:00.000Z","end":"2026-03-30T14:40:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8002\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-dadmr8cq9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085516-twm45xuf5\"}]","start":"2025-12-25T16:20:00.000Z","end":"2025-12-25T16:40:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6833\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086127-r9tiadqb7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085548-8hsms6gny\"}]","start":"2026-02-03T15:20:00.000Z","end":"2026-02-03T15:40:00.000Z","created":"2025-12-12T05:24:46.127Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1599\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086128-nd7l417jx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085520-hono6tu99\"}]","start":"2025-12-31T18:20:00.000Z","end":"2025-12-31T18:40:00.000Z","created":"2025-12-12T05:24:46.128Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9208\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086128-xvzpbgfm7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085543-8p8yupt6b\"}]","start":"2026-01-27T15:40:00.000Z","end":"2026-01-27T16:00:00.000Z","created":"2025-12-12T05:24:46.128Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4014\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086128-nkxcp05mu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085586-zkifzr412\"}]","start":"2026-03-27T17:20:00.000Z","end":"2026-03-27T17:40:00.000Z","created":"2025-12-12T05:24:46.128Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9958\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086128-0j59zwf0d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085619-5swhj4ti5\"}]","start":"2026-05-14T18:40:00.000Z","end":"2026-05-14T19:00:00.000Z","created":"2025-12-12T05:24:46.128Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-3675\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086128-5cu5web7f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085627-t8ahpzxwt\"}]","start":"2026-05-26T13:40:00.000Z","end":"2026-05-26T14:00:00.000Z","created":"2025-12-12T05:24:46.128Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3578\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086131-nnhz3tgot","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085611-cr3w9nt94\"}]","start":"2026-05-01T12:20:00.000Z","end":"2026-05-01T12:40:00.000Z","created":"2025-12-12T05:24:46.131Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3438\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.131Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086131-bic2li2s4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085539-p6oot15pc\"}]","start":"2026-01-21T18:00:00.000Z","end":"2026-01-21T18:20:00.000Z","created":"2025-12-12T05:24:46.131Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7253\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.131Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-xzurxbhgl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085519-n2mq8cqu6\"}]","start":"2025-12-30T16:20:00.000Z","end":"2025-12-30T16:40:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5964\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-sdsc5a107","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085575-o3o0qsw4z\"}]","start":"2026-03-11T20:00:00.000Z","end":"2026-03-11T20:20:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1141\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-kq19fdd2d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085574-vkcyp8sat\"}]","start":"2026-03-10T18:00:00.000Z","end":"2026-03-10T18:20:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8367\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-0icqu4h9f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085582-kgbs7qcqr\"}]","start":"2026-03-23T19:20:00.000Z","end":"2026-03-23T19:40:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-1502\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-ir9xrrxzi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085527-ahhdwzf4e\"}]","start":"2026-01-06T19:20:00.000Z","end":"2026-01-06T19:40:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8705\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-fyov5ysax","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085592-i8bs360do\"}]","start":"2026-04-06T13:40:00.000Z","end":"2026-04-06T14:00:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5519\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-4iq8c5ns9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085569-8lxp7ts5d\"}]","start":"2026-03-04T18:20:00.000Z","end":"2026-03-04T18:40:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-2676\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-u92x6w6fr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085529-wxhd4niyl\"}]","start":"2026-01-08T15:40:00.000Z","end":"2026-01-08T16:00:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-7176\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-2aa0qjk2r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085542-jwi9r5r7p\"}]","start":"2026-01-27T13:40:00.000Z","end":"2026-01-27T14:00:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4592\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-u3mr4pfn2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085523-jtpl99kc3\"}]","start":"2026-01-02T19:40:00.000Z","end":"2026-01-02T20:00:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9056\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-y305cj8kd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085599-2bii0umdr\"}]","start":"2026-04-15T20:20:00.000Z","end":"2026-04-15T20:40:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6630\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086132-il7q7xzpp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085582-8f45o476q\"}]","start":"2026-03-23T14:40:00.000Z","end":"2026-03-23T15:00:00.000Z","created":"2025-12-12T05:24:46.132Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7951\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-ogyumz2cf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085633-9qe06hgzw\"}]","start":"2026-06-03T18:40:00.000Z","end":"2026-06-03T19:00:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7215\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-qezzsh3yj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085591-1tudz8fgb\"}]","start":"2026-04-03T19:20:00.000Z","end":"2026-04-03T19:40:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1801\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-1yug7h8il","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085568-punhb7yzq\"}]","start":"2026-03-03T21:20:00.000Z","end":"2026-03-03T21:40:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3004\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-xec7k51h1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085617-yabneipab\"}]","start":"2026-05-11T12:20:00.000Z","end":"2026-05-11T12:40:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6541\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-vbj5j30ld","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085564-35rt3l97n\"}]","start":"2026-02-26T13:00:00.000Z","end":"2026-02-26T13:20:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1409\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-v0u49ckjl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085597-2tjqsw7u4\"}]","start":"2026-04-13T16:20:00.000Z","end":"2026-04-13T16:40:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5257\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-wvjxfhzrf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085557-z3mzc9ywi\"}]","start":"2026-02-17T15:00:00.000Z","end":"2026-02-17T15:20:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5464\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-pm7dyfyhn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085569-g38mf8iek\"}]","start":"2026-03-05T18:00:00.000Z","end":"2026-03-05T18:20:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1988\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-yx99zu9sp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085594-1q6gnnbbm\"}]","start":"2026-04-09T16:20:00.000Z","end":"2026-04-09T16:40:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-2760\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-66p5pobz6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085513-iclni1l0s\"}]","start":"2025-12-19T20:40:00.000Z","end":"2025-12-19T21:00:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-5487\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-id9150o76","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085603-vlspn31y6\"}]","start":"2026-04-22T15:40:00.000Z","end":"2026-04-22T16:00:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1556\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086133-rk7r3j1rv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085636-f1hgwgjq3\"}]","start":"2026-06-08T12:40:00.000Z","end":"2026-06-08T13:00:00.000Z","created":"2025-12-12T05:24:46.133Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2904\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-yrom3r2ug","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085579-0e9yghvg0\"}]","start":"2026-03-17T16:40:00.000Z","end":"2026-03-17T17:00:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1068\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-jb0aafh0v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085559-sqawv109x\"}]","start":"2026-02-18T17:00:00.000Z","end":"2026-02-18T17:20:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9251\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-b3x64wcoi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085595-ypyf5s9pc\"}]","start":"2026-04-10T14:00:00.000Z","end":"2026-04-10T14:20:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3872\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-d96dboj1v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085510-qf62qezb4\"}]","start":"2025-12-15T19:40:00.000Z","end":"2025-12-15T20:00:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3200\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-5q1htsb9w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085595-lj70e18yl\"}]","start":"2026-04-09T19:20:00.000Z","end":"2026-04-09T19:40:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-8857\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-ouou152th","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085569-aogwdvq1v\"}]","start":"2026-03-05T14:00:00.000Z","end":"2026-03-05T14:20:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8389\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-eul0a2ia7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085623-7rdzg3kze\"}]","start":"2026-05-19T19:40:00.000Z","end":"2026-05-19T20:00:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-9107\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-0u6zqdn5w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085633-a0jrrwqwt\"}]","start":"2026-06-04T14:20:00.000Z","end":"2026-06-04T14:40:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9597\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-2fi5q9znn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085592-y5vxtsfe9\"}]","start":"2026-04-06T12:00:00.000Z","end":"2026-04-06T12:20:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-3580\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-5zfhqdcn7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085601-43dk4e30l\"}]","start":"2026-04-20T20:00:00.000Z","end":"2026-04-20T20:20:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7624\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-3bnryk7wy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085595-wbrqler6l\"}]","start":"2026-04-10T20:20:00.000Z","end":"2026-04-10T20:40:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2580\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-xvbdmksgo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085568-l3gyvc8ve\"}]","start":"2026-03-03T19:20:00.000Z","end":"2026-03-03T19:40:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3808\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086134-t5fkpknvm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085585-8i586mwbr\"}]","start":"2026-03-26T14:40:00.000Z","end":"2026-03-26T15:00:00.000Z","created":"2025-12-12T05:24:46.134Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-6354\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-44m7zaxtj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085570-w3n86v41w\"}]","start":"2026-03-05T18:40:00.000Z","end":"2026-03-05T19:00:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7340\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-38xeu8z4g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085611-ucqicuncj\"}]","start":"2026-05-01T15:40:00.000Z","end":"2026-05-01T16:00:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2001\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-wk2k02snl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085576-ngnasmutj\"}]","start":"2026-03-13T12:00:00.000Z","end":"2026-03-13T12:20:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7295\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-3ug9ymj47","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085514-gs1cjk345\"}]","start":"2025-12-23T19:00:00.000Z","end":"2025-12-23T19:20:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7512\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-2f932efg1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085587-5fr4hk5y3\"}]","start":"2026-03-30T16:00:00.000Z","end":"2026-03-30T16:20:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-9779\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-jeplckawu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085587-83n9nbyiw\"}]","start":"2026-03-30T18:20:00.000Z","end":"2026-03-30T18:40:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6419\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-z15b199kc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085621-vf7sjicwo\"}]","start":"2026-05-18T14:00:00.000Z","end":"2026-05-18T14:20:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5097\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-vmdnhrkqx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085548-3prlla254\"}]","start":"2026-02-04T13:20:00.000Z","end":"2026-02-04T13:40:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-1566\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-hxe9ap5ce","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085573-f0acmfbxc\"}]","start":"2026-03-09T19:00:00.000Z","end":"2026-03-09T19:20:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4826\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-u91g530je","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085535-ij1v1bkyf\"}]","start":"2026-01-19T14:00:00.000Z","end":"2026-01-19T14:20:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7103\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086135-ynth3phts","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085608-o474f8f3c\"}]","start":"2026-04-28T18:40:00.000Z","end":"2026-04-28T19:00:00.000Z","created":"2025-12-12T05:24:46.135Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-6179\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086137-t9umaxtjb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085582-xqrtb0bul\"}]","start":"2026-03-23T18:40:00.000Z","end":"2026-03-23T19:00:00.000Z","created":"2025-12-12T05:24:46.137Z","comment":"Appointment with Dr. Sarah Smith","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2032\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.137Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086186-tjjjk076s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085686-1qr8zqgzk\"}]","start":"2026-03-05T14:50:00.000Z","end":"2026-03-05T15:15:00.000Z","created":"2025-12-12T05:24:46.186Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9622\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086186-5l8qtg9dz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-ysfs93vl5\"}]","start":"2026-04-07T14:40:00.000Z","end":"2026-04-07T15:05:00.000Z","created":"2025-12-12T05:24:46.186Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3833\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086186-08dsw43ym","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085677-y99sfr98g\"}]","start":"2026-02-13T22:20:00.000Z","end":"2026-02-13T22:45:00.000Z","created":"2025-12-12T05:24:46.186Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-5914\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086186-kx06dy3u7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085667-axn0mxptt\"}]","start":"2026-01-29T20:15:00.000Z","end":"2026-01-29T20:40:00.000Z","created":"2025-12-12T05:24:46.186Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4478\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086186-dxu323y65","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085672-v13oej0u4\"}]","start":"2026-02-09T19:50:00.000Z","end":"2026-02-09T20:15:00.000Z","created":"2025-12-12T05:24:46.186Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3302\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086186-3f2pc4b9w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085671-j0nn0czp0\"}]","start":"2026-02-06T14:00:00.000Z","end":"2026-02-06T14:25:00.000Z","created":"2025-12-12T05:24:46.186Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3365\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086186-672ulv7k5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085647-pn7trdiyc\"}]","start":"2025-12-29T16:05:00.000Z","end":"2025-12-29T16:30:00.000Z","created":"2025-12-12T05:24:46.186Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5266\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-k6g7ta06s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085703-m33qes49b\"}]","start":"2026-04-03T18:25:00.000Z","end":"2026-04-03T18:50:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5204\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-zojxefbcf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085659-fgatdctfi\"}]","start":"2026-01-20T16:05:00.000Z","end":"2026-01-20T16:30:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1647\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-5jo1jcvlf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085669-mq0om426e\"}]","start":"2026-02-02T19:25:00.000Z","end":"2026-02-02T19:50:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7725\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-ia8gr0jy9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085704-1pv4h18wd\"}]","start":"2026-04-07T14:15:00.000Z","end":"2026-04-07T14:40:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9852\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-z7s8bp5m6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085656-u7qechf09\"}]","start":"2026-01-13T15:15:00.000Z","end":"2026-01-13T15:40:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5124\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-k72ilntao","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085695-v55diy5r7\"}]","start":"2026-03-19T13:50:00.000Z","end":"2026-03-19T14:15:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8047\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-k2mo8ni9i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085652-9zyq5fa14\"}]","start":"2026-01-06T19:00:00.000Z","end":"2026-01-06T19:25:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3440\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-jh58jakl2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085691-x8xx0i4dq\"}]","start":"2026-03-12T14:40:00.000Z","end":"2026-03-12T15:05:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3418\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-rj1uoq9cr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085673-i89j7k71h\"}]","start":"2026-02-10T14:50:00.000Z","end":"2026-02-10T15:15:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6475\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-tmxzgantr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085670-zmvw41k0t\"}]","start":"2026-02-04T16:30:00.000Z","end":"2026-02-04T16:55:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6558\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-hu8c8e7t6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085672-u9vc9unge\"}]","start":"2026-02-09T14:00:00.000Z","end":"2026-02-09T14:25:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1995\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-43yooc8yx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085693-4sdwg86ga\"}]","start":"2026-03-18T13:50:00.000Z","end":"2026-03-18T14:15:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7993\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086187-11tr6azh4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085707-6nqld2mdv\"}]","start":"2026-04-10T18:00:00.000Z","end":"2026-04-10T18:25:00.000Z","created":"2025-12-12T05:24:46.187Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8847\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-l91bzb3qf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085718-83hrctdat\"}]","start":"2026-05-01T17:10:00.000Z","end":"2026-05-01T17:35:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-9066\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-skluxp39e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085715-r3wozryt5\"}]","start":"2026-04-28T13:50:00.000Z","end":"2026-04-28T14:15:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-3690\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-k919m28rc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085704-r0z0nc40u\"}]","start":"2026-04-06T19:15:00.000Z","end":"2026-04-06T19:40:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2595\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-0d5yfzk85","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085667-20bl0o6yn\"}]","start":"2026-01-30T19:00:00.000Z","end":"2026-01-30T19:25:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2091\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-znw5suz06","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085703-bc6dkzx8v\"}]","start":"2026-04-03T19:15:00.000Z","end":"2026-04-03T19:40:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1791\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-7r1dljfdt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085715-qnf5dn9m0\"}]","start":"2026-04-28T14:15:00.000Z","end":"2026-04-28T14:40:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-1387\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-q2r7h01b2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085672-qtiwqpksu\"}]","start":"2026-02-06T19:50:00.000Z","end":"2026-02-06T20:15:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7147\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-w7eto8n2w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085704-4p0afu4eb\"}]","start":"2026-04-08T14:15:00.000Z","end":"2026-04-08T14:40:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4099\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-29hywl923","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085697-8uc6d2cxz\"}]","start":"2026-03-24T15:30:00.000Z","end":"2026-03-24T15:55:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2332\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-xb6gxpzcx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085671-7gju2zesb\"}]","start":"2026-02-06T16:30:00.000Z","end":"2026-02-06T16:55:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3431\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-5zsk4y00f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085716-1bbnwcg2a\"}]","start":"2026-04-29T13:00:00.000Z","end":"2026-04-29T13:25:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3276\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-l4v8ajbn8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085704-gisnfqzel\"}]","start":"2026-04-06T19:40:00.000Z","end":"2026-04-06T20:05:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6408\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086188-em3i31l2r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085702-e8ba0n4xl\"}]","start":"2026-04-01T19:15:00.000Z","end":"2026-04-01T19:40:00.000Z","created":"2025-12-12T05:24:46.188Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1773\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-87qp4w7np","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085651-fb56fzpz4\"}]","start":"2026-01-05T16:05:00.000Z","end":"2026-01-05T16:30:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7899\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-sewpu4542","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085715-lztk8qfdq\"}]","start":"2026-04-28T16:45:00.000Z","end":"2026-04-28T17:10:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4534\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-8q6ib2wce","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085670-i4vi9thbw\"}]","start":"2026-02-04T16:05:00.000Z","end":"2026-02-04T16:30:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9041\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-hu7mtrdpd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085653-kd8v2uq6u\"}]","start":"2026-01-07T18:10:00.000Z","end":"2026-01-07T18:35:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1653\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-75z6r7iki","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085681-puv9arnkn\"}]","start":"2026-02-24T17:45:00.000Z","end":"2026-02-24T18:10:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5670\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-mllai5m1i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085716-00zi815dj\"}]","start":"2026-04-30T13:50:00.000Z","end":"2026-04-30T14:15:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4418\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-m6d5q6lmd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085729-ddonhqx5w\"}]","start":"2026-05-22T16:45:00.000Z","end":"2026-05-22T17:10:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9814\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-ctskmeyqw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085656-czx495ts7\"}]","start":"2026-01-13T19:50:00.000Z","end":"2026-01-13T20:15:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-6264\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-aqhnhcpuk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085695-wih33ern4\"}]","start":"2026-03-19T16:20:00.000Z","end":"2026-03-19T16:45:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2933\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-obq248a95","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085657-2m9peij31\"}]","start":"2026-01-14T18:10:00.000Z","end":"2026-01-14T18:35:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2399\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086189-4zmytcgo9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085671-1ngpogfcu\"}]","start":"2026-02-05T18:35:00.000Z","end":"2026-02-05T19:00:00.000Z","created":"2025-12-12T05:24:46.189Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1919\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-b046oupek","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085716-2f6frgwgr\"}]","start":"2026-04-30T13:00:00.000Z","end":"2026-04-30T13:25:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-7940\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-xh9dk3pzv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085694-yko3d1agq\"}]","start":"2026-03-18T18:25:00.000Z","end":"2026-03-18T18:50:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5593\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-4lhql1vbu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085692-q3zf9y7v0\"}]","start":"2026-03-16T13:00:00.000Z","end":"2026-03-16T13:25:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9311\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-78j0jlvw9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085710-0ppugw1l5\"}]","start":"2026-04-17T14:40:00.000Z","end":"2026-04-17T15:05:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2541\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-rglr401zw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085697-muwwomuq7\"}]","start":"2026-03-24T13:25:00.000Z","end":"2026-03-24T13:50:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4252\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-72sdb3031","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085639-doavmka76\"}]","start":"2025-12-16T19:50:00.000Z","end":"2025-12-16T20:15:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-7000\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-bujum9ekp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085656-7pw7ficcq\"}]","start":"2026-01-13T21:30:00.000Z","end":"2026-01-13T21:55:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6001\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-17zomswxr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085721-3q3x93r72\"}]","start":"2026-05-07T18:50:00.000Z","end":"2026-05-07T19:15:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8323\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-8j87jxm4n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085710-tjacky46z\"}]","start":"2026-04-17T19:40:00.000Z","end":"2026-04-17T20:05:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5574\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-4szze5wxh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085682-k1kgz4u1j\"}]","start":"2026-02-24T19:00:00.000Z","end":"2026-02-24T19:25:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8990\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086190-b7quzs3pe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085682-1imkurg7n\"}]","start":"2026-02-25T14:25:00.000Z","end":"2026-02-25T14:50:00.000Z","created":"2025-12-12T05:24:46.190Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4084\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-0lmq7xlwn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085655-ahhqodjz9\"}]","start":"2026-01-09T15:15:00.000Z","end":"2026-01-09T15:40:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1773\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-o7dve5bcr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085678-m0nndzzl6\"}]","start":"2026-02-18T19:00:00.000Z","end":"2026-02-18T19:25:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4891\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-6n8t5sj0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085645-6wgczdbzq\"}]","start":"2025-12-25T16:30:00.000Z","end":"2025-12-25T16:55:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8586\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-rveezu7sy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085682-m5g6jtq5y\"}]","start":"2026-02-25T17:20:00.000Z","end":"2026-02-25T17:45:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3641\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-kg6qz1tud","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085726-ffwh8vbhq\"}]","start":"2026-05-18T18:50:00.000Z","end":"2026-05-18T19:15:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-1101\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-ayfpi8kvb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085653-iuhx1wc29\"}]","start":"2026-01-08T18:10:00.000Z","end":"2026-01-08T18:35:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6252\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-k3t87gqwf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085693-l56w340jx\"}]","start":"2026-03-17T19:15:00.000Z","end":"2026-03-17T19:40:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-5753\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-ibn54hp97","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085652-9iddxe15y\"}]","start":"2026-01-06T22:20:00.000Z","end":"2026-01-06T22:45:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7863\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-vhib0je9u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085644-gjxcqsoqj\"}]","start":"2025-12-24T16:05:00.000Z","end":"2025-12-24T16:30:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4734\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-5tuosfwmz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085716-qbg5j7w32\"}]","start":"2026-04-29T20:30:00.000Z","end":"2026-04-29T20:55:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4878\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-6ezjlc4u0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085717-7f580qraj\"}]","start":"2026-04-30T17:35:00.000Z","end":"2026-04-30T18:00:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3356\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086191-urmsc7qjf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085717-s1xlmracc\"}]","start":"2026-04-30T18:00:00.000Z","end":"2026-04-30T18:25:00.000Z","created":"2025-12-12T05:24:46.191Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4265\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-lwn4e6kb7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-mt1eha68l\"}]","start":"2026-04-07T20:05:00.000Z","end":"2026-04-07T20:30:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-8833\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-ft43do56m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085726-tf3hb7mel\"}]","start":"2026-05-18T13:50:00.000Z","end":"2026-05-18T14:15:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2461\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-9eeb10uv6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085715-1zmi6zvgm\"}]","start":"2026-04-27T15:30:00.000Z","end":"2026-04-27T15:55:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1228\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-ftcccyiei","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085721-ee889dbxw\"}]","start":"2026-05-08T15:55:00.000Z","end":"2026-05-08T16:20:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4178\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-nsiwyhy86","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-3wb09qwta\"}]","start":"2026-04-28T20:30:00.000Z","end":"2026-04-28T20:55:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3706\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-h1fgvhdtw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085653-9bllpxvda\"}]","start":"2026-01-07T16:55:00.000Z","end":"2026-01-07T17:20:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2476\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-zwljtwbon","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085726-ev2czm0lg\"}]","start":"2026-05-18T16:20:00.000Z","end":"2026-05-18T16:45:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-5060\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-ahld1fe43","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085653-tcjqgijyf\"}]","start":"2026-01-08T14:00:00.000Z","end":"2026-01-08T14:25:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6123\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-gqquwv01b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085710-jr0zj4ch4\"}]","start":"2026-04-17T18:50:00.000Z","end":"2026-04-17T19:15:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6061\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-p7lt457y8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085717-32fls0w5e\"}]","start":"2026-04-30T18:50:00.000Z","end":"2026-04-30T19:15:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3385\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-rwu8h0mto","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085716-aizc3wsou\"}]","start":"2026-04-30T14:15:00.000Z","end":"2026-04-30T14:40:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5206\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086192-p3079ig8k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085725-ufwwvztu7\"}]","start":"2026-05-13T21:20:00.000Z","end":"2026-05-13T21:45:00.000Z","created":"2025-12-12T05:24:46.192Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4513\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-25rf219ao","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085673-v4k02qphy\"}]","start":"2026-02-10T19:25:00.000Z","end":"2026-02-10T19:50:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1810\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-i6d15nd50","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085677-2dlzyzppl\"}]","start":"2026-02-16T22:20:00.000Z","end":"2026-02-16T22:45:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4346\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-opcfalwyn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085714-rw1nr81f9\"}]","start":"2026-04-27T13:00:00.000Z","end":"2026-04-27T13:25:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-8256\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-6qlum7maw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085716-gru600j5o\"}]","start":"2026-04-29T15:55:00.000Z","end":"2026-04-29T16:20:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-8664\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-k83h8elrt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085643-7x06gt0bu\"}]","start":"2025-12-22T16:55:00.000Z","end":"2025-12-22T17:20:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-4524\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-2kfe4vyle","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085713-9xyj6bpsv\"}]","start":"2026-04-22T17:35:00.000Z","end":"2026-04-22T18:00:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-4995\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-kptrmu7ne","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085643-wvyn606zz\"}]","start":"2025-12-22T22:20:00.000Z","end":"2025-12-22T22:45:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-2493\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-c2pf81ioo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085682-o72xs08v4\"}]","start":"2026-02-25T15:15:00.000Z","end":"2026-02-25T15:40:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2990\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-shxcc8stb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085710-sxili18fp\"}]","start":"2026-04-17T21:20:00.000Z","end":"2026-04-17T21:45:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7777\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-xitdfjhr0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085716-j99k9xn52\"}]","start":"2026-04-28T21:20:00.000Z","end":"2026-04-28T21:45:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8415\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-ajjc98a7m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085714-8lq3jq98l\"}]","start":"2026-04-23T17:35:00.000Z","end":"2026-04-23T18:00:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6775\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086193-bixzywzgq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085679-dwtpsqzh1\"}]","start":"2026-02-19T19:50:00.000Z","end":"2026-02-19T20:15:00.000Z","created":"2025-12-12T05:24:46.193Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6581\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-m9oxdfkps","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085721-z0jgdwwn4\"}]","start":"2026-05-08T18:25:00.000Z","end":"2026-05-08T18:50:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5490\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-4epdvzbhf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085653-06besx9zu\"}]","start":"2026-01-07T18:35:00.000Z","end":"2026-01-07T19:00:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6555\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-hd0kj56fp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085667-t0hkd9lie\"}]","start":"2026-01-30T17:45:00.000Z","end":"2026-01-30T18:10:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7219\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-yn6ioktqo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085697-kfv6cqzyt\"}]","start":"2026-03-24T18:00:00.000Z","end":"2026-03-24T18:25:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7767\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-9xp540876","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085679-fk4mwl5jk\"}]","start":"2026-02-19T16:30:00.000Z","end":"2026-02-19T16:55:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9188\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-xt4klwvb4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085714-p8zb8oeiw\"}]","start":"2026-04-27T13:25:00.000Z","end":"2026-04-27T13:50:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2945\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-ucyxi4gyl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085678-uxld3fh99\"}]","start":"2026-02-17T21:05:00.000Z","end":"2026-02-17T21:30:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2041\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-5jn6nqxtm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085713-xuo1r1t90\"}]","start":"2026-04-22T15:55:00.000Z","end":"2026-04-22T16:20:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7320\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-ca48side7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085651-khcjez5x3\"}]","start":"2026-01-02T16:30:00.000Z","end":"2026-01-02T16:55:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8712\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-kjgyvg5f6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085695-1w5vwff9m\"}]","start":"2026-03-19T15:05:00.000Z","end":"2026-03-19T15:30:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-2080\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-eizvu2e15","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085721-u0vg41kjj\"}]","start":"2026-05-07T20:55:00.000Z","end":"2026-05-07T21:20:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3947\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-ws4ikhtey","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085705-vnvevcj3i\"}]","start":"2026-04-08T17:10:00.000Z","end":"2026-04-08T17:35:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-3614\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086194-ne2v5a8ce","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085716-if8re5ecp\"}]","start":"2026-04-30T15:05:00.000Z","end":"2026-04-30T15:30:00.000Z","created":"2025-12-12T05:24:46.194Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4509\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086195-e5i7gk4fh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085638-sebk91ytx\"}]","start":"2025-12-12T15:40:00.000Z","end":"2025-12-12T16:05:00.000Z","created":"2025-12-12T05:24:46.195Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6092\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086195-2e4403brx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-oicd7a7oa\"}]","start":"2026-04-29T17:10:00.000Z","end":"2026-04-29T17:35:00.000Z","created":"2025-12-12T05:24:46.195Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9555\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086195-28wykiuvh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085646-c6ef03m43\"}]","start":"2025-12-25T21:55:00.000Z","end":"2025-12-25T22:20:00.000Z","created":"2025-12-12T05:24:46.195Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5574\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086195-o5tgcb793","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085651-rkbncg7su\"}]","start":"2026-01-05T17:20:00.000Z","end":"2026-01-05T17:45:00.000Z","created":"2025-12-12T05:24:46.195Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9463\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-t50fxxj18","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085713-kleltx0cb\"}]","start":"2026-04-22T13:50:00.000Z","end":"2026-04-22T14:15:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3723\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-6tk6q09w7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085676-jxfsdlxnv\"}]","start":"2026-02-13T18:10:00.000Z","end":"2026-02-13T18:35:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-2087\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-p02fb3rrm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085657-e20ik16gs\"}]","start":"2026-01-14T17:20:00.000Z","end":"2026-01-14T17:45:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-9873\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-n2dw54ilx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-6f0dc5eus\"}]","start":"2026-04-28T14:40:00.000Z","end":"2026-04-28T15:05:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4194\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-nxfq0iuac","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085716-jz675ox2y\"}]","start":"2026-04-29T16:45:00.000Z","end":"2026-04-29T17:10:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3977\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-hw9xlpxgo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085715-k3f1h0q08\"}]","start":"2026-04-27T19:15:00.000Z","end":"2026-04-27T19:40:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9397\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-rfc5uvu43","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085717-o523ymp1t\"}]","start":"2026-04-30T20:05:00.000Z","end":"2026-04-30T20:30:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-5011\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-t22a2r4x1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085677-zll9qeq56\"}]","start":"2026-02-16T14:50:00.000Z","end":"2026-02-16T15:15:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-9614\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086197-zax6od1ld","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085716-3388pa9p6\"}]","start":"2026-04-29T13:25:00.000Z","end":"2026-04-29T13:50:00.000Z","created":"2025-12-12T05:24:46.197Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7301\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-4zuhlt4fm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085674-otsnsf6xn\"}]","start":"2026-02-11T20:40:00.000Z","end":"2026-02-11T21:05:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6566\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-53emnddty","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085727-p8h97x63k\"}]","start":"2026-05-19T16:45:00.000Z","end":"2026-05-19T17:10:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7853\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-ez067co7n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085644-6m5aofcrx\"}]","start":"2025-12-24T16:30:00.000Z","end":"2025-12-24T16:55:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2706\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-eurbn9j6r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085672-zxh9dfjkn\"}]","start":"2026-02-09T18:35:00.000Z","end":"2026-02-09T19:00:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7643\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-43h5boaw5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085713-1ssf3a074\"}]","start":"2026-04-23T15:30:00.000Z","end":"2026-04-23T15:55:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8934\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-guasxek7p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085678-2fkf8u627\"}]","start":"2026-02-18T19:50:00.000Z","end":"2026-02-18T20:15:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7996\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-bmjet60d2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085695-ddhpns1ki\"}]","start":"2026-03-19T13:25:00.000Z","end":"2026-03-19T13:50:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2961\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-5xhilu579","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085682-v17ll2b98\"}]","start":"2026-02-25T15:40:00.000Z","end":"2026-02-25T16:05:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2786\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-0n4wjwujq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-ae7m074np\"}]","start":"2026-05-21T18:25:00.000Z","end":"2026-05-21T18:50:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-3116\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-z3l0w9ek9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085695-xxax7ir05\"}]","start":"2026-03-19T18:50:00.000Z","end":"2026-03-19T19:15:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2383\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-dksdlr3m7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085674-7fdqu1lc8\"}]","start":"2026-02-11T19:00:00.000Z","end":"2026-02-11T19:25:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8429\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086198-vg7vfpixp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085671-2hbnq312f\"}]","start":"2026-02-06T18:35:00.000Z","end":"2026-02-06T19:00:00.000Z","created":"2025-12-12T05:24:46.198Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1467\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-ia29ka8y5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085733-uz60klu1k\"}]","start":"2026-05-29T15:55:00.000Z","end":"2026-05-29T16:20:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-8648\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-batdrcfdw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085695-yup62p0hy\"}]","start":"2026-03-19T20:05:00.000Z","end":"2026-03-19T20:30:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3444\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-tiztwgdhn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085650-7e6dbhucw\"}]","start":"2026-01-01T16:05:00.000Z","end":"2026-01-01T16:30:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7079\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-2vqnejk0y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085710-7jqwm16ci\"}]","start":"2026-04-20T15:05:00.000Z","end":"2026-04-20T15:30:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-7573\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-fbyoy4mbz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085698-0v4vksr4m\"}]","start":"2026-03-25T20:55:00.000Z","end":"2026-03-25T21:20:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3936\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-4jw4wwuum","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085682-6l7sn5qp8\"}]","start":"2026-02-24T21:55:00.000Z","end":"2026-02-24T22:20:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1625\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-sxk7bbxpq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085638-shil4iw4j\"}]","start":"2025-12-12T14:50:00.000Z","end":"2025-12-12T15:15:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6693\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-oftbvskka","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085726-mwk0vxnhh\"}]","start":"2026-05-18T17:10:00.000Z","end":"2026-05-18T17:35:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2739\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-eiljbzw1o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085681-eoag1muqo\"}]","start":"2026-02-24T16:55:00.000Z","end":"2026-02-24T17:20:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-4717\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-k0xfeuezl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085652-z8v9umhbl\"}]","start":"2026-01-06T16:55:00.000Z","end":"2026-01-06T17:20:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9929\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-1fp4mvgs6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085679-xpas5q1n4\"}]","start":"2026-02-20T20:40:00.000Z","end":"2026-02-20T21:05:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-9447\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086199-q1g1yeh3z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085704-na43xqz8i\"}]","start":"2026-04-07T18:25:00.000Z","end":"2026-04-07T18:50:00.000Z","created":"2025-12-12T05:24:46.199Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3366\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-j8xucfen4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085670-w1wi74ova\"}]","start":"2026-02-03T16:05:00.000Z","end":"2026-02-03T16:30:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2489\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-umwmhcwuj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085721-efp4mdwo4\"}]","start":"2026-05-07T20:05:00.000Z","end":"2026-05-07T20:30:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1886\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-bz9kzxgyx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085709-gum6g4bdr\"}]","start":"2026-04-16T13:50:00.000Z","end":"2026-04-16T14:15:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-7192\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-i5wm5xqg9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085698-vd9fyivsj\"}]","start":"2026-03-26T16:45:00.000Z","end":"2026-03-26T17:10:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6093\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-07sa4nefu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085714-h7acbgue1\"}]","start":"2026-04-24T20:05:00.000Z","end":"2026-04-24T20:30:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1489\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-261hky097","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-dx6tb41ef\"}]","start":"2026-05-21T13:50:00.000Z","end":"2026-05-21T14:15:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-4354\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-5wnp0i6lj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085692-ufibj7pg7\"}]","start":"2026-03-17T14:40:00.000Z","end":"2026-03-17T15:05:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2889\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-g2ahsp9wt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085695-9ows3r7j1\"}]","start":"2026-03-19T20:55:00.000Z","end":"2026-03-19T21:20:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2890\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-tnct0zszj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-33iled1wl\"}]","start":"2026-04-06T20:30:00.000Z","end":"2026-04-06T20:55:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8672\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-p3kxccbxh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085697-6xienqs6i\"}]","start":"2026-03-25T17:10:00.000Z","end":"2026-03-25T17:35:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-7262\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-z1p2rakmr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-zz0xe993f\"}]","start":"2026-05-21T16:45:00.000Z","end":"2026-05-21T17:10:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3699\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-ns5tsbw5z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085645-s0ie8prpe\"}]","start":"2025-12-25T14:50:00.000Z","end":"2025-12-25T15:15:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3483\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086200-xiunthbjt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085639-4zpsp88oc\"}]","start":"2025-12-16T20:40:00.000Z","end":"2025-12-16T21:05:00.000Z","created":"2025-12-12T05:24:46.200Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5025\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-z9j23sbmh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085667-jjfg9ns85\"}]","start":"2026-01-30T14:50:00.000Z","end":"2026-01-30T15:15:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3650\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-r980yt7rp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-0g79ft61v\"}]","start":"2026-02-12T16:30:00.000Z","end":"2026-02-12T16:55:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5601\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-0qz9ifwcv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085729-ifw6t6ti2\"}]","start":"2026-05-22T18:00:00.000Z","end":"2026-05-22T18:25:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6827\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-ujb7rwbr7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085652-m7llh4pf9\"}]","start":"2026-01-06T14:00:00.000Z","end":"2026-01-06T14:25:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8671\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-ttzckqwmq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085682-funfkopt5\"}]","start":"2026-02-25T21:05:00.000Z","end":"2026-02-25T21:30:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1367\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-4uvqn23lx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085655-8sy2gq8wv\"}]","start":"2026-01-12T14:50:00.000Z","end":"2026-01-12T15:15:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-6493\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-l3il23tkk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085711-lldeehigp\"}]","start":"2026-04-20T19:15:00.000Z","end":"2026-04-20T19:40:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-7662\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-2thfbn6g7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085698-yuxuxvbx9\"}]","start":"2026-03-25T20:30:00.000Z","end":"2026-03-25T20:55:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2472\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-jb8nqjaa1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085683-odro20pwd\"}]","start":"2026-02-26T16:55:00.000Z","end":"2026-02-26T17:20:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3117\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-vbn9jppz6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-epebp3ivf\"}]","start":"2026-02-13T16:30:00.000Z","end":"2026-02-13T16:55:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9315\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-w4hw6cc5z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-xflg7r9yk\"}]","start":"2026-04-06T20:55:00.000Z","end":"2026-04-06T21:20:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7830\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086201-6hn1bjai1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-dou276fhn\"}]","start":"2026-01-14T18:35:00.000Z","end":"2026-01-14T19:00:00.000Z","created":"2025-12-12T05:24:46.201Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1100\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-hy8n2t24p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085645-i6wvhh5hi\"}]","start":"2025-12-25T17:20:00.000Z","end":"2025-12-25T17:45:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6508\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-97d0tg2a9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085670-iervv2vpc\"}]","start":"2026-02-04T19:50:00.000Z","end":"2026-02-04T20:15:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1557\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-x3otejd5h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085721-y5uzlvycy\"}]","start":"2026-05-08T18:00:00.000Z","end":"2026-05-08T18:25:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2408\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-cebj1z00e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-rrxxgmob5\"}]","start":"2026-04-27T20:05:00.000Z","end":"2026-04-27T20:30:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3344\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-60j6zvr31","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085645-id6vg5pdd\"}]","start":"2025-12-25T18:35:00.000Z","end":"2025-12-25T19:00:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3882\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-tjfawth98","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085644-1gbsqdn4z\"}]","start":"2025-12-24T21:55:00.000Z","end":"2025-12-24T22:20:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9147\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-yqb883tr3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-skvfwv4gn\"}]","start":"2026-05-21T13:25:00.000Z","end":"2026-05-21T13:50:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-6826\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-dfnqjfbua","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-4u6h1g4p0\"}]","start":"2026-05-22T15:05:00.000Z","end":"2026-05-22T15:30:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8283\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-rnkaq1epz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085728-79c5kzgim\"}]","start":"2026-05-20T20:55:00.000Z","end":"2026-05-20T21:20:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1539\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-jkn22gugr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085682-tgw6t7mb6\"}]","start":"2026-02-25T14:50:00.000Z","end":"2026-02-25T15:15:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8464\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-f3pb0s0mg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085678-17mtycu7a\"}]","start":"2026-02-18T21:05:00.000Z","end":"2026-02-18T21:30:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8372\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086202-inx035p32","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085713-dluxd670l\"}]","start":"2026-04-22T18:00:00.000Z","end":"2026-04-22T18:25:00.000Z","created":"2025-12-12T05:24:46.202Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6108\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-1i98f69ku","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085691-s44sp3jg4\"}]","start":"2026-03-12T13:25:00.000Z","end":"2026-03-12T13:50:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9346\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-untrivlrp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085657-026zz5zci\"}]","start":"2026-01-14T19:25:00.000Z","end":"2026-01-14T19:50:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5420\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-kodb3pn4v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085703-hlcwbtljk\"}]","start":"2026-04-03T17:10:00.000Z","end":"2026-04-03T17:35:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6123\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-o90e7bxbk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085644-cj3wj02c9\"}]","start":"2025-12-24T14:00:00.000Z","end":"2025-12-24T14:25:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2720\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-4dmyv3x47","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085666-2f9xaj9z8\"}]","start":"2026-01-29T15:15:00.000Z","end":"2026-01-29T15:40:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4379\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-wpw7sxndt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085715-744tlykoy\"}]","start":"2026-04-28T16:20:00.000Z","end":"2026-04-28T16:45:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-1286\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-0r2xksjp8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085699-j9lfglqvp\"}]","start":"2026-03-27T19:15:00.000Z","end":"2026-03-27T19:40:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5978\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-vm5nzrqlu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085651-sm78uijs2\"}]","start":"2026-01-05T14:50:00.000Z","end":"2026-01-05T15:15:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9324\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-fw2fc5s3t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-25l1szgvr\"}]","start":"2026-04-28T13:00:00.000Z","end":"2026-04-28T13:25:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6586\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-nf7saoz61","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085653-5w86xzcbt\"}]","start":"2026-01-08T14:50:00.000Z","end":"2026-01-08T15:15:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4859\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-kwn6o103o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085712-h7owebhah\"}]","start":"2026-04-21T15:55:00.000Z","end":"2026-04-21T16:20:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3460\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086203-rintvvqc0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085656-185fgwua4\"}]","start":"2026-01-12T19:50:00.000Z","end":"2026-01-12T20:15:00.000Z","created":"2025-12-12T05:24:46.203Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4304\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-ozlcdk7n7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085723-vqy6yk02i\"}]","start":"2026-05-12T18:50:00.000Z","end":"2026-05-12T19:15:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-2265\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-2xaiw4lo6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085697-guhadfhs5\"}]","start":"2026-03-25T14:40:00.000Z","end":"2026-03-25T15:05:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5963\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-pua3dgp6r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085695-rnwnjzr1v\"}]","start":"2026-03-20T14:15:00.000Z","end":"2026-03-20T14:40:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7685\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-i7basalst","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085722-x79x9ce3n\"}]","start":"2026-05-12T14:40:00.000Z","end":"2026-05-12T15:05:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8460\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-q8asow4df","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085695-uguu8minv\"}]","start":"2026-03-20T13:00:00.000Z","end":"2026-03-20T13:25:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8046\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-myow98i24","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085724-lw8w9pqx1\"}]","start":"2026-05-13T20:05:00.000Z","end":"2026-05-13T20:30:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-6073\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-avxdr14dz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-dnknxadzp\"}]","start":"2026-04-07T13:50:00.000Z","end":"2026-04-07T14:15:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2800\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-ljg67i59q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085671-q9lecqcph\"}]","start":"2026-02-05T17:45:00.000Z","end":"2026-02-05T18:10:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-8202\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-vw2havtvx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-y2gry32qv\"}]","start":"2026-04-29T13:50:00.000Z","end":"2026-04-29T14:15:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1940\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-wbw35k63r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085714-h86v9e2ks\"}]","start":"2026-04-24T15:05:00.000Z","end":"2026-04-24T15:30:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3501\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-uj2juzjqk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-jnx9i032k\"}]","start":"2026-05-21T15:55:00.000Z","end":"2026-05-21T16:20:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1021\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086204-jnmxq8ka6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085705-gexra1gtw\"}]","start":"2026-04-08T18:25:00.000Z","end":"2026-04-08T18:50:00.000Z","created":"2025-12-12T05:24:46.204Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7007\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-8w0d2mdf6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085703-gsh0fz6ni\"}]","start":"2026-04-03T19:40:00.000Z","end":"2026-04-03T20:05:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7578\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-ipkk70hog","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085726-2r4xaztot\"}]","start":"2026-05-15T19:15:00.000Z","end":"2026-05-15T19:40:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3216\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-y2266tbzu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085640-sut3o3bsy\"}]","start":"2025-12-17T17:45:00.000Z","end":"2025-12-17T18:10:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-1216\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-mkf3wmm35","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085722-xgt90qg7i\"}]","start":"2026-05-11T15:05:00.000Z","end":"2026-05-11T15:30:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5628\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-nj2vqt2sb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085651-xgar5zgc6\"}]","start":"2026-01-02T20:15:00.000Z","end":"2026-01-02T20:40:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1946\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-vgfcymvyo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085726-9jo27bu71\"}]","start":"2026-05-19T13:00:00.000Z","end":"2026-05-19T13:25:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3255\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-7e3axkwgc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085642-m6a8konsy\"}]","start":"2025-12-18T20:15:00.000Z","end":"2025-12-18T20:40:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1901\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-2bihoqbtx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085698-v1u3g3lwj\"}]","start":"2026-03-26T16:20:00.000Z","end":"2026-03-26T16:45:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4073\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-9w39iwzu5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085652-n6s02akaq\"}]","start":"2026-01-07T16:05:00.000Z","end":"2026-01-07T16:30:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6225\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-g0iwcfh72","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085683-wa8gadnmk\"}]","start":"2026-02-26T19:25:00.000Z","end":"2026-02-26T19:50:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9996\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-nc5b3rv00","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085714-gvodstk3s\"}]","start":"2026-04-23T18:00:00.000Z","end":"2026-04-23T18:25:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1866\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-k5szrivok","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085713-bgri61957\"}]","start":"2026-04-22T16:45:00.000Z","end":"2026-04-22T17:10:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-8499\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086205-022pcw5kx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085690-gnb1z84kd\"}]","start":"2026-03-11T18:25:00.000Z","end":"2026-03-11T18:50:00.000Z","created":"2025-12-12T05:24:46.205Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4022\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086206-7vvlhn1yg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085671-ojzedpqz6\"}]","start":"2026-02-05T21:55:00.000Z","end":"2026-02-05T22:20:00.000Z","created":"2025-12-12T05:24:46.206Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2899\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086206-h63hm9rmr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085650-8czodn3tb\"}]","start":"2026-01-01T20:15:00.000Z","end":"2026-01-01T20:40:00.000Z","created":"2025-12-12T05:24:46.206Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8723\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086206-e0tpbbhkn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085666-znyr9igyb\"}]","start":"2026-01-29T14:25:00.000Z","end":"2026-01-29T14:50:00.000Z","created":"2025-12-12T05:24:46.206Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-5353\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086206-hj5v48qnd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085679-czr5u1hbj\"}]","start":"2026-02-19T22:20:00.000Z","end":"2026-02-19T22:45:00.000Z","created":"2025-12-12T05:24:46.206Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3558\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086206-y2do5nnww","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085655-xiups975t\"}]","start":"2026-01-12T14:25:00.000Z","end":"2026-01-12T14:50:00.000Z","created":"2025-12-12T05:24:46.206Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9366\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-vqg9a4ka5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085667-vvpp0n9wh\"}]","start":"2026-01-30T18:10:00.000Z","end":"2026-01-30T18:35:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7377\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-gkf79kttv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085674-t86n8wcoc\"}]","start":"2026-02-11T20:15:00.000Z","end":"2026-02-11T20:40:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6287\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-yjgbvcn7k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085642-50j9504o0\"}]","start":"2025-12-18T17:45:00.000Z","end":"2025-12-18T18:10:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4847\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-v85dgccwh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085694-ukstywp2p\"}]","start":"2026-03-18T18:00:00.000Z","end":"2026-03-18T18:25:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5113\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-0eixjesex","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085639-jklmbkhhv\"}]","start":"2025-12-16T21:05:00.000Z","end":"2025-12-16T21:30:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-3916\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-0hvd8ueb0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085676-1errkn5fc\"}]","start":"2026-02-12T16:05:00.000Z","end":"2026-02-12T16:30:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3087\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-42vnd96df","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085656-vehknk7na\"}]","start":"2026-01-13T14:50:00.000Z","end":"2026-01-13T15:15:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7156\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-osu0feix1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085646-e0yx7b2g5\"}]","start":"2025-12-25T21:30:00.000Z","end":"2025-12-25T21:55:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4988\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086208-qs3ensiyf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085689-6h28zn8ce\"}]","start":"2026-03-11T15:05:00.000Z","end":"2026-03-11T15:30:00.000Z","created":"2025-12-12T05:24:46.208Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-6693\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-6z0mh1lvg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085689-yl9iaz10s\"}]","start":"2026-03-10T20:55:00.000Z","end":"2026-03-10T21:20:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3473\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-xt3w49n8h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085638-55r9cxk8y\"}]","start":"2025-12-15T20:15:00.000Z","end":"2025-12-15T20:40:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1418\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-pxsjq0sem","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-kk0ki4eqw\"}]","start":"2026-01-22T16:55:00.000Z","end":"2026-01-22T17:20:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4277\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-4aicfqzjn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085692-l7aolppq2\"}]","start":"2026-03-16T19:15:00.000Z","end":"2026-03-16T19:40:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2660\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-bdbpjt29w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-r0wdwyhjo\"}]","start":"2026-01-15T16:55:00.000Z","end":"2026-01-15T17:20:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4268\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-7jk8njywb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085682-1jvqfvbxs\"}]","start":"2026-02-24T21:30:00.000Z","end":"2026-02-24T21:55:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9079\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-2xpow8h05","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085688-3oy0k0hvv\"}]","start":"2026-03-10T13:25:00.000Z","end":"2026-03-10T13:50:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5848\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-zh4q2mz1u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085704-zoes5a8jq\"}]","start":"2026-04-08T13:50:00.000Z","end":"2026-04-08T14:15:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2485\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-t9tvji4xo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085678-ne23bdr3q\"}]","start":"2026-02-17T20:40:00.000Z","end":"2026-02-17T21:05:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7214\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-z6vky3jux","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085681-dqjcaa317\"}]","start":"2026-02-24T18:35:00.000Z","end":"2026-02-24T19:00:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3931\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-vtb4m519i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085691-7m2gwg94b\"}]","start":"2026-03-12T19:15:00.000Z","end":"2026-03-12T19:40:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2107\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-riv5nioih","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085667-dhpgpc1zu\"}]","start":"2026-01-29T16:30:00.000Z","end":"2026-01-29T16:55:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5465\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-nihcjqtd0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-dwyh4bmlm\"}]","start":"2026-05-20T20:05:00.000Z","end":"2026-05-20T20:30:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-4295\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086209-u0ri7gj4m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085672-3fhr8su1p\"}]","start":"2026-02-09T19:25:00.000Z","end":"2026-02-09T19:50:00.000Z","created":"2025-12-12T05:24:46.209Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7326\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-01z9sekwe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085679-tyunb2dux\"}]","start":"2026-02-19T18:10:00.000Z","end":"2026-02-19T18:35:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7981\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-gfvrooqrh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085658-l4w1fz2nb\"}]","start":"2026-01-15T20:15:00.000Z","end":"2026-01-15T20:40:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4311\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-lgxb2seo6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085710-dussps3dg\"}]","start":"2026-04-17T13:00:00.000Z","end":"2026-04-17T13:25:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-3314\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-pgdc93es0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085679-n5ao2ulhu\"}]","start":"2026-02-20T20:15:00.000Z","end":"2026-02-20T20:40:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2640\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-k8cmojo4h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085657-g5n1hgu38\"}]","start":"2026-01-14T16:30:00.000Z","end":"2026-01-14T16:55:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1920\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-lmg1glksz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-raellorkr\"}]","start":"2026-04-28T18:00:00.000Z","end":"2026-04-28T18:25:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4672\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-dv21pwzob","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-o84z7k6im\"}]","start":"2026-05-21T15:05:00.000Z","end":"2026-05-21T15:30:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8114\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-yjsphwb9u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085680-gk0lictu3\"}]","start":"2026-02-23T22:20:00.000Z","end":"2026-02-23T22:45:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9418\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-gqlc0hcp2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085658-27c01ibhs\"}]","start":"2026-01-16T21:55:00.000Z","end":"2026-01-16T22:20:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9178\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-jjaiocd1k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085689-4k2vbcji2\"}]","start":"2026-03-10T20:30:00.000Z","end":"2026-03-10T20:55:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5667\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-xq5avtadk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085698-9j3pjr40g\"}]","start":"2026-03-26T20:05:00.000Z","end":"2026-03-26T20:30:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8706\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086210-5osfz18x3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085673-3jk4nji3f\"}]","start":"2026-02-11T15:15:00.000Z","end":"2026-02-11T15:40:00.000Z","created":"2025-12-12T05:24:46.210Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5285\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-0ywxdhwy4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085703-8ub5yrsjd\"}]","start":"2026-04-03T14:15:00.000Z","end":"2026-04-03T14:40:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-4614\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-fvywbjd6x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085727-fwtuo5ssw\"}]","start":"2026-05-20T19:15:00.000Z","end":"2026-05-20T19:40:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9208\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-oc8zkrl1q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085684-k23qeme7m\"}]","start":"2026-03-02T14:25:00.000Z","end":"2026-03-02T14:50:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9762\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-2bn2k57s4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-w9zuguptc\"}]","start":"2026-02-13T17:45:00.000Z","end":"2026-02-13T18:10:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4271\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-2v609jxwo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085688-wb2ky8ud9\"}]","start":"2026-03-09T13:25:00.000Z","end":"2026-03-09T13:50:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7651\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-gm6nj55zl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085729-jwxkntsff\"}]","start":"2026-05-22T20:05:00.000Z","end":"2026-05-22T20:30:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-7841\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-q6y6j02h8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085716-5kx31ez0a\"}]","start":"2026-04-29T18:50:00.000Z","end":"2026-04-29T19:15:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3257\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-opuw8ey5c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085641-7gw5m1bum\"}]","start":"2025-12-18T16:55:00.000Z","end":"2025-12-18T17:20:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9703\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-j1zvpa5xv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085710-sgjerteg1\"}]","start":"2026-04-17T15:55:00.000Z","end":"2026-04-17T16:20:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5359\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-am47b82xt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085655-a3c9n0gmh\"}]","start":"2026-01-09T17:20:00.000Z","end":"2026-01-09T17:45:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7827\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-1utqzljrx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085655-nubtqow57\"}]","start":"2026-01-09T22:20:00.000Z","end":"2026-01-09T22:45:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3098\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-agucv4me2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085673-djngyefa3\"}]","start":"2026-02-10T14:25:00.000Z","end":"2026-02-10T14:50:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1863\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086211-uqhq4qoi8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085658-jefwv2ogo\"}]","start":"2026-01-15T21:30:00.000Z","end":"2026-01-15T21:55:00.000Z","created":"2025-12-12T05:24:46.211Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3054\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-egriflr47","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085644-77xk8vgc8\"}]","start":"2025-12-24T19:25:00.000Z","end":"2025-12-24T19:50:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8872\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-hxuwh296f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085692-ezsgjw5ce\"}]","start":"2026-03-16T19:40:00.000Z","end":"2026-03-16T20:05:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-4634\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-tw5tix2ar","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085716-7hhs6l5db\"}]","start":"2026-04-29T20:55:00.000Z","end":"2026-04-29T21:20:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5855\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-wpno66fgs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085714-qywh2bap1\"}]","start":"2026-04-24T21:20:00.000Z","end":"2026-04-24T21:45:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1103\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-1r8rw91em","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085656-wg3q7fe1e\"}]","start":"2026-01-12T20:40:00.000Z","end":"2026-01-12T21:05:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7493\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-fawbn6y3m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085651-v1sgtrbbx\"}]","start":"2026-01-02T17:45:00.000Z","end":"2026-01-02T18:10:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7032\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-432g595px","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085680-2r5ntmzs3\"}]","start":"2026-02-24T15:15:00.000Z","end":"2026-02-24T15:40:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8185\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-i2gl6r2y4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085690-055yp4fek\"}]","start":"2026-03-11T15:55:00.000Z","end":"2026-03-11T16:20:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-1232\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-ja0om7f4b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085674-02fzzdp8k\"}]","start":"2026-02-11T19:25:00.000Z","end":"2026-02-11T19:50:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9797\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-82te0j6pa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085725-6qf9hd7qx\"}]","start":"2026-05-14T19:40:00.000Z","end":"2026-05-14T20:05:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3216\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-0gl40l5f5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085649-wlz8hblsu\"}]","start":"2025-12-30T20:40:00.000Z","end":"2025-12-30T21:05:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6117\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-9wmiic41r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085655-k4h6ujjjb\"}]","start":"2026-01-09T19:50:00.000Z","end":"2026-01-09T20:15:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5777\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086212-s706z84jh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085661-1opcatnng\"}]","start":"2026-01-21T14:00:00.000Z","end":"2026-01-21T14:25:00.000Z","created":"2025-12-12T05:24:46.212Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7284\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-lo2tsgrrj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085679-nezeaec6e\"}]","start":"2026-02-20T16:05:00.000Z","end":"2026-02-20T16:30:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4196\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-gh93k6hf9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085680-mp8ixvvn7\"}]","start":"2026-02-24T14:25:00.000Z","end":"2026-02-24T14:50:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6779\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-opc4lpdus","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085725-hsx8ia4gn\"}]","start":"2026-05-15T15:55:00.000Z","end":"2026-05-15T16:20:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-6644\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-a127x9h31","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-v1v7nzj99\"}]","start":"2026-05-21T19:40:00.000Z","end":"2026-05-21T20:05:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8387\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-839mycjru","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085709-cdtg3cza6\"}]","start":"2026-04-15T18:00:00.000Z","end":"2026-04-15T18:25:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5887\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-4p2higzsi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085652-7f3j24vae\"}]","start":"2026-01-07T16:30:00.000Z","end":"2026-01-07T16:55:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-6190\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-ke7h3cbaf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085723-fc6nw5y7g\"}]","start":"2026-05-13T15:30:00.000Z","end":"2026-05-13T15:55:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5839\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-5s5d0r607","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085704-9kptyfvvb\"}]","start":"2026-04-07T18:50:00.000Z","end":"2026-04-07T19:15:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5441\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-5rnhq2usg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085651-x6qo7ocrl\"}]","start":"2026-01-02T14:25:00.000Z","end":"2026-01-02T14:50:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9307\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086213-nyy1knn4y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-mzbmnt7uq\"}]","start":"2026-01-21T19:00:00.000Z","end":"2026-01-21T19:25:00.000Z","created":"2025-12-12T05:24:46.213Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-4692\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-q21v11uwj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085702-6kwqzpgpv\"}]","start":"2026-04-03T13:00:00.000Z","end":"2026-04-03T13:25:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1690\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-0ujpx46vj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085667-w2ubrn2e0\"}]","start":"2026-01-30T19:25:00.000Z","end":"2026-01-30T19:50:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3853\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-qnucyonka","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085639-4tro3hdgf\"}]","start":"2025-12-15T21:55:00.000Z","end":"2025-12-15T22:20:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-6666\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-tfdpqa0hk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085656-ov5t2jhfy\"}]","start":"2026-01-12T22:20:00.000Z","end":"2026-01-12T22:45:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3669\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-vv76f91d0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085657-lhhzhc01k\"}]","start":"2026-01-15T17:45:00.000Z","end":"2026-01-15T18:10:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-9061\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-6epjmhw82","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085642-88v7jcomo\"}]","start":"2025-12-19T17:45:00.000Z","end":"2025-12-19T18:10:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-2912\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-qa73621e9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085677-y0wsihph0\"}]","start":"2026-02-16T16:30:00.000Z","end":"2026-02-16T16:55:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2756\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-2zgfgwhxp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085638-u67k0j1vj\"}]","start":"2025-12-15T17:45:00.000Z","end":"2025-12-15T18:10:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2947\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086214-vrr0xivrr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-ffahcagi1\"}]","start":"2026-05-21T16:20:00.000Z","end":"2026-05-21T16:45:00.000Z","created":"2025-12-12T05:24:46.214Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1819\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-lavyswwgv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085726-03um5ewii\"}]","start":"2026-05-15T18:25:00.000Z","end":"2026-05-15T18:50:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8843\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-cdkzszm4t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-kdkskrmqe\"}]","start":"2026-01-14T15:15:00.000Z","end":"2026-01-14T15:40:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1248\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-617xhhxfj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085695-mal9lbjbb\"}]","start":"2026-03-19T14:15:00.000Z","end":"2026-03-19T14:40:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8746\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-x2r7sa39p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085653-6p9uo5k4m\"}]","start":"2026-01-07T21:55:00.000Z","end":"2026-01-07T22:20:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4788\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-e8h66o769","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-1c35m7rbh\"}]","start":"2026-05-21T14:15:00.000Z","end":"2026-05-21T14:40:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4837\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-2skes0vuo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085686-dloua4y3s\"}]","start":"2026-03-05T17:20:00.000Z","end":"2026-03-05T17:45:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-6899\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-5wv3anp96","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085641-rqhz3v5yu\"}]","start":"2025-12-18T14:50:00.000Z","end":"2025-12-18T15:15:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8466\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-238utiikl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085713-882aukrww\"}]","start":"2026-04-23T13:25:00.000Z","end":"2026-04-23T13:50:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6616\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-dichytpy7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085676-j7pjl47oh\"}]","start":"2026-02-13T21:55:00.000Z","end":"2026-02-13T22:20:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5584\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-5j789271s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085701-b3fl31anb\"}]","start":"2026-03-30T20:05:00.000Z","end":"2026-03-30T20:30:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7694\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-2cyttmdhz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085661-ek5cdkbzc\"}]","start":"2026-01-21T16:05:00.000Z","end":"2026-01-21T16:30:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-5417\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086215-3uw6u0shh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085727-0g1glt2mg\"}]","start":"2026-05-19T17:10:00.000Z","end":"2026-05-19T17:35:00.000Z","created":"2025-12-12T05:24:46.215Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1787\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-kdk0335ca","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085692-kpe4zsqe5\"}]","start":"2026-03-16T13:25:00.000Z","end":"2026-03-16T13:50:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1698\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-mr93vnvl1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085725-z74k1f9vt\"}]","start":"2026-05-14T16:45:00.000Z","end":"2026-05-14T17:10:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8070\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-46mfpdguf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085704-7dl1ifkhx\"}]","start":"2026-04-07T15:05:00.000Z","end":"2026-04-07T15:30:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2249\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-0ji0vn0tt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085688-c87ifetwf\"}]","start":"2026-03-06T19:25:00.000Z","end":"2026-03-06T19:50:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-2818\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-jjginsbr3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085713-c6vvstyfd\"}]","start":"2026-04-23T13:00:00.000Z","end":"2026-04-23T13:25:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-7201\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-no9sitavr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-7k0qznl13\"}]","start":"2026-01-15T18:10:00.000Z","end":"2026-01-15T18:35:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2962\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-5f2fqz8kf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085728-8asf5u6xq\"}]","start":"2026-05-22T14:40:00.000Z","end":"2026-05-22T15:05:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5603\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-87am153jf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085707-bgwpfhzoa\"}]","start":"2026-04-10T15:05:00.000Z","end":"2026-04-10T15:30:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9310\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-vb0hft9js","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085700-a1uukorbj\"}]","start":"2026-03-30T14:40:00.000Z","end":"2026-03-30T15:05:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-5489\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-c2oybh8y4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085668-o3e1ers4c\"}]","start":"2026-01-30T22:20:00.000Z","end":"2026-01-30T22:45:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8329\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-1b6q785l6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085685-3ohxrkfti\"}]","start":"2026-03-04T15:40:00.000Z","end":"2026-03-04T16:05:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8922\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086216-yl8kntrim","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-1j0r55fa6\"}]","start":"2026-01-21T20:40:00.000Z","end":"2026-01-21T21:05:00.000Z","created":"2025-12-12T05:24:46.216Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6383\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-otg7wz7x4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085653-ef3lee8w3\"}]","start":"2026-01-08T14:25:00.000Z","end":"2026-01-08T14:50:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3653\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-r8krryq45","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085711-4odhk3sei\"}]","start":"2026-04-20T18:50:00.000Z","end":"2026-04-20T19:15:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7539\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-q2jffuqa9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085692-p3vzpzlvw\"}]","start":"2026-03-16T20:30:00.000Z","end":"2026-03-16T20:55:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5608\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-uunwunsil","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085685-9qyn65nbc\"}]","start":"2026-03-04T21:55:00.000Z","end":"2026-03-04T22:20:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5344\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-sjh0tmx3m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085692-ka9mnjsam\"}]","start":"2026-03-16T18:25:00.000Z","end":"2026-03-16T18:50:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4092\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-m9yftu8xv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085716-x23yayjnf\"}]","start":"2026-04-29T15:05:00.000Z","end":"2026-04-29T15:30:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5687\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-zezlmlxg4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085716-ei14q31mc\"}]","start":"2026-04-29T16:20:00.000Z","end":"2026-04-29T16:45:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7312\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-g6dz9s7jb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085714-y0ep0p4zi\"}]","start":"2026-04-23T17:10:00.000Z","end":"2026-04-23T17:35:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3373\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-23pewgvpq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085670-jk5cv6ipb\"}]","start":"2026-02-03T19:50:00.000Z","end":"2026-02-03T20:15:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8134\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-k6b3tab4o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085692-rdxypxuzz\"}]","start":"2026-03-13T18:50:00.000Z","end":"2026-03-13T19:15:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6287\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086217-16ix3cfbp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085643-lx13xoq3e\"}]","start":"2025-12-23T15:40:00.000Z","end":"2025-12-23T16:05:00.000Z","created":"2025-12-12T05:24:46.217Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1000\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086219-w5slennm6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085728-8hviwg635\"}]","start":"2026-05-21T18:50:00.000Z","end":"2026-05-21T19:15:00.000Z","created":"2025-12-12T05:24:46.219Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2943\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.219Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-j33pcgbro","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085709-dfsr2t90o\"}]","start":"2026-04-16T15:30:00.000Z","end":"2026-04-16T15:55:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6746\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-wdr0izknk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085722-35pobmw69\"}]","start":"2026-05-12T16:45:00.000Z","end":"2026-05-12T17:10:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3316\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-9pe1ydmec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-vdlqbzh94\"}]","start":"2026-04-27T16:45:00.000Z","end":"2026-04-27T17:10:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4800\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-5zr370abv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085678-mbjduergq\"}]","start":"2026-02-18T14:50:00.000Z","end":"2026-02-18T15:15:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8919\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-vh3xjoxlb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085725-1ox8gckbn\"}]","start":"2026-05-15T15:30:00.000Z","end":"2026-05-15T15:55:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6970\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-ydq6ebuvs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085729-fnq29b9du\"}]","start":"2026-05-25T13:00:00.000Z","end":"2026-05-25T13:25:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4698\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-azzzk4rel","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085678-d7tuez12i\"}]","start":"2026-02-18T16:30:00.000Z","end":"2026-02-18T16:55:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7700\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-3ig85l29w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085642-nv8bgpma8\"}]","start":"2025-12-19T22:20:00.000Z","end":"2025-12-19T22:45:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1313\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-ojo2726iz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085699-xrduuvll3\"}]","start":"2026-03-27T16:20:00.000Z","end":"2026-03-27T16:45:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7238\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-9gjlkkjjp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085709-zpafueg1z\"}]","start":"2026-04-15T20:05:00.000Z","end":"2026-04-15T20:30:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7497\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-tp65ngspy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085710-b95zemrs6\"}]","start":"2026-04-17T13:25:00.000Z","end":"2026-04-17T13:50:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2516\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086220-q3wt5qjxh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085663-p52q4xcwj\"}]","start":"2026-01-22T20:40:00.000Z","end":"2026-01-22T21:05:00.000Z","created":"2025-12-12T05:24:46.220Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-5216\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-0zp3hx9r7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085685-ptfe0w6iu\"}]","start":"2026-03-04T15:15:00.000Z","end":"2026-03-04T15:40:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6937\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-ijjnc9f4h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-v3kbqz7gv\"}]","start":"2026-02-27T19:25:00.000Z","end":"2026-02-27T19:50:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4665\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-yk8bnc7gq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085670-333ph7c21\"}]","start":"2026-02-04T15:40:00.000Z","end":"2026-02-04T16:05:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7375\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-9iunp32bv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085715-egv4x181b\"}]","start":"2026-04-28T15:30:00.000Z","end":"2026-04-28T15:55:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1070\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-9nmysa9uc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085732-nwlma3k4x\"}]","start":"2026-05-26T19:15:00.000Z","end":"2026-05-26T19:40:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5528\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-wxhmrmof4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085709-i6j6ulmbb\"}]","start":"2026-04-15T20:55:00.000Z","end":"2026-04-15T21:20:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1898\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-v2tda4ksn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085681-vabs491o9\"}]","start":"2026-02-24T18:10:00.000Z","end":"2026-02-24T18:35:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6531\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-9ptsoa1t1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085649-jzau3n5pz\"}]","start":"2025-12-30T19:50:00.000Z","end":"2025-12-30T20:15:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4145\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-h34df5kq2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085672-53crkhh82\"}]","start":"2026-02-09T20:40:00.000Z","end":"2026-02-09T21:05:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-4459\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-43lh9jw0e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085695-h0j3s8zjo\"}]","start":"2026-03-18T20:05:00.000Z","end":"2026-03-18T20:30:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2057\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-kzmlvcvhd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085696-u9puqnag7\"}]","start":"2026-03-20T17:35:00.000Z","end":"2026-03-20T18:00:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4009\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086221-xqt048k87","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085731-jbrgy59nf\"}]","start":"2026-05-25T20:05:00.000Z","end":"2026-05-25T20:30:00.000Z","created":"2025-12-12T05:24:46.221Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5185\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-lbnbby6wa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085656-4a3vw85w0\"}]","start":"2026-01-13T22:20:00.000Z","end":"2026-01-13T22:45:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7582\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-qo55ltsm0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085653-ufeqtx7bn\"}]","start":"2026-01-08T15:40:00.000Z","end":"2026-01-08T16:05:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5076\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-bpjwsurhu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085732-00oxt2oo6\"}]","start":"2026-05-26T18:50:00.000Z","end":"2026-05-26T19:15:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1109\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-4mmr6mi1e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085682-cgkyjbkjm\"}]","start":"2026-02-25T16:05:00.000Z","end":"2026-02-25T16:30:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8981\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-t0d1062nb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085727-4zty6iipr\"}]","start":"2026-05-19T17:35:00.000Z","end":"2026-05-19T18:00:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4326\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-rnqn5p82v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085697-9cx43fw8g\"}]","start":"2026-03-24T16:20:00.000Z","end":"2026-03-24T16:45:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9509\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-pgi55wgix","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085653-gggupqjl0\"}]","start":"2026-01-08T16:05:00.000Z","end":"2026-01-08T16:30:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-3923\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-qjluocu4f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085664-kj81yoplu\"}]","start":"2026-01-27T17:45:00.000Z","end":"2026-01-27T18:10:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6354\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-7gfiqj0ou","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085731-3iygcq7tg\"}]","start":"2026-05-25T20:30:00.000Z","end":"2026-05-25T20:55:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8375\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-8dp7vn37l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085725-cyxkp4pr7\"}]","start":"2026-05-14T17:35:00.000Z","end":"2026-05-14T18:00:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2361\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-nlkuss38v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085687-e0p217bsy\"}]","start":"2026-03-06T17:45:00.000Z","end":"2026-03-06T18:10:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3516\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-pmuzwgs1z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085682-j3tbf9i2s\"}]","start":"2026-02-25T14:00:00.000Z","end":"2026-02-25T14:25:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8054\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086222-3jrdhesi3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085683-bzs1qtcbw\"}]","start":"2026-02-27T19:50:00.000Z","end":"2026-02-27T20:15:00.000Z","created":"2025-12-12T05:24:46.222Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2387\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-46xnylrzz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085701-sinldcv53\"}]","start":"2026-04-01T15:05:00.000Z","end":"2026-04-01T15:30:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3792\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-v2e44ibgz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085651-wl5lek8gm\"}]","start":"2026-01-02T22:20:00.000Z","end":"2026-01-02T22:45:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5356\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-rd6ri76t3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085707-m6j4rcq7u\"}]","start":"2026-04-09T18:50:00.000Z","end":"2026-04-09T19:15:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6693\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-eamrylbk8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085703-6a4wyv8u6\"}]","start":"2026-04-03T15:05:00.000Z","end":"2026-04-03T15:30:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2823\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-quvl84mk2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085711-nobzf208k\"}]","start":"2026-04-21T14:15:00.000Z","end":"2026-04-21T14:40:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4500\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-1iekreaww","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085646-znky0iesv\"}]","start":"2025-12-26T14:00:00.000Z","end":"2025-12-26T14:25:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6392\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-wco9on3i6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085714-h72yjiozc\"}]","start":"2026-04-27T13:50:00.000Z","end":"2026-04-27T14:15:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-8997\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-x5zf6ccla","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085708-cpurqpcj5\"}]","start":"2026-04-14T17:10:00.000Z","end":"2026-04-14T17:35:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2808\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086223-jx5zkfx5n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085649-18kd00ywa\"}]","start":"2025-12-31T14:00:00.000Z","end":"2025-12-31T14:25:00.000Z","created":"2025-12-12T05:24:46.223Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5045\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-50zwdps1j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085696-4um30l6zm\"}]","start":"2026-03-20T20:30:00.000Z","end":"2026-03-20T20:55:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5998\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-ld6ep7hqc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085690-p8x8z8k5x\"}]","start":"2026-03-11T20:30:00.000Z","end":"2026-03-11T20:55:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2833\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-eiduaxztn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085650-z3nhuaj3x\"}]","start":"2026-01-01T14:00:00.000Z","end":"2026-01-01T14:25:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1861\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-riznhiq8g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085727-wevmqd8rw\"}]","start":"2026-05-19T14:15:00.000Z","end":"2026-05-19T14:40:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4436\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-m4j8yzoxo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085710-qrjxict74\"}]","start":"2026-04-20T14:40:00.000Z","end":"2026-04-20T15:05:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-2572\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-e0lew32cl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085643-f8nkp2o2t\"}]","start":"2025-12-22T15:15:00.000Z","end":"2025-12-22T15:40:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5736\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-tlr0j5w0p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-ufl77g6gb\"}]","start":"2026-02-26T17:20:00.000Z","end":"2026-02-26T17:45:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9817\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-a2ursjnk6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085674-xx7654avw\"}]","start":"2026-02-11T17:20:00.000Z","end":"2026-02-11T17:45:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7185\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-bvmtrvqie","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085730-g223nffh9\"}]","start":"2026-05-25T19:40:00.000Z","end":"2026-05-25T20:05:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8613\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-fdbedco05","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085698-egale9ae1\"}]","start":"2026-03-27T14:15:00.000Z","end":"2026-03-27T14:40:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4733\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-u1coyo9fi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-btmagrt2p\"}]","start":"2026-05-20T19:40:00.000Z","end":"2026-05-20T20:05:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8662\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086224-d32tzq4ho","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085656-8m7tamrg7\"}]","start":"2026-01-13T21:05:00.000Z","end":"2026-01-13T21:30:00.000Z","created":"2025-12-12T05:24:46.224Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4614\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-dtwsiwvyq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085655-8hm742vhh\"}]","start":"2026-01-12T15:15:00.000Z","end":"2026-01-12T15:40:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6852\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-hjxdvxllj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-6qzz0rzxk\"}]","start":"2026-05-21T13:00:00.000Z","end":"2026-05-21T13:25:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7457\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-mll8cfj96","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085726-nr5kh2ttz\"}]","start":"2026-05-18T15:30:00.000Z","end":"2026-05-18T15:55:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-1779\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-ardxz5aot","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085691-wpzpyofrx\"}]","start":"2026-03-12T17:35:00.000Z","end":"2026-03-12T18:00:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8669\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-rvntvge62","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085688-eq3qxqfwa\"}]","start":"2026-03-09T16:20:00.000Z","end":"2026-03-09T16:45:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8498\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-j6qg9g9na","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085662-2fmwxrg2r\"}]","start":"2026-01-21T16:55:00.000Z","end":"2026-01-21T17:20:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5043\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-za2cssffn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085680-e2bsr0tqw\"}]","start":"2026-02-23T19:50:00.000Z","end":"2026-02-23T20:15:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8162\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-qrlezyaoc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085729-0v4a6c2sp\"}]","start":"2026-05-25T13:25:00.000Z","end":"2026-05-25T13:50:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2019\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-35b0u7br4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085638-xboy2nrl8\"}]","start":"2025-12-12T18:35:00.000Z","end":"2025-12-12T19:00:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6187\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-fbpvw4cgi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085727-inom36ik9\"}]","start":"2026-05-20T18:50:00.000Z","end":"2026-05-20T19:15:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8866\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-afjnkj4yf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085727-9iz1rew1g\"}]","start":"2026-05-20T16:45:00.000Z","end":"2026-05-20T17:10:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-9399\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086225-spf6itje5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085714-cok5nfvl6\"}]","start":"2026-04-24T16:45:00.000Z","end":"2026-04-24T17:10:00.000Z","created":"2025-12-12T05:24:46.225Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7244\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-cxiy8g7lw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085701-n2yycsi3d\"}]","start":"2026-03-31T13:50:00.000Z","end":"2026-03-31T14:15:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5084\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-v06neixqd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085647-ohniv8frx\"}]","start":"2025-12-29T17:20:00.000Z","end":"2025-12-29T17:45:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3698\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-bihs3bkjw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085717-pm090srlu\"}]","start":"2026-04-30T20:30:00.000Z","end":"2026-04-30T20:55:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9347\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-8m5owtyi4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085721-jv741z8f4\"}]","start":"2026-05-08T13:25:00.000Z","end":"2026-05-08T13:50:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4706\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-bd7zcr0af","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085723-dxlgeo4xt\"}]","start":"2026-05-13T14:40:00.000Z","end":"2026-05-13T15:05:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-1216\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-ggh1dvwcn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085679-jcz0bj0kt\"}]","start":"2026-02-19T16:55:00.000Z","end":"2026-02-19T17:20:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7230\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-se23xb8ji","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085732-ro0sboz7t\"}]","start":"2026-05-26T18:00:00.000Z","end":"2026-05-26T18:25:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3911\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-aog1i5jnv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085644-0lx98r1lx\"}]","start":"2025-12-24T17:45:00.000Z","end":"2025-12-24T18:10:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7275\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-okk5omly1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085641-s3086gmzp\"}]","start":"2025-12-18T14:25:00.000Z","end":"2025-12-18T14:50:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-3678\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-kt9q4yqqa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085643-hzmqft6gg\"}]","start":"2025-12-22T19:25:00.000Z","end":"2025-12-22T19:50:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5692\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086226-3nlkg6x2l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085661-1awejsl4p\"}]","start":"2026-01-21T14:25:00.000Z","end":"2026-01-21T14:50:00.000Z","created":"2025-12-12T05:24:46.226Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5396\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-poct7sz64","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-lqp7azs48\"}]","start":"2026-04-27T17:35:00.000Z","end":"2026-04-27T18:00:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-6345\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-03syft752","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085701-8e990i9v1\"}]","start":"2026-03-30T21:20:00.000Z","end":"2026-03-30T21:45:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1044\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-xwvbpwtig","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085732-zgr8brrz3\"}]","start":"2026-05-27T19:15:00.000Z","end":"2026-05-27T19:40:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2911\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-x7rqgzh11","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085732-4t746i5g0\"}]","start":"2026-05-26T17:35:00.000Z","end":"2026-05-26T18:00:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3428\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-hlpcb6yka","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085728-pj5e6fgsy\"}]","start":"2026-05-21T17:10:00.000Z","end":"2026-05-21T17:35:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5558\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-hjizo416z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085703-d6ewxz36u\"}]","start":"2026-04-03T21:20:00.000Z","end":"2026-04-03T21:45:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9238\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-olt04g1sh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085642-614k16vr2\"}]","start":"2025-12-19T20:40:00.000Z","end":"2025-12-19T21:05:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5052\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-rqbxc376o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085731-irwz3t9pp\"}]","start":"2026-05-26T13:00:00.000Z","end":"2026-05-26T13:25:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5863\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-vfuvc9cg1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085682-tl6tkdsf2\"}]","start":"2026-02-25T16:55:00.000Z","end":"2026-02-25T17:20:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2378\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-1a1zri81h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085717-3hwpzvd7o\"}]","start":"2026-04-30T17:10:00.000Z","end":"2026-04-30T17:35:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7603\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-v1o1l49hl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085702-epm4ajnw9\"}]","start":"2026-04-01T16:45:00.000Z","end":"2026-04-01T17:10:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3370\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086227-47v0wh1sz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085729-qfabvyf7p\"}]","start":"2026-05-25T13:50:00.000Z","end":"2026-05-25T14:15:00.000Z","created":"2025-12-12T05:24:46.227Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6083\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-y5z2095iq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085671-a39cdna9x\"}]","start":"2026-02-06T16:05:00.000Z","end":"2026-02-06T16:30:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1724\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-ayy2gg54b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085675-dcxf5we1b\"}]","start":"2026-02-11T22:20:00.000Z","end":"2026-02-11T22:45:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6960\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-ylec1hznz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085695-9il8ju063\"}]","start":"2026-03-19T19:15:00.000Z","end":"2026-03-19T19:40:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5402\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-3n65cfch4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085662-tf2ss5aqh\"}]","start":"2026-01-22T19:00:00.000Z","end":"2026-01-22T19:25:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9985\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-2a2hho85n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085644-fnhuds7ls\"}]","start":"2025-12-24T21:30:00.000Z","end":"2025-12-24T21:55:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5353\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-cc21e5wn5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085711-xnht3vb25\"}]","start":"2026-04-20T16:45:00.000Z","end":"2026-04-20T17:10:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6939\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-kyp5mynlh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085707-j7wwkjztw\"}]","start":"2026-04-10T15:30:00.000Z","end":"2026-04-10T15:55:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7342\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-vey55fgpo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085726-04scobh2y\"}]","start":"2026-05-18T20:30:00.000Z","end":"2026-05-18T20:55:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5693\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-yzk0w1td8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085679-g470nqwff\"}]","start":"2026-02-20T14:25:00.000Z","end":"2026-02-20T14:50:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8215\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-jqrg8qane","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085646-nozgkjjjf\"}]","start":"2025-12-25T20:15:00.000Z","end":"2025-12-25T20:40:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6216\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-ssmkn5kt0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085669-8ab3h5zc3\"}]","start":"2026-02-02T14:00:00.000Z","end":"2026-02-02T14:25:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9361\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086228-t6dbc359p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085669-07rsfo7c6\"}]","start":"2026-02-02T22:20:00.000Z","end":"2026-02-02T22:45:00.000Z","created":"2025-12-12T05:24:46.228Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8955\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086229-sk788edy1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085722-ex4lzt4b4\"}]","start":"2026-05-11T14:40:00.000Z","end":"2026-05-11T15:05:00.000Z","created":"2025-12-12T05:24:46.229Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-9395\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.229Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086229-thww0ke6m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085671-zgn6e85w1\"}]","start":"2026-02-06T14:25:00.000Z","end":"2026-02-06T14:50:00.000Z","created":"2025-12-12T05:24:46.229Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9578\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.229Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086229-o99i3rkin","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085667-eigshc0j9\"}]","start":"2026-01-29T17:20:00.000Z","end":"2026-01-29T17:45:00.000Z","created":"2025-12-12T05:24:46.229Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-5169\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.229Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086229-au6xpibxp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085722-886jvtsu6\"}]","start":"2026-05-11T21:20:00.000Z","end":"2026-05-11T21:45:00.000Z","created":"2025-12-12T05:24:46.229Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7715\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.229Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086231-h8nn2g6xe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085685-y41fl55va\"}]","start":"2026-03-04T18:35:00.000Z","end":"2026-03-04T19:00:00.000Z","created":"2025-12-12T05:24:46.231Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1258\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086231-7jingfdoo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085699-joaqydwiv\"}]","start":"2026-03-27T20:55:00.000Z","end":"2026-03-27T21:20:00.000Z","created":"2025-12-12T05:24:46.231Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2663\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086231-1wyi8e6lv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085687-u02f8gk11\"}]","start":"2026-03-06T14:25:00.000Z","end":"2026-03-06T14:50:00.000Z","created":"2025-12-12T05:24:46.231Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8883\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086231-a22ldellp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085671-uiwc3ms05\"}]","start":"2026-02-06T15:40:00.000Z","end":"2026-02-06T16:05:00.000Z","created":"2025-12-12T05:24:46.231Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5577\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086231-kacdvmyx0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085705-zjo01jlfg\"}]","start":"2026-04-09T13:25:00.000Z","end":"2026-04-09T13:50:00.000Z","created":"2025-12-12T05:24:46.231Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4057\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086231-m0lbdal09","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085717-hfsb4ntdu\"}]","start":"2026-04-30T20:55:00.000Z","end":"2026-04-30T21:20:00.000Z","created":"2025-12-12T05:24:46.231Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8139\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086231-tk9t6ad4x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085727-jnndiua62\"}]","start":"2026-05-20T13:25:00.000Z","end":"2026-05-20T13:50:00.000Z","created":"2025-12-12T05:24:46.231Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5643\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-5k935nvec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085703-hyj41xiiq\"}]","start":"2026-04-03T18:50:00.000Z","end":"2026-04-03T19:15:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3714\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-elnvyasp0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085735-jd508synm\"}]","start":"2026-06-04T13:50:00.000Z","end":"2026-06-04T14:15:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5310\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-hxl350aav","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085679-y410glnod\"}]","start":"2026-02-20T14:00:00.000Z","end":"2026-02-20T14:25:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-5880\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-xvugp82di","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085679-9p82lkdj6\"}]","start":"2026-02-19T17:20:00.000Z","end":"2026-02-19T17:45:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9124\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-1n44ic9ep","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-r8o4sfuyp\"}]","start":"2026-02-12T15:40:00.000Z","end":"2026-02-12T16:05:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3711\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-7knsb8zzz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085682-pu68gj29v\"}]","start":"2026-02-25T19:00:00.000Z","end":"2026-02-25T19:25:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3500\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-vdp6rp82w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085692-mfl51v79l\"}]","start":"2026-03-13T20:30:00.000Z","end":"2026-03-13T20:55:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7406\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-lafaaj7cr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-27xx1nd2h\"}]","start":"2026-02-26T14:50:00.000Z","end":"2026-02-26T15:15:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3713\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-xgdupn272","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085727-hcnzrnt3d\"}]","start":"2026-05-19T16:20:00.000Z","end":"2026-05-19T16:45:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-7331\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-iptaij05n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085653-rcqcx6pzh\"}]","start":"2026-01-08T15:15:00.000Z","end":"2026-01-08T15:40:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7770\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-92wg28zgm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085695-jk4ts10uk\"}]","start":"2026-03-18T19:40:00.000Z","end":"2026-03-18T20:05:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9001\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086232-f3iunmfv6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085639-17fwymhgt\"}]","start":"2025-12-16T18:10:00.000Z","end":"2025-12-16T18:35:00.000Z","created":"2025-12-12T05:24:46.232Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1690\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-557t87kyi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-hxdkkk4iv\"}]","start":"2026-03-23T13:50:00.000Z","end":"2026-03-23T14:15:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-8798\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-ni1yn6pfk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085693-hxxgu1mvl\"}]","start":"2026-03-17T20:30:00.000Z","end":"2026-03-17T20:55:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9694\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-zolg4cjar","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-ed7f1ofcj\"}]","start":"2026-03-23T15:30:00.000Z","end":"2026-03-23T15:55:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-5765\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-jii9zxewx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085647-uw169kvgg\"}]","start":"2025-12-26T19:25:00.000Z","end":"2025-12-26T19:50:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4725\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-hy1kf2zl8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085679-ke9owyg3f\"}]","start":"2026-02-20T14:50:00.000Z","end":"2026-02-20T15:15:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9294\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-q5zugimu0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085701-ljizh7v2g\"}]","start":"2026-04-01T14:40:00.000Z","end":"2026-04-01T15:05:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8736\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-dhjn0ztxv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085680-wwmty7jog\"}]","start":"2026-02-23T19:00:00.000Z","end":"2026-02-23T19:25:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3959\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-9atq9ajj7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085721-3xz901dko\"}]","start":"2026-05-07T18:00:00.000Z","end":"2026-05-07T18:25:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9136\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-imn63knm5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085689-l2ew1mbf0\"}]","start":"2026-03-10T21:20:00.000Z","end":"2026-03-10T21:45:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8815\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-d4eqxbtzk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085707-p6rf51woc\"}]","start":"2026-04-10T20:55:00.000Z","end":"2026-04-10T21:20:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1129\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-6b1t8etjo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085639-1o0o0gday\"}]","start":"2025-12-16T19:00:00.000Z","end":"2025-12-16T19:25:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9616\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086233-im40nem7e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085729-tsah30zb0\"}]","start":"2026-05-25T14:15:00.000Z","end":"2026-05-25T14:40:00.000Z","created":"2025-12-12T05:24:46.233Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9414\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-8hv43bwwh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085717-e0rnjtvbz\"}]","start":"2026-04-30T19:40:00.000Z","end":"2026-04-30T20:05:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-6060\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-ptrpo2tib","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085684-3ydl1fuh2\"}]","start":"2026-03-02T18:35:00.000Z","end":"2026-03-02T19:00:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7330\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-hr0azrsfl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085639-l722cf6pz\"}]","start":"2025-12-17T14:25:00.000Z","end":"2025-12-17T14:50:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-5949\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-o54z7j12c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085708-2pqut5mw5\"}]","start":"2026-04-13T16:20:00.000Z","end":"2026-04-13T16:45:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6164\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-m0fwk78f1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085710-w138f7bum\"}]","start":"2026-04-16T21:20:00.000Z","end":"2026-04-16T21:45:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-7816\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-bieqa8npr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085680-syodd0nyi\"}]","start":"2026-02-23T21:05:00.000Z","end":"2026-02-23T21:30:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7381\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-45o66fejn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085689-htum77i4c\"}]","start":"2026-03-11T13:25:00.000Z","end":"2026-03-11T13:50:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3079\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-l9ilmj7jm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085688-4oqx1mbey\"}]","start":"2026-03-06T21:05:00.000Z","end":"2026-03-06T21:30:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-1365\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-ngyddmf14","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-9e04vf0n7\"}]","start":"2026-04-28T18:50:00.000Z","end":"2026-04-28T19:15:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9680\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-w8ugsn80j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085714-km9cf8v1c\"}]","start":"2026-04-24T15:55:00.000Z","end":"2026-04-24T16:20:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-2339\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-rhc8wq1hk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085715-a8u51ysdf\"}]","start":"2026-04-27T17:10:00.000Z","end":"2026-04-27T17:35:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6659\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086234-bc2pq5npk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085708-rpgmsj47z\"}]","start":"2026-04-14T13:50:00.000Z","end":"2026-04-14T14:15:00.000Z","created":"2025-12-12T05:24:46.234Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5460\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-8bzj7npn0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085715-zl49mfvyn\"}]","start":"2026-04-28T17:10:00.000Z","end":"2026-04-28T17:35:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4589\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-xfb91bjhx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085726-395plzl5w\"}]","start":"2026-05-18T18:25:00.000Z","end":"2026-05-18T18:50:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9323\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-o1ap1s762","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085679-aiiktxfh3\"}]","start":"2026-02-19T16:05:00.000Z","end":"2026-02-19T16:30:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-9777\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-v97zg6bfq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085672-2iixqbxxn\"}]","start":"2026-02-09T21:05:00.000Z","end":"2026-02-09T21:30:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3407\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-budxpwrbl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085702-yb68xaggq\"}]","start":"2026-04-02T19:40:00.000Z","end":"2026-04-02T20:05:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4924\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-mid2su2tk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085697-zg56563rw\"}]","start":"2026-03-24T19:40:00.000Z","end":"2026-03-24T20:05:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1439\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-a0l3pqy2f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085638-h0p4fr1b4\"}]","start":"2025-12-12T15:15:00.000Z","end":"2025-12-12T15:40:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7618\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-4ubefu9g2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085711-9t81uxdw3\"}]","start":"2026-04-21T13:50:00.000Z","end":"2026-04-21T14:15:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6196\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-7117hzk41","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085736-t2nhz3f1t\"}]","start":"2026-06-04T15:05:00.000Z","end":"2026-06-04T15:30:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7281\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-5brtvi93w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085725-1vzn2zi7q\"}]","start":"2026-05-15T16:20:00.000Z","end":"2026-05-15T16:45:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8369\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-e84pmcpdk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085726-y52ca09v7\"}]","start":"2026-05-18T17:35:00.000Z","end":"2026-05-18T18:00:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6710\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086235-v4tkl0djn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085717-but4qngsz\"}]","start":"2026-04-30T16:20:00.000Z","end":"2026-04-30T16:45:00.000Z","created":"2025-12-12T05:24:46.235Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-1720\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086236-ecivtlluj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-0pxbptjym\"}]","start":"2026-04-27T16:20:00.000Z","end":"2026-04-27T16:45:00.000Z","created":"2025-12-12T05:24:46.236Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-5431\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086236-zhrwa97dd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085655-i7wza6so1\"}]","start":"2026-01-08T20:40:00.000Z","end":"2026-01-08T21:05:00.000Z","created":"2025-12-12T05:24:46.236Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3325\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086236-vothm3iu6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085671-x1sy8oeve\"}]","start":"2026-02-04T22:20:00.000Z","end":"2026-02-04T22:45:00.000Z","created":"2025-12-12T05:24:46.236Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4222\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086236-nm2duv9xx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085725-6rua9daip\"}]","start":"2026-05-15T15:05:00.000Z","end":"2026-05-15T15:30:00.000Z","created":"2025-12-12T05:24:46.236Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7382\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086236-88fqjmthd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085710-ix71mxep2\"}]","start":"2026-04-16T20:55:00.000Z","end":"2026-04-16T21:20:00.000Z","created":"2025-12-12T05:24:46.236Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2340\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086236-j2sz6uuc3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085639-uwju05iw5\"}]","start":"2025-12-15T21:30:00.000Z","end":"2025-12-15T21:55:00.000Z","created":"2025-12-12T05:24:46.236Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-9972\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086236-vcxk0rpnf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085685-8g0lb92mg\"}]","start":"2026-03-03T19:00:00.000Z","end":"2026-03-03T19:25:00.000Z","created":"2025-12-12T05:24:46.236Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8793\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086236-hfmm0i7jr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085707-80kf9brk6\"}]","start":"2026-04-10T19:40:00.000Z","end":"2026-04-10T20:05:00.000Z","created":"2025-12-12T05:24:46.236Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-1663\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086237-xn7hour87","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085720-eklrpxdis\"}]","start":"2026-05-07T13:25:00.000Z","end":"2026-05-07T13:50:00.000Z","created":"2025-12-12T05:24:46.237Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3335\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.237Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086237-w60gmczdo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085644-0xf3on5k5\"}]","start":"2025-12-24T18:35:00.000Z","end":"2025-12-24T19:00:00.000Z","created":"2025-12-12T05:24:46.237Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1816\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.237Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086238-jn8uefykx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085680-0lsdrfwer\"}]","start":"2026-02-24T14:00:00.000Z","end":"2026-02-24T14:25:00.000Z","created":"2025-12-12T05:24:46.238Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-4029\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.238Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086238-f3x490du7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085729-ey41z5fhu\"}]","start":"2026-05-25T14:40:00.000Z","end":"2026-05-25T15:05:00.000Z","created":"2025-12-12T05:24:46.238Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4361\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.238Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086238-matby0v60","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085709-ltavnuokv\"}]","start":"2026-04-16T16:20:00.000Z","end":"2026-04-16T16:45:00.000Z","created":"2025-12-12T05:24:46.238Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3756\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.238Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086239-fshtm4xr2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085738-okfh7zf3z\"}]","start":"2026-06-05T17:35:00.000Z","end":"2026-06-05T18:00:00.000Z","created":"2025-12-12T05:24:46.239Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4060\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086239-k98xkow1v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085666-g0wvayvdq\"}]","start":"2026-01-28T21:30:00.000Z","end":"2026-01-28T21:55:00.000Z","created":"2025-12-12T05:24:46.239Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9558\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086239-9j1ai2xv4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085715-k1zmz6hw8\"}]","start":"2026-04-28T15:05:00.000Z","end":"2026-04-28T15:30:00.000Z","created":"2025-12-12T05:24:46.239Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3632\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086239-26l7ajawt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085646-wveboupje\"}]","start":"2025-12-26T14:25:00.000Z","end":"2025-12-26T14:50:00.000Z","created":"2025-12-12T05:24:46.239Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4951\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086239-a9oyb7gbg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085676-9o8urq9ih\"}]","start":"2026-02-12T21:30:00.000Z","end":"2026-02-12T21:55:00.000Z","created":"2025-12-12T05:24:46.239Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4035\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086239-9ex8sl44y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085692-ioclaqv26\"}]","start":"2026-03-16T20:55:00.000Z","end":"2026-03-16T21:20:00.000Z","created":"2025-12-12T05:24:46.239Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7741\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086239-rxj1f7xqq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085663-rfilpx8jt\"}]","start":"2026-01-23T15:15:00.000Z","end":"2026-01-23T15:40:00.000Z","created":"2025-12-12T05:24:46.239Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3862\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086239-kqi0kjjxy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085667-ctfuho12a\"}]","start":"2026-01-30T14:25:00.000Z","end":"2026-01-30T14:50:00.000Z","created":"2025-12-12T05:24:46.239Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3516\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-8269d1es7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085703-rf2hnucd0\"}]","start":"2026-04-03T13:25:00.000Z","end":"2026-04-03T13:50:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6418\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-uzlbx2rex","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085714-y4elupzp8\"}]","start":"2026-04-23T18:50:00.000Z","end":"2026-04-23T19:15:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4455\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-7yau92620","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-xqncuiw28\"}]","start":"2026-02-26T20:15:00.000Z","end":"2026-02-26T20:40:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8146\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-o9huij3o9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085638-ex526zizx\"}]","start":"2025-12-12T16:55:00.000Z","end":"2025-12-12T17:20:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2095\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-ocmdqzjdn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085727-umdb74q3j\"}]","start":"2026-05-20T15:30:00.000Z","end":"2026-05-20T15:55:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9742\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-p82b5gxwx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085734-56xto81w7\"}]","start":"2026-06-01T14:40:00.000Z","end":"2026-06-01T15:05:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8364\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-8j1nk2w5q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085679-ciipybl74\"}]","start":"2026-02-20T21:05:00.000Z","end":"2026-02-20T21:30:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2386\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-uydun3ecu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085735-yk17awjda\"}]","start":"2026-06-03T18:50:00.000Z","end":"2026-06-03T19:15:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1119\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086240-fgi1lxzc4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085641-i9q5d06wg\"}]","start":"2025-12-17T21:05:00.000Z","end":"2025-12-17T21:30:00.000Z","created":"2025-12-12T05:24:46.240Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4074\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-yfvkfg0y7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085673-u1dq8yu3q\"}]","start":"2026-02-11T14:50:00.000Z","end":"2026-02-11T15:15:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1723\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-cv6h5c38i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085642-ve4dnll1e\"}]","start":"2025-12-18T19:00:00.000Z","end":"2025-12-18T19:25:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-9828\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-dmkjam9y8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085707-f47gguxfe\"}]","start":"2026-04-10T20:05:00.000Z","end":"2026-04-10T20:30:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7213\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-70084ckoj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085684-dtcvncoc8\"}]","start":"2026-03-03T14:25:00.000Z","end":"2026-03-03T14:50:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1535\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-qor4tdtul","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085658-vahnjp40u\"}]","start":"2026-01-15T19:00:00.000Z","end":"2026-01-15T19:25:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-3923\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-w5vumt6cb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085642-0den2tyra\"}]","start":"2025-12-19T15:40:00.000Z","end":"2025-12-19T16:05:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2904\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-xlvs67aky","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085688-q7q90uncm\"}]","start":"2026-03-09T13:00:00.000Z","end":"2026-03-09T13:25:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7555\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-sr7lz9tyt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085671-bry1d352c\"}]","start":"2026-02-05T14:00:00.000Z","end":"2026-02-05T14:25:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5602\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-uzi2vikdq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085687-44wp7zeqj\"}]","start":"2026-03-06T16:30:00.000Z","end":"2026-03-06T16:55:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3102\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-620ckjzog","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085702-zd305e6vi\"}]","start":"2026-04-02T14:40:00.000Z","end":"2026-04-02T15:05:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3000\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086241-c86x1f1jg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085677-ots6z42vi\"}]","start":"2026-02-16T15:15:00.000Z","end":"2026-02-16T15:40:00.000Z","created":"2025-12-12T05:24:46.241Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8063\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-n4i2ucla2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085653-iny3ld8fn\"}]","start":"2026-01-07T17:20:00.000Z","end":"2026-01-07T17:45:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1950\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-vlioonla1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085725-8mptd4zi4\"}]","start":"2026-05-15T14:40:00.000Z","end":"2026-05-15T15:05:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6328\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-ja3hkbp30","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085729-msq6mvryp\"}]","start":"2026-05-22T16:20:00.000Z","end":"2026-05-22T16:45:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4245\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-7y3nzf35z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085650-38120kvvi\"}]","start":"2025-12-31T21:30:00.000Z","end":"2025-12-31T21:55:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6082\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-o9fu5gjri","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085640-v0reyttrh\"}]","start":"2025-12-17T16:55:00.000Z","end":"2025-12-17T17:20:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-3242\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-4det7jd4p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085671-eqjujx7l0\"}]","start":"2026-02-06T15:15:00.000Z","end":"2026-02-06T15:40:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7478\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-6ec7dl4cs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085664-3cv4ye1hb\"}]","start":"2026-01-26T17:20:00.000Z","end":"2026-01-26T17:45:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1602\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-1l6lmj7a7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085727-dopk34tkr\"}]","start":"2026-05-19T15:05:00.000Z","end":"2026-05-19T15:30:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8751\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-kijc2op8y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085733-bmq1ugi20\"}]","start":"2026-05-29T13:50:00.000Z","end":"2026-05-29T14:15:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3171\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-wr9ace5ho","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085673-bhyy4kfqt\"}]","start":"2026-02-10T22:20:00.000Z","end":"2026-02-10T22:45:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7959\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086242-hnlqr2bo6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085663-kzjflwe45\"}]","start":"2026-01-22T21:05:00.000Z","end":"2026-01-22T21:30:00.000Z","created":"2025-12-12T05:24:46.242Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4572\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086244-tso8xstqh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085723-bi2sktxu2\"}]","start":"2026-05-13T15:55:00.000Z","end":"2026-05-13T16:20:00.000Z","created":"2025-12-12T05:24:46.244Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8446\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.244Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086245-ts35xv0pv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085688-r6mi1o1z1\"}]","start":"2026-03-09T20:05:00.000Z","end":"2026-03-09T20:30:00.000Z","created":"2025-12-12T05:24:46.245Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3974\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.245Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086245-5wylzsla3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085738-0m1xys5j9\"}]","start":"2026-06-05T20:55:00.000Z","end":"2026-06-05T21:20:00.000Z","created":"2025-12-12T05:24:46.245Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6152\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.245Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086245-qnze3y54p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085691-ktbp3g34o\"}]","start":"2026-03-12T15:55:00.000Z","end":"2026-03-12T16:20:00.000Z","created":"2025-12-12T05:24:46.245Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1230\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.245Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086245-njbo3beax","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085662-u9nl9pukv\"}]","start":"2026-01-22T15:15:00.000Z","end":"2026-01-22T15:40:00.000Z","created":"2025-12-12T05:24:46.245Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7860\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.245Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086247-8wgtfxdel","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-ni0oxvd3v\"}]","start":"2026-05-22T13:00:00.000Z","end":"2026-05-22T13:25:00.000Z","created":"2025-12-12T05:24:46.247Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6869\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086247-i0v5gmwl0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085695-28ixkgh9x\"}]","start":"2026-03-19T13:00:00.000Z","end":"2026-03-19T13:25:00.000Z","created":"2025-12-12T05:24:46.247Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3388\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086247-gs16ft0dd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085673-ozemjtfm3\"}]","start":"2026-02-10T15:15:00.000Z","end":"2026-02-10T15:40:00.000Z","created":"2025-12-12T05:24:46.247Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2775\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086247-b47qwlikm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085714-vbhaxtvbp\"}]","start":"2026-04-23T16:45:00.000Z","end":"2026-04-23T17:10:00.000Z","created":"2025-12-12T05:24:46.247Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1896\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086247-rod63vi21","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085716-xsi2hbbh2\"}]","start":"2026-04-28T19:40:00.000Z","end":"2026-04-28T20:05:00.000Z","created":"2025-12-12T05:24:46.247Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4579\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-c7g6kno3g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085686-x0ghos95m\"}]","start":"2026-03-05T19:50:00.000Z","end":"2026-03-05T20:15:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2219\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-15tx5dl1x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085684-rbtu5xb84\"}]","start":"2026-03-02T20:15:00.000Z","end":"2026-03-02T20:40:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7574\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-lkeoqv2d2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085700-ttl0sse0k\"}]","start":"2026-03-30T16:20:00.000Z","end":"2026-03-30T16:45:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-7833\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-3fvd8l6dr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-qek8r8sgf\"}]","start":"2026-04-29T14:40:00.000Z","end":"2026-04-29T15:05:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8721\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-qgrsb6wr0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085663-9jrtfz80o\"}]","start":"2026-01-22T22:20:00.000Z","end":"2026-01-22T22:45:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8810\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-vfdeiz0qf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085649-ihrkhprx7\"}]","start":"2025-12-29T22:20:00.000Z","end":"2025-12-29T22:45:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9647\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-e84fdqidb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085698-emto2177o\"}]","start":"2026-03-26T15:55:00.000Z","end":"2026-03-26T16:20:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-2715\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-w8vcfi2w9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085726-td76b79ej\"}]","start":"2026-05-18T20:55:00.000Z","end":"2026-05-18T21:20:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7915\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-6vx2mifgj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085687-bmmwseyr6\"}]","start":"2026-03-05T21:30:00.000Z","end":"2026-03-05T21:55:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3697\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-o7zgqnwgf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085727-0xrwxncs0\"}]","start":"2026-05-19T20:30:00.000Z","end":"2026-05-19T20:55:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-6052\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-cgzbd27sa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085734-vf3ul0oxk\"}]","start":"2026-05-29T20:55:00.000Z","end":"2026-05-29T21:20:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1460\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086248-qt1vrmux4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085733-mridm8615\"}]","start":"2026-05-29T13:25:00.000Z","end":"2026-05-29T13:50:00.000Z","created":"2025-12-12T05:24:46.248Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5241\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-t7ogdjjkj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085695-chh46jlgx\"}]","start":"2026-03-19T21:20:00.000Z","end":"2026-03-19T21:45:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2903\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-08l7divft","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085670-6jo8aei0b\"}]","start":"2026-02-04T15:15:00.000Z","end":"2026-02-04T15:40:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1024\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-41cr5s365","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-k9wb9qmes\"}]","start":"2026-01-14T16:55:00.000Z","end":"2026-01-14T17:20:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3394\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-ulmiozoqv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085682-j7a4lmvvs\"}]","start":"2026-02-24T22:20:00.000Z","end":"2026-02-24T22:45:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-6198\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-dqtmg1oit","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085697-25cv7tgho\"}]","start":"2026-03-25T13:50:00.000Z","end":"2026-03-25T14:15:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8754\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-jernj6nk0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085735-pecwb2f8r\"}]","start":"2026-06-02T18:25:00.000Z","end":"2026-06-02T18:50:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9857\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-7irdmc2qk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085738-22r6al0y7\"}]","start":"2026-06-05T16:20:00.000Z","end":"2026-06-05T16:45:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4690\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-taffindby","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085727-uxovuweof\"}]","start":"2026-05-20T16:20:00.000Z","end":"2026-05-20T16:45:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6228\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-9533irwa8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-bxoz1x8g3\"}]","start":"2026-02-27T15:15:00.000Z","end":"2026-02-27T15:40:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4906\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-m8i1zonct","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085725-vjbzo8fav\"}]","start":"2026-05-14T14:15:00.000Z","end":"2026-05-14T14:40:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6867\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-t594f5si7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085696-gou68yd86\"}]","start":"2026-03-20T20:55:00.000Z","end":"2026-03-20T21:20:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9875\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-jw5olh4jc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085642-mnnpdt6wx\"}]","start":"2025-12-19T18:10:00.000Z","end":"2025-12-19T18:35:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9305\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086249-rko06gf1z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085678-8ilip5kxy\"}]","start":"2026-02-18T15:40:00.000Z","end":"2026-02-18T16:05:00.000Z","created":"2025-12-12T05:24:46.249Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6418\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-f86fkyde1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085652-c8emrg787\"}]","start":"2026-01-06T21:55:00.000Z","end":"2026-01-06T22:20:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7713\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-tbgixe5f6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085707-jm7z6hu5l\"}]","start":"2026-04-10T21:20:00.000Z","end":"2026-04-10T21:45:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7114\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-qdt377b4t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-6se613r80\"}]","start":"2026-01-21T19:25:00.000Z","end":"2026-01-21T19:50:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7077\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-by5bg5ahz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085731-7jna24y5h\"}]","start":"2026-05-26T15:55:00.000Z","end":"2026-05-26T16:20:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4121\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-o8zjujqh7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085638-5hh9pm6p9\"}]","start":"2025-12-12T18:10:00.000Z","end":"2025-12-12T18:35:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5049\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-i7ajjmjx8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-jouvcx10x\"}]","start":"2026-04-29T21:20:00.000Z","end":"2026-04-29T21:45:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9700\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-skoe34ap8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085729-0wwzfxnh4\"}]","start":"2026-05-22T20:30:00.000Z","end":"2026-05-22T20:55:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6387\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-e7hhuauaz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085645-j50685sjx\"}]","start":"2025-12-25T14:25:00.000Z","end":"2025-12-25T14:50:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7305\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-9ip89kf6e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085672-zj6xl80qv\"}]","start":"2026-02-09T21:30:00.000Z","end":"2026-02-09T21:55:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3686\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-z1tq2eal1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085675-jv8y76sg9\"}]","start":"2026-02-11T21:55:00.000Z","end":"2026-02-11T22:20:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8263\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-69g65p3to","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085711-fr9weapia\"}]","start":"2026-04-20T17:10:00.000Z","end":"2026-04-20T17:35:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-9319\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086250-ld1seo4vb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085716-m625v94ep\"}]","start":"2026-04-29T18:25:00.000Z","end":"2026-04-29T18:50:00.000Z","created":"2025-12-12T05:24:46.250Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4971\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-bk0sd4wyq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085653-yn8skjov5\"}]","start":"2026-01-08T20:15:00.000Z","end":"2026-01-08T20:40:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-6865\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-035sjz7m9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085669-a7chd7tdq\"}]","start":"2026-02-02T20:40:00.000Z","end":"2026-02-02T21:05:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2298\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-bqagu6b8x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085681-v6plwzgob\"}]","start":"2026-02-24T15:40:00.000Z","end":"2026-02-24T16:05:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5346\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-8o37ldflq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085673-6vibgg2h3\"}]","start":"2026-02-11T14:25:00.000Z","end":"2026-02-11T14:50:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1363\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-o4u7js428","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085740-8o78qz6wz\"}]","start":"2026-06-09T19:15:00.000Z","end":"2026-06-09T19:40:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4139\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-t2u2q7xes","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085734-vr0cp2j0w\"}]","start":"2026-06-02T16:45:00.000Z","end":"2026-06-02T17:10:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-3127\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-l49do20lq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085650-vtdhiih17\"}]","start":"2025-12-31T22:20:00.000Z","end":"2025-12-31T22:45:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5331\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-l1u7j7oig","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085710-fdqta6fwc\"}]","start":"2026-04-17T17:10:00.000Z","end":"2026-04-17T17:35:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7779\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-g74wku4qv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085729-8qfm2e2ys\"}]","start":"2026-05-22T17:35:00.000Z","end":"2026-05-22T18:00:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9190\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-9tralk8nj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085734-fnmdb2ob9\"}]","start":"2026-05-29T21:20:00.000Z","end":"2026-05-29T21:45:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7366\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-5ofoclw70","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085656-sonxqtrmu\"}]","start":"2026-01-13T17:45:00.000Z","end":"2026-01-13T18:10:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3220\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-nfm6qnn6t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085670-cx50j6ahl\"}]","start":"2026-02-04T14:50:00.000Z","end":"2026-02-04T15:15:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7864\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086251-2n3806bao","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085693-0awt3owje\"}]","start":"2026-03-18T13:25:00.000Z","end":"2026-03-18T13:50:00.000Z","created":"2025-12-12T05:24:46.251Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6745\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-bxos3avxy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085645-rq62pzxbr\"}]","start":"2025-12-25T15:40:00.000Z","end":"2025-12-25T16:05:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1004\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-v44fwp0op","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-4no3y6be7\"}]","start":"2026-01-15T16:05:00.000Z","end":"2026-01-15T16:30:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1030\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-02x25lzsl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085684-2r1igg4d0\"}]","start":"2026-03-03T14:00:00.000Z","end":"2026-03-03T14:25:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1170\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-pjl97qd46","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085685-t7h500fee\"}]","start":"2026-03-04T19:25:00.000Z","end":"2026-03-04T19:50:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5003\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-9jsfdqpzs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-hai5d5ztd\"}]","start":"2026-01-21T21:30:00.000Z","end":"2026-01-21T21:55:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2415\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-ttf1qtixt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085646-hzbe9ceky\"}]","start":"2025-12-25T22:20:00.000Z","end":"2025-12-25T22:45:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8885\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-qklnf8l0l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085692-jyfbv7rba\"}]","start":"2026-03-13T18:25:00.000Z","end":"2026-03-13T18:50:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7949\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-o41me2mxh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-v27vspxxk\"}]","start":"2026-01-15T15:15:00.000Z","end":"2026-01-15T15:40:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2931\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-r06oq34dh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085642-sgwehlw71\"}]","start":"2025-12-22T14:00:00.000Z","end":"2025-12-22T14:25:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6133\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-rk5upd8jf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085738-ipugukyt5\"}]","start":"2026-06-05T19:40:00.000Z","end":"2026-06-05T20:05:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2077\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-rj6pcjryt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085727-kaj7jbp7t\"}]","start":"2026-05-19T19:15:00.000Z","end":"2026-05-19T19:40:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8029\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086252-jw45l2rux","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085638-c0z4zjh4k\"}]","start":"2025-12-12T19:25:00.000Z","end":"2025-12-12T19:50:00.000Z","created":"2025-12-12T05:24:46.252Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5284\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-2f3fake4v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085704-wz8dtpu3x\"}]","start":"2026-04-06T21:20:00.000Z","end":"2026-04-06T21:45:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1466\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-u7i3fl5wh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085709-edfwvbthn\"}]","start":"2026-04-15T14:15:00.000Z","end":"2026-04-15T14:40:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3174\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-t9e9eac19","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085732-uyp5b5l1g\"}]","start":"2026-05-26T20:05:00.000Z","end":"2026-05-26T20:30:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1168\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-14mag5734","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085692-mtxa3dzg8\"}]","start":"2026-03-16T21:20:00.000Z","end":"2026-03-16T21:45:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9147\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-cgtzqijkq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085657-gbq9rnezz\"}]","start":"2026-01-15T17:20:00.000Z","end":"2026-01-15T17:45:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6991\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-b5c1fogb9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085684-bvuwqmw6j\"}]","start":"2026-03-02T15:40:00.000Z","end":"2026-03-02T16:05:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2024\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-jxqcqpwll","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085708-m628ozlmj\"}]","start":"2026-04-14T20:05:00.000Z","end":"2026-04-14T20:30:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3193\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-w8k0y676z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085708-ykck7ghyz\"}]","start":"2026-04-14T13:25:00.000Z","end":"2026-04-14T13:50:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9846\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-r34ncv9f2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085684-uluvykxqq\"}]","start":"2026-03-03T18:10:00.000Z","end":"2026-03-03T18:35:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-9916\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-e384jl8af","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085658-5svtvkgvf\"}]","start":"2026-01-16T17:20:00.000Z","end":"2026-01-16T17:45:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3521\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-r642xrl94","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085714-x5k082vk5\"}]","start":"2026-04-23T19:15:00.000Z","end":"2026-04-23T19:40:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1568\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-376o8z33n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085685-n1tbkr2yi\"}]","start":"2026-03-04T14:00:00.000Z","end":"2026-03-04T14:25:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6273\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086253-141nut7d9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-p73g6yyxy\"}]","start":"2026-02-26T15:15:00.000Z","end":"2026-02-26T15:40:00.000Z","created":"2025-12-12T05:24:46.253Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7318\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-kb3m9nwpd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085666-88gjodnrg\"}]","start":"2026-01-28T15:40:00.000Z","end":"2026-01-28T16:05:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9243\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-wekga1fby","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085683-wp6sxqlcf\"}]","start":"2026-02-26T14:25:00.000Z","end":"2026-02-26T14:50:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-2536\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-v14z6vqxy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085639-4quhze0ml\"}]","start":"2025-12-16T17:45:00.000Z","end":"2025-12-16T18:10:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9898\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-el8afs123","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085735-65rxdarvn\"}]","start":"2026-06-03T14:15:00.000Z","end":"2026-06-03T14:40:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6858\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-cwd2fcuvq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085721-0or837x7g\"}]","start":"2026-05-07T15:55:00.000Z","end":"2026-05-07T16:20:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8535\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-wnsun2lkp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085650-rbrox6h59\"}]","start":"2025-12-31T18:35:00.000Z","end":"2025-12-31T19:00:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9159\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-8ed2entwb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085650-vw4d97psk\"}]","start":"2026-01-01T15:15:00.000Z","end":"2026-01-01T15:40:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7874\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-hmdngq3jf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085670-pif4vnxdi\"}]","start":"2026-02-04T17:20:00.000Z","end":"2026-02-04T17:45:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5100\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-vd2nqeodc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085739-eqacrkhj2\"}]","start":"2026-06-08T20:55:00.000Z","end":"2026-06-08T21:20:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8417\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-ere50wuey","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085647-d4omsngiv\"}]","start":"2025-12-26T21:30:00.000Z","end":"2025-12-26T21:55:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4355\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-08td98s48","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085735-6txnihnh6\"}]","start":"2026-06-03T20:05:00.000Z","end":"2026-06-03T20:30:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8178\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086254-zqu5e88sx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085650-di296j1do\"}]","start":"2025-12-31T20:15:00.000Z","end":"2025-12-31T20:40:00.000Z","created":"2025-12-12T05:24:46.254Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-6635\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-thnvpcgkg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085685-v8tiv9lgc\"}]","start":"2026-03-04T17:20:00.000Z","end":"2026-03-04T17:45:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1491\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-1y8b3393n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085646-9nr9z119h\"}]","start":"2025-12-25T19:25:00.000Z","end":"2025-12-25T19:50:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2808\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-i2slpzc4r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085643-dcp2gzj70\"}]","start":"2025-12-23T18:10:00.000Z","end":"2025-12-23T18:35:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1632\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-fv3zsg8rn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085655-leg1qly26\"}]","start":"2026-01-09T14:00:00.000Z","end":"2026-01-09T14:25:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-7352\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-usuic5qmj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085726-l71glilmg\"}]","start":"2026-05-18T15:55:00.000Z","end":"2026-05-18T16:20:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6132\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-iruo2l6cd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085716-8wrin19ea\"}]","start":"2026-04-29T14:15:00.000Z","end":"2026-04-29T14:40:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-9408\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-334mvzfvd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085740-5d12xn3ob\"}]","start":"2026-06-09T14:40:00.000Z","end":"2026-06-09T15:05:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4968\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-2e8iye8fs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085667-uxbrj0syq\"}]","start":"2026-01-29T16:55:00.000Z","end":"2026-01-29T17:20:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7861\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-a8ajtqczy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085694-ttekllem5\"}]","start":"2026-03-18T19:15:00.000Z","end":"2026-03-18T19:40:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3315\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-t79uish4i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085735-he0grh4ux\"}]","start":"2026-06-03T16:45:00.000Z","end":"2026-06-03T17:10:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2759\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-6efhts36c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085735-6ka97rzq7\"}]","start":"2026-06-03T15:30:00.000Z","end":"2026-06-03T15:55:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8641\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-mluffwx6a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085701-lsnj2bi2q\"}]","start":"2026-03-31T15:05:00.000Z","end":"2026-03-31T15:30:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6320\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086255-jfwlxhjgw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085715-nnumxhvho\"}]","start":"2026-04-28T13:25:00.000Z","end":"2026-04-28T13:50:00.000Z","created":"2025-12-12T05:24:46.255Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8088\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086256-fv6bh3ukl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085691-82wv467gn\"}]","start":"2026-03-12T21:20:00.000Z","end":"2026-03-12T21:45:00.000Z","created":"2025-12-12T05:24:46.256Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6064\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.256Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086256-vcfxkqfqn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085691-amkoo7wbs\"}]","start":"2026-03-12T17:10:00.000Z","end":"2026-03-12T17:35:00.000Z","created":"2025-12-12T05:24:46.256Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9639\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.256Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086256-6i3wvuv7o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-rnze30dr6\"}]","start":"2026-04-27T18:50:00.000Z","end":"2026-04-27T19:15:00.000Z","created":"2025-12-12T05:24:46.256Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-4257\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.256Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086256-2ha7s9gbw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085728-lkqwak8cy\"}]","start":"2026-05-22T15:30:00.000Z","end":"2026-05-22T15:55:00.000Z","created":"2025-12-12T05:24:46.256Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1413\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.256Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086258-vrdwfwr9e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085687-9219yv690\"}]","start":"2026-03-06T14:50:00.000Z","end":"2026-03-06T15:15:00.000Z","created":"2025-12-12T05:24:46.258Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4677\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086258-3k9kvtxz5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085651-vgob7bivb\"}]","start":"2026-01-02T21:30:00.000Z","end":"2026-01-02T21:55:00.000Z","created":"2025-12-12T05:24:46.258Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2721\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086258-sec3nye4y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085690-vhp03tz9x\"}]","start":"2026-03-11T20:55:00.000Z","end":"2026-03-11T21:20:00.000Z","created":"2025-12-12T05:24:46.258Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7328\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086258-wecpodtor","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085685-w22zymyd6\"}]","start":"2026-03-04T17:45:00.000Z","end":"2026-03-04T18:10:00.000Z","created":"2025-12-12T05:24:46.258Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-6067\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086258-r3h9thhek","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085673-7j0e9poj5\"}]","start":"2026-02-11T14:00:00.000Z","end":"2026-02-11T14:25:00.000Z","created":"2025-12-12T05:24:46.258Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9265\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086258-i600wyxqs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085703-97llqknrv\"}]","start":"2026-04-03T16:20:00.000Z","end":"2026-04-03T16:45:00.000Z","created":"2025-12-12T05:24:46.258Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6697\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086258-mthhgvv8i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085651-m6ssf08ad\"}]","start":"2026-01-05T14:25:00.000Z","end":"2026-01-05T14:50:00.000Z","created":"2025-12-12T05:24:46.258Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-5977\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-ktkd6udxa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085652-5jbs1no52\"}]","start":"2026-01-06T16:30:00.000Z","end":"2026-01-06T16:55:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8197\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-3dtb19zf7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085729-3s57qfu2w\"}]","start":"2026-05-25T15:05:00.000Z","end":"2026-05-25T15:30:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5214\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-vfohyco75","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085673-iifli5lh9\"}]","start":"2026-02-10T20:40:00.000Z","end":"2026-02-10T21:05:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3178\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-pwyoib9fu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085691-1r3wfyd01\"}]","start":"2026-03-12T18:25:00.000Z","end":"2026-03-12T18:50:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6732\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-85cpb0ull","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085670-upyojqv5u\"}]","start":"2026-02-03T16:55:00.000Z","end":"2026-02-03T17:20:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1583\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-yf5mpapp3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085701-pyjjo96fb\"}]","start":"2026-03-31T15:30:00.000Z","end":"2026-03-31T15:55:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-7454\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-73jmwk6i3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085712-wf717vm3x\"}]","start":"2026-04-21T16:20:00.000Z","end":"2026-04-21T16:45:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8156\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-p2ahuncod","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085738-n8catwbdu\"}]","start":"2026-06-05T19:15:00.000Z","end":"2026-06-05T19:40:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7981\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-tox2qyi42","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085715-cv76t8cw1\"}]","start":"2026-04-28T15:55:00.000Z","end":"2026-04-28T16:20:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-1060\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-fxbrlj54m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085653-3vj37oezu\"}]","start":"2026-01-07T21:30:00.000Z","end":"2026-01-07T21:55:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-2249\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-45jbtq8k7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085732-wnkbenulh\"}]","start":"2026-05-26T19:40:00.000Z","end":"2026-05-26T20:05:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9047\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086259-zaq9myfz8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085732-upt7bkra9\"}]","start":"2026-05-26T16:45:00.000Z","end":"2026-05-26T17:10:00.000Z","created":"2025-12-12T05:24:46.259Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7579\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-03pko545f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-15j7ocpci\"}]","start":"2026-03-23T13:25:00.000Z","end":"2026-03-23T13:50:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9288\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-3x5omb1rb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-cfob6ppq9\"}]","start":"2026-04-29T15:30:00.000Z","end":"2026-04-29T15:55:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4838\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-r2w2vqunn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085709-qhwds4yxh\"}]","start":"2026-04-15T15:05:00.000Z","end":"2026-04-15T15:30:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7139\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-xoa23tugs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085664-5pfrgp6ge\"}]","start":"2026-01-26T21:05:00.000Z","end":"2026-01-26T21:30:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-5170\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-1ejzptp4l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085728-phpixzpv2\"}]","start":"2026-05-20T20:30:00.000Z","end":"2026-05-20T20:55:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9952\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-kzq6qmue7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085698-b566yzkmd\"}]","start":"2026-03-26T20:30:00.000Z","end":"2026-03-26T20:55:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8653\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-vmbnw79q3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085727-7glzdw240\"}]","start":"2026-05-20T18:25:00.000Z","end":"2026-05-20T18:50:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-7732\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-3ykqe4cox","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085731-ily3i4b8w\"}]","start":"2026-05-25T21:20:00.000Z","end":"2026-05-25T21:45:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1136\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-9ml6ib87e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085738-hkf9jj99u\"}]","start":"2026-06-05T18:25:00.000Z","end":"2026-06-05T18:50:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7208\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-o7sb0gm94","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085670-z8aw9hs0q\"}]","start":"2026-02-03T17:20:00.000Z","end":"2026-02-03T17:45:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-7859\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-0hd1gup77","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085643-2kzwq3trc\"}]","start":"2025-12-23T18:35:00.000Z","end":"2025-12-23T19:00:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-2181\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086260-8wj0o4z52","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085725-g37rdv4oi\"}]","start":"2026-05-15T18:00:00.000Z","end":"2026-05-15T18:25:00.000Z","created":"2025-12-12T05:24:46.260Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4489\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-jwjx82i54","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085647-y78hkpmz0\"}]","start":"2025-12-29T16:30:00.000Z","end":"2025-12-29T16:55:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6514\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-kbhh81ork","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085694-hw1h1zl3e\"}]","start":"2026-03-18T17:10:00.000Z","end":"2026-03-18T17:35:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4792\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-xvuhanhm4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085690-o9dsvzwqo\"}]","start":"2026-03-12T13:00:00.000Z","end":"2026-03-12T13:25:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6651\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-4yqwdds1d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085696-go9a23kjj\"}]","start":"2026-03-23T15:55:00.000Z","end":"2026-03-23T16:20:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3328\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-oziew980v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085662-okkn6p5w2\"}]","start":"2026-01-21T17:20:00.000Z","end":"2026-01-21T17:45:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1970\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-7cegbcmyz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085717-9tx0ud4nb\"}]","start":"2026-04-30T21:20:00.000Z","end":"2026-04-30T21:45:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6840\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-qum5ynu21","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085733-nwj8q7s93\"}]","start":"2026-05-28T17:10:00.000Z","end":"2026-05-28T17:35:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4537\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-ipqvf2uzb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085670-lds1ie94m\"}]","start":"2026-02-03T15:40:00.000Z","end":"2026-02-03T16:05:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8008\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-g71onlqyk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085677-aw589l3x3\"}]","start":"2026-02-16T21:05:00.000Z","end":"2026-02-16T21:30:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1081\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-f0tr9g60y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085686-fsfjqmmy9\"}]","start":"2026-03-05T19:00:00.000Z","end":"2026-03-05T19:25:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2731\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-euw6lkpw5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085716-sd1kyw2a8\"}]","start":"2026-04-29T20:05:00.000Z","end":"2026-04-29T20:30:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1805\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086261-9lkv9zv9a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085733-i8cujr6ko\"}]","start":"2026-05-28T14:40:00.000Z","end":"2026-05-28T15:05:00.000Z","created":"2025-12-12T05:24:46.261Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1893\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-qlys9wv7j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085686-vav5tzqfk\"}]","start":"2026-03-05T15:40:00.000Z","end":"2026-03-05T16:05:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6724\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-zsifisean","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-b4ckx6o77\"}]","start":"2026-04-30T15:55:00.000Z","end":"2026-04-30T16:20:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6533\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-vmwja1k28","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085667-09qbnnay9\"}]","start":"2026-01-29T21:30:00.000Z","end":"2026-01-29T21:55:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6692\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-36j3hg74a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085732-ajnjo7kot\"}]","start":"2026-05-27T20:55:00.000Z","end":"2026-05-27T21:20:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8270\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-bbh6yis1m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085639-kjmkt38yy\"}]","start":"2025-12-15T20:40:00.000Z","end":"2025-12-15T21:05:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1121\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-jk8urn25l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085691-5kg7uz7jr\"}]","start":"2026-03-12T15:05:00.000Z","end":"2026-03-12T15:30:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4102\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-f9zlbzdxp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085703-5jwiszc65\"}]","start":"2026-04-03T20:05:00.000Z","end":"2026-04-03T20:30:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6291\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-2q5cty6xk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085658-z1pej8eoz\"}]","start":"2026-01-16T17:45:00.000Z","end":"2026-01-16T18:10:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-4612\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-9x48dx4ee","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085643-qhnsrylq6\"}]","start":"2025-12-23T17:45:00.000Z","end":"2025-12-23T18:10:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5872\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-ka8vy0sja","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085679-unfr7ud7w\"}]","start":"2026-02-20T18:10:00.000Z","end":"2026-02-20T18:35:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4402\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-6c01w78ab","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085704-ycodym82d\"}]","start":"2026-04-07T15:55:00.000Z","end":"2026-04-07T16:20:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3400\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086262-n4tau23ob","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085692-6xzyga0vl\"}]","start":"2026-03-16T13:50:00.000Z","end":"2026-03-16T14:15:00.000Z","created":"2025-12-12T05:24:46.262Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3359\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-65ya54lr4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085735-9scfjdes0\"}]","start":"2026-06-03T19:15:00.000Z","end":"2026-06-03T19:40:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-9628\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-nrcsahfmn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085650-e41lv0nnf\"}]","start":"2025-12-31T17:45:00.000Z","end":"2025-12-31T18:10:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2442\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-1cykfo5iq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085716-byipezh46\"}]","start":"2026-04-30T15:30:00.000Z","end":"2026-04-30T15:55:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3911\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-slvqa4rn4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085655-je6q6xybc\"}]","start":"2026-01-08T21:30:00.000Z","end":"2026-01-08T21:55:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3106\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-79aeaf39v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085679-pyagfohgq\"}]","start":"2026-02-19T21:55:00.000Z","end":"2026-02-19T22:20:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5830\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-zdvqq0r1p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085704-qk1wc7la5\"}]","start":"2026-04-06T18:50:00.000Z","end":"2026-04-06T19:15:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7728\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-9jxnu0aiq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085670-iu3xink6g\"}]","start":"2026-02-03T21:30:00.000Z","end":"2026-02-03T21:55:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9899\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-5p54buqux","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085677-3n6bfypm8\"}]","start":"2026-02-16T17:20:00.000Z","end":"2026-02-16T17:45:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6129\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-l5hgtm5f4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085644-ko6pw35nz\"}]","start":"2025-12-23T21:55:00.000Z","end":"2025-12-23T22:20:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1550\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-41m8zqsa8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085658-bcrr6sf52\"}]","start":"2026-01-15T22:20:00.000Z","end":"2026-01-15T22:45:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1962\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-rkjm656t9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085709-y4zu84qt2\"}]","start":"2026-04-15T13:25:00.000Z","end":"2026-04-15T13:50:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6912\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086263-2uqu7qvs4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085722-q0b9eq429\"}]","start":"2026-05-12T13:00:00.000Z","end":"2026-05-12T13:25:00.000Z","created":"2025-12-12T05:24:46.263Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5847\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-ea1felt19","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085658-gkh11tv1e\"}]","start":"2026-01-15T18:35:00.000Z","end":"2026-01-15T19:00:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-4715\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-qdwfmn3sd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085662-7jou6djrm\"}]","start":"2026-01-22T20:15:00.000Z","end":"2026-01-22T20:40:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-9754\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-ej7s7f5pq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085697-p4i7mq5go\"}]","start":"2026-03-23T21:20:00.000Z","end":"2026-03-23T21:45:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5576\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-7me6doavv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085638-0uobzmpli\"}]","start":"2025-12-15T18:35:00.000Z","end":"2025-12-15T19:00:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1782\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-q05g7saj2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085737-d100hozew\"}]","start":"2026-06-04T19:15:00.000Z","end":"2026-06-04T19:40:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-2716\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-zvbbj2t1p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085729-5rjz7vzlk\"}]","start":"2026-05-22T19:40:00.000Z","end":"2026-05-22T20:05:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4518\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-32mwiqabk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085715-d7i0vd9ve\"}]","start":"2026-04-27T19:40:00.000Z","end":"2026-04-27T20:05:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8131\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-3twnihzo7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085678-aapr7ja4o\"}]","start":"2026-02-19T14:25:00.000Z","end":"2026-02-19T14:50:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6720\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-97zr5sgqh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085642-h70xxt0gw\"}]","start":"2025-12-18T18:10:00.000Z","end":"2025-12-18T18:35:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-1083\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-xaxik5hru","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085732-1bibig9kn\"}]","start":"2026-05-27T15:55:00.000Z","end":"2026-05-27T16:20:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8322\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-nggtt7sp9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085669-2sbuhuokg\"}]","start":"2026-02-02T16:30:00.000Z","end":"2026-02-02T16:55:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-9994\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086264-xhz2i36fa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085710-we753ktwd\"}]","start":"2026-04-17T20:30:00.000Z","end":"2026-04-17T20:55:00.000Z","created":"2025-12-12T05:24:46.264Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1656\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-8weueggon","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085699-e079rctl9\"}]","start":"2026-03-27T19:40:00.000Z","end":"2026-03-27T20:05:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8444\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-13kkhljbq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085698-q2fi3hu7e\"}]","start":"2026-03-26T19:15:00.000Z","end":"2026-03-26T19:40:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6501\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-n9hbr6azq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085715-e1k9hqjgy\"}]","start":"2026-04-27T18:25:00.000Z","end":"2026-04-27T18:50:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8179\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-h8bkat6zm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085656-kx3764wiw\"}]","start":"2026-01-12T18:10:00.000Z","end":"2026-01-12T18:35:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5596\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-4odhums7r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085655-57kqtebn7\"}]","start":"2026-01-12T15:40:00.000Z","end":"2026-01-12T16:05:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8791\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-ujlx9y7s9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085702-0bb4gsoep\"}]","start":"2026-04-02T17:35:00.000Z","end":"2026-04-02T18:00:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5917\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-ht17mrzg1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085683-w1tdwup25\"}]","start":"2026-02-26T18:10:00.000Z","end":"2026-02-26T18:35:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9739\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-u77685945","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085670-jnmaqvyfc\"}]","start":"2026-02-04T14:25:00.000Z","end":"2026-02-04T14:50:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4150\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-vejqu8zg4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085697-0xzwgfsnr\"}]","start":"2026-03-23T20:30:00.000Z","end":"2026-03-23T20:55:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-8152\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-dzk7vfgce","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085656-5wlso18m9\"}]","start":"2026-01-13T16:30:00.000Z","end":"2026-01-13T16:55:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8132\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-m9nm5bcwa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-z1khjs7iy\"}]","start":"2026-04-30T13:25:00.000Z","end":"2026-04-30T13:50:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4455\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-f83b43ays","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-miuaph6n5\"}]","start":"2026-04-07T15:30:00.000Z","end":"2026-04-07T15:55:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9496\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086265-28cnof0uf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085704-6qajikxfz\"}]","start":"2026-04-07T17:35:00.000Z","end":"2026-04-07T18:00:00.000Z","created":"2025-12-12T05:24:46.265Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9685\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-erkmhbtl1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085728-kv62ykpl3\"}]","start":"2026-05-22T13:25:00.000Z","end":"2026-05-22T13:50:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3541\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-shlnmgl2r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085713-1aqnil14f\"}]","start":"2026-04-22T20:55:00.000Z","end":"2026-04-22T21:20:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-4360\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-i1on830iw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085717-2wh0w3gpx\"}]","start":"2026-04-30T18:25:00.000Z","end":"2026-04-30T18:50:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9066\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-k3iisij3q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085703-l3g1sriu7\"}]","start":"2026-04-03T13:50:00.000Z","end":"2026-04-03T14:15:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4841\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-uy3101mt9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085657-24gl0leqs\"}]","start":"2026-01-15T14:50:00.000Z","end":"2026-01-15T15:15:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7953\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-zk93bhdcf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085692-0h14cl9aq\"}]","start":"2026-03-13T21:20:00.000Z","end":"2026-03-13T21:45:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4094\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-1zmutjne8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085698-uhkez6a4k\"}]","start":"2026-03-25T21:20:00.000Z","end":"2026-03-25T21:45:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7384\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-sh8g6bp02","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085734-ti1j2k0im\"}]","start":"2026-06-01T15:05:00.000Z","end":"2026-06-01T15:30:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6020\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-o9pxgpkxp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085715-vd55q3j0b\"}]","start":"2026-04-28T19:15:00.000Z","end":"2026-04-28T19:40:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6455\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-9f78ci6ew","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085663-keg1tyhnc\"}]","start":"2026-01-23T14:50:00.000Z","end":"2026-01-23T15:15:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3362\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-kssmtsipc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085689-njlnpp2u1\"}]","start":"2026-03-11T13:50:00.000Z","end":"2026-03-11T14:15:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8421\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086266-l5es5fivl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085678-1h26y9psf\"}]","start":"2026-02-18T20:15:00.000Z","end":"2026-02-18T20:40:00.000Z","created":"2025-12-12T05:24:46.266Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-3706\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086268-3bzqqocjk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085646-8vvzwqt9r\"}]","start":"2025-12-26T16:55:00.000Z","end":"2025-12-26T17:20:00.000Z","created":"2025-12-12T05:24:46.268Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3327\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.268Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-5x0o54cpj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085716-rx34v0qtv\"}]","start":"2026-04-29T19:15:00.000Z","end":"2026-04-29T19:40:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1162\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-bx2o3rtz5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085647-vtbdtzz6w\"}]","start":"2025-12-26T20:15:00.000Z","end":"2025-12-26T20:40:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-4112\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-kkddryws0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085716-eud57bpkm\"}]","start":"2026-04-29T19:40:00.000Z","end":"2026-04-29T20:05:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6369\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-934tdkj4n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085699-pdcmkts9b\"}]","start":"2026-03-27T15:30:00.000Z","end":"2026-03-27T15:55:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-2805\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-doahoxzw2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085690-2yxv7jzr2\"}]","start":"2026-03-11T17:10:00.000Z","end":"2026-03-11T17:35:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6575\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-1cltp84fj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085684-tlnssdro6\"}]","start":"2026-02-27T21:55:00.000Z","end":"2026-02-27T22:20:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3865\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-7ojxdmug7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085720-2wk6bx8tp\"}]","start":"2026-05-07T13:50:00.000Z","end":"2026-05-07T14:15:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1696\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-gce6bll8p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085735-k24bo27kg\"}]","start":"2026-06-02T20:05:00.000Z","end":"2026-06-02T20:30:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8933\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-f2gwhka3g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-qmlpaafgx\"}]","start":"2026-02-12T17:45:00.000Z","end":"2026-02-12T18:10:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7228\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-154g2k800","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-ox5y1lqq0\"}]","start":"2026-04-08T15:05:00.000Z","end":"2026-04-08T15:30:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-8610\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-0w37lypg9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085698-udgwm0rjo\"}]","start":"2026-03-25T19:15:00.000Z","end":"2026-03-25T19:40:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4778\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086269-45qtmx5dt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085652-qg74aidl1\"}]","start":"2026-01-07T15:40:00.000Z","end":"2026-01-07T16:05:00.000Z","created":"2025-12-12T05:24:46.269Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4435\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-glakj9yoz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085652-2w29egwvq\"}]","start":"2026-01-06T21:05:00.000Z","end":"2026-01-06T21:30:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9913\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-8mzm587r4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085638-w1flbjksy\"}]","start":"2025-12-15T17:20:00.000Z","end":"2025-12-15T17:45:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4206\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-756e00b41","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085714-tl8o22mzv\"}]","start":"2026-04-24T14:15:00.000Z","end":"2026-04-24T14:40:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-1366\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-5786h8ygc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085666-ynk1vhsmw\"}]","start":"2026-01-29T14:00:00.000Z","end":"2026-01-29T14:25:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4464\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-z8n1hgx1b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085717-w226p7l7s\"}]","start":"2026-04-30T19:15:00.000Z","end":"2026-04-30T19:40:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4387\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-fnbyv5a0k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085725-5ypqut61n\"}]","start":"2026-05-15T14:15:00.000Z","end":"2026-05-15T14:40:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5789\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-uzb54k7c5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085738-094i91ft7\"}]","start":"2026-06-08T13:25:00.000Z","end":"2026-06-08T13:50:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-7506\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-slq4r8hg1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-3z9n97dgb\"}]","start":"2026-05-22T13:50:00.000Z","end":"2026-05-22T14:15:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7020\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-pmpsszhdu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-079zxzhy7\"}]","start":"2026-05-20T21:20:00.000Z","end":"2026-05-20T21:45:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6929\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-jg93zp4d0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085683-37p7n6olp\"}]","start":"2026-02-27T18:10:00.000Z","end":"2026-02-27T18:35:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1852\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-64bwcuzop","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-lyzeg9gwy\"}]","start":"2026-01-22T18:35:00.000Z","end":"2026-01-22T19:00:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1541\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086270-z57elp8fy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085671-2kkoynbrh\"}]","start":"2026-02-05T17:20:00.000Z","end":"2026-02-05T17:45:00.000Z","created":"2025-12-12T05:24:46.270Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7483\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-5w073q00q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085701-0d79u1r8c\"}]","start":"2026-03-31T14:40:00.000Z","end":"2026-03-31T15:05:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4760\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-1tbspm94w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085713-70phj05xp\"}]","start":"2026-04-23T15:05:00.000Z","end":"2026-04-23T15:30:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-9656\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-z7f0y64z9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085709-tbvrajr0n\"}]","start":"2026-04-15T19:15:00.000Z","end":"2026-04-15T19:40:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6575\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-x4ri91n60","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085735-a2s492g18\"}]","start":"2026-06-03T20:55:00.000Z","end":"2026-06-03T21:20:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-9229\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-s9edt3hm7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085643-ldv2ipgmd\"}]","start":"2025-12-23T20:15:00.000Z","end":"2025-12-23T20:40:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2416\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-s8ybqgdf4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085703-n9gvuxm3s\"}]","start":"2026-04-06T17:35:00.000Z","end":"2026-04-06T18:00:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8632\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-5b426j6xx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085673-54kow1cyh\"}]","start":"2026-02-10T17:20:00.000Z","end":"2026-02-10T17:45:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-8648\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-pmoswhz2f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085655-hg3z4r7hv\"}]","start":"2026-01-09T17:45:00.000Z","end":"2026-01-09T18:10:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2287\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-7uhcfiyji","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085716-hli2hazxj\"}]","start":"2026-04-29T17:35:00.000Z","end":"2026-04-29T18:00:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8776\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-x655rr0fq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085713-tr9kl45e4\"}]","start":"2026-04-23T14:40:00.000Z","end":"2026-04-23T15:05:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8877\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-78lellegq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085697-okukoneeh\"}]","start":"2026-03-23T19:40:00.000Z","end":"2026-03-23T20:05:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4931\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086271-5kni84rak","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085701-7l364bi2f\"}]","start":"2026-04-01T14:15:00.000Z","end":"2026-04-01T14:40:00.000Z","created":"2025-12-12T05:24:46.271Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2782\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-8fdlm3cid","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085703-v95xflzh3\"}]","start":"2026-04-06T18:00:00.000Z","end":"2026-04-06T18:25:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-4380\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-evtstr96o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085644-f7chwykk8\"}]","start":"2025-12-24T16:55:00.000Z","end":"2025-12-24T17:20:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2723\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-70h0qked4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085658-mp9q25jvm\"}]","start":"2026-01-16T19:50:00.000Z","end":"2026-01-16T20:15:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-9159\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-t24lmwivj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085681-dznbb50h8\"}]","start":"2026-02-24T16:30:00.000Z","end":"2026-02-24T16:55:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9412\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-tibhonn55","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085696-efkdz1007\"}]","start":"2026-03-23T14:40:00.000Z","end":"2026-03-23T15:05:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-5619\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-drakqzguk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085689-rqwls7hlw\"}]","start":"2026-03-10T18:00:00.000Z","end":"2026-03-10T18:25:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8991\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-623arnbgl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085692-5vofo30wi\"}]","start":"2026-03-17T13:00:00.000Z","end":"2026-03-17T13:25:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7021\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-yhgcvkd5j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085713-zoml7dvov\"}]","start":"2026-04-22T18:50:00.000Z","end":"2026-04-22T19:15:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2728\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-y2oq7qw9g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085673-igmdvjgx1\"}]","start":"2026-02-10T19:00:00.000Z","end":"2026-02-10T19:25:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2087\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-aym75clt6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085676-bju03u96e\"}]","start":"2026-02-12T16:55:00.000Z","end":"2026-02-12T17:20:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9347\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-ahf1psyhd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085726-k0d4zlppe\"}]","start":"2026-05-15T20:55:00.000Z","end":"2026-05-15T21:20:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8178\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086272-5o7471soy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085734-59uhxm69o\"}]","start":"2026-05-29T19:40:00.000Z","end":"2026-05-29T20:05:00.000Z","created":"2025-12-12T05:24:46.272Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7720\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-xmjspszdy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085703-9si6jepgc\"}]","start":"2026-04-06T16:20:00.000Z","end":"2026-04-06T16:45:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9586\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-xfrzbwudc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085693-nxaf2oqj1\"}]","start":"2026-03-17T17:10:00.000Z","end":"2026-03-17T17:35:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3334\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-cz4uxjm81","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085686-h84e4pcie\"}]","start":"2026-03-05T20:15:00.000Z","end":"2026-03-05T20:40:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2879\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-swyt984h6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085639-quc5kucwg\"}]","start":"2025-12-15T22:20:00.000Z","end":"2025-12-15T22:45:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4157\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-vzbt2jeo3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085642-sm33kmhq4\"}]","start":"2025-12-19T21:55:00.000Z","end":"2025-12-19T22:20:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2576\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-38dagrmk6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085665-8dsi41e07\"}]","start":"2026-01-27T21:05:00.000Z","end":"2026-01-27T21:30:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9975\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-icwkbaor1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085653-b48iesryb\"}]","start":"2026-01-07T19:00:00.000Z","end":"2026-01-07T19:25:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3277\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-oec3h9jhf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085707-qwslb0ltn\"}]","start":"2026-04-10T19:15:00.000Z","end":"2026-04-10T19:40:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-4447\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086273-9hpc3ewjy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085657-q493jvt37\"}]","start":"2026-01-14T19:00:00.000Z","end":"2026-01-14T19:25:00.000Z","created":"2025-12-12T05:24:46.273Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7807\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-l6zia7zo1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085658-jz8gt22kk\"}]","start":"2026-01-15T20:40:00.000Z","end":"2026-01-15T21:05:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6242\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-5q78fvsli","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085697-fmc823kck\"}]","start":"2026-03-24T17:10:00.000Z","end":"2026-03-24T17:35:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3033\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-mqdrlhw5n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085666-anb3vg5se\"}]","start":"2026-01-28T21:05:00.000Z","end":"2026-01-28T21:30:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4898\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-6upc93h53","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085687-0rig5ezlm\"}]","start":"2026-03-06T18:10:00.000Z","end":"2026-03-06T18:35:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1175\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-6xtri0e59","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085731-9ixhvvehj\"}]","start":"2026-05-26T13:50:00.000Z","end":"2026-05-26T14:15:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5224\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-t6759kzj7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085675-14eyc3d51\"}]","start":"2026-02-12T15:15:00.000Z","end":"2026-02-12T15:40:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7982\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-j8s3xtab6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085716-4hfs6nn5j\"}]","start":"2026-04-28T20:55:00.000Z","end":"2026-04-28T21:20:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9126\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-x8qnyp2f9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085664-k9tahuchi\"}]","start":"2026-01-27T18:10:00.000Z","end":"2026-01-27T18:35:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7464\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-upedoan0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085702-eku0savlm\"}]","start":"2026-04-02T18:50:00.000Z","end":"2026-04-02T19:15:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-3271\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-hsiz0y70x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085701-8207g0lkk\"}]","start":"2026-03-30T19:40:00.000Z","end":"2026-03-30T20:05:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8853\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-8r26skiir","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085701-1c5yiv96g\"}]","start":"2026-03-31T14:15:00.000Z","end":"2026-03-31T14:40:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8122\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086274-g2wgh5orc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085719-ls6vie1i0\"}]","start":"2026-05-04T21:20:00.000Z","end":"2026-05-04T21:45:00.000Z","created":"2025-12-12T05:24:46.274Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2624\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-x0od2ffu3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085729-52iwqce4i\"}]","start":"2026-05-22T19:15:00.000Z","end":"2026-05-22T19:40:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1899\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-428aspcvy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085658-9ujz3fwzq\"}]","start":"2026-01-16T20:40:00.000Z","end":"2026-01-16T21:05:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-1758\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-m4002qae2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085726-0ediddpsi\"}]","start":"2026-05-18T13:00:00.000Z","end":"2026-05-18T13:25:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1134\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-zp8ovgu7e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085667-kqfo4yht3\"}]","start":"2026-01-30T15:15:00.000Z","end":"2026-01-30T15:40:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-4136\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-3e6w8cjas","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085652-crz1nk1iy\"}]","start":"2026-01-05T21:55:00.000Z","end":"2026-01-05T22:20:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9955\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-9gju4m03w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085650-scwus589o\"}]","start":"2026-01-01T21:55:00.000Z","end":"2026-01-01T22:20:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2988\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-pis7k5fiz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085682-ju7a222vl\"}]","start":"2026-02-25T21:55:00.000Z","end":"2026-02-25T22:20:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3279\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-tq0df0qbg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085732-rrcrmsr06\"}]","start":"2026-05-26T21:20:00.000Z","end":"2026-05-26T21:45:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4426\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-7z0k0miji","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085691-wvvd7y5z5\"}]","start":"2026-03-12T16:45:00.000Z","end":"2026-03-12T17:10:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4520\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-275xy2hj9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085684-018v1g4fj\"}]","start":"2026-03-02T17:20:00.000Z","end":"2026-03-02T17:45:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5824\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-1dyy5vdnj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085647-kjghg7fzd\"}]","start":"2025-12-29T15:15:00.000Z","end":"2025-12-29T15:40:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-7784\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086275-8fxnxmwqf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085678-1jv4pefla\"}]","start":"2026-02-18T16:05:00.000Z","end":"2026-02-18T16:30:00.000Z","created":"2025-12-12T05:24:46.275Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3971\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-zuzl8zufh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085740-3rq4o697y\"}]","start":"2026-06-09T19:40:00.000Z","end":"2026-06-09T20:05:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3618\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-na0fqpes9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085732-c4coggm9w\"}]","start":"2026-05-26T20:55:00.000Z","end":"2026-05-26T21:20:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8621\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-lysac0jg3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085705-47lgt1wur\"}]","start":"2026-04-08T19:15:00.000Z","end":"2026-04-08T19:40:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-7052\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-glfigcklg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085697-1u2l1hzgk\"}]","start":"2026-03-25T16:45:00.000Z","end":"2026-03-25T17:10:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5271\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-vlx8zuceo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085697-3k8yr1a4l\"}]","start":"2026-03-24T13:00:00.000Z","end":"2026-03-24T13:25:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-1305\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-uyccnrj8j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085662-5e55wt9pp\"}]","start":"2026-01-22T14:50:00.000Z","end":"2026-01-22T15:15:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2550\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-9nhrvvrdl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-ft3bgi4jg\"}]","start":"2026-02-12T22:20:00.000Z","end":"2026-02-12T22:45:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7121\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-r7jjawdo3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085691-gnnmtfnzk\"}]","start":"2026-03-13T16:20:00.000Z","end":"2026-03-13T16:45:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1923\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-sx3836chk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085647-3nvx4g0e7\"}]","start":"2025-12-26T20:40:00.000Z","end":"2025-12-26T21:05:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8554\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-vps3w0je3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085651-e4xp1jvv0\"}]","start":"2026-01-05T17:45:00.000Z","end":"2026-01-05T18:10:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7011\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-dxrykmw15","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085716-a0txg4s0x\"}]","start":"2026-04-30T14:40:00.000Z","end":"2026-04-30T15:05:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4013\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-o1vhtbrai","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085666-ilt2pa1dl\"}]","start":"2026-01-28T20:15:00.000Z","end":"2026-01-28T20:40:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4580\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086276-8hjte9h1k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085667-lxv0aoe2a\"}]","start":"2026-01-29T19:00:00.000Z","end":"2026-01-29T19:25:00.000Z","created":"2025-12-12T05:24:46.276Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5705\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-aqxhnsckb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085725-sf8v71106\"}]","start":"2026-05-14T16:20:00.000Z","end":"2026-05-14T16:45:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9573\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-gprxvmnqt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085658-eu0o0nd41\"}]","start":"2026-01-16T19:25:00.000Z","end":"2026-01-16T19:50:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9659\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-173f42i6c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085738-gz9u6q9fw\"}]","start":"2026-06-05T18:50:00.000Z","end":"2026-06-05T19:15:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1377\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-2kvk3r1lv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085716-h7uks7gf5\"}]","start":"2026-04-29T18:00:00.000Z","end":"2026-04-29T18:25:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7800\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-tk3calnb1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085682-kdidaj6xe\"}]","start":"2026-02-24T19:25:00.000Z","end":"2026-02-24T19:50:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3591\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-d6342ugam","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085679-9hmzchb05\"}]","start":"2026-02-19T19:25:00.000Z","end":"2026-02-19T19:50:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4915\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-qb4kz12wp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085679-urwf502kx\"}]","start":"2026-02-20T21:55:00.000Z","end":"2026-02-20T22:20:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3796\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-ycdofvzzd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085672-b3d5dcy7m\"}]","start":"2026-02-09T14:50:00.000Z","end":"2026-02-09T15:15:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1317\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-ijp49pi7e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-jpmovxfug\"}]","start":"2026-03-20T16:45:00.000Z","end":"2026-03-20T17:10:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2992\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-fsdkulca9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085686-cvgmkbz0p\"}]","start":"2026-03-05T18:10:00.000Z","end":"2026-03-05T18:35:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6216\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-mzoapnr9b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085638-511jdmd1v\"}]","start":"2025-12-12T19:50:00.000Z","end":"2025-12-12T20:15:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-9032\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086277-ripggab5o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085653-8ydg2tmo2\"}]","start":"2026-01-08T19:25:00.000Z","end":"2026-01-08T19:50:00.000Z","created":"2025-12-12T05:24:46.277Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4008\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086278-45b8i25x2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085671-aqqga97us\"}]","start":"2026-02-05T16:30:00.000Z","end":"2026-02-05T16:55:00.000Z","created":"2025-12-12T05:24:46.278Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5280\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.278Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086278-4xedu5ejx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085705-2gdiukq8z\"}]","start":"2026-04-09T13:00:00.000Z","end":"2026-04-09T13:25:00.000Z","created":"2025-12-12T05:24:46.278Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6475\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.278Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086278-zsbmxmiip","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085672-sdqde1tau\"}]","start":"2026-02-09T15:40:00.000Z","end":"2026-02-09T16:05:00.000Z","created":"2025-12-12T05:24:46.278Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1338\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.278Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-6iupvep2s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085722-c1o6r46tn\"}]","start":"2026-05-12T14:15:00.000Z","end":"2026-05-12T14:40:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9828\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-6n0tj3m24","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085688-t287jyke1\"}]","start":"2026-03-06T19:50:00.000Z","end":"2026-03-06T20:15:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4887\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-hqtuuyao1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085720-w7w3m2rmn\"}]","start":"2026-05-05T20:55:00.000Z","end":"2026-05-05T21:20:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1684\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-zarwu3viw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085727-vht1vglo1\"}]","start":"2026-05-19T20:55:00.000Z","end":"2026-05-19T21:20:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-7057\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-2kryph80l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085709-wre0v5kfw\"}]","start":"2026-04-15T14:40:00.000Z","end":"2026-04-15T15:05:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-3725\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-b48uze201","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-hn0narxhy\"}]","start":"2026-03-20T19:40:00.000Z","end":"2026-03-20T20:05:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3159\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-7uax6ib1g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085715-ipd4cdzk5\"}]","start":"2026-04-27T18:00:00.000Z","end":"2026-04-27T18:25:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6284\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-0p8bwl6or","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085683-jamyd1dhb\"}]","start":"2026-02-27T19:00:00.000Z","end":"2026-02-27T19:25:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7792\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-rulxtkc63","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085707-r9zu2spry\"}]","start":"2026-04-10T17:10:00.000Z","end":"2026-04-10T17:35:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6657\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086280-aqc6ab21z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085711-ois9twqtx\"}]","start":"2026-04-20T17:35:00.000Z","end":"2026-04-20T18:00:00.000Z","created":"2025-12-12T05:24:46.280Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-7166\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-opm6bgmxd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085696-ombjpk74k\"}]","start":"2026-03-23T18:50:00.000Z","end":"2026-03-23T19:15:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2306\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-clz58uhax","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085655-z15a7dq28\"}]","start":"2026-01-09T15:40:00.000Z","end":"2026-01-09T16:05:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-5248\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-0szxigndj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085723-j0n1azvwc\"}]","start":"2026-05-13T14:15:00.000Z","end":"2026-05-13T14:40:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-9036\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-4jtzjyih6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085678-4lrczi1z2\"}]","start":"2026-02-17T21:55:00.000Z","end":"2026-02-17T22:20:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-4089\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-wotq9lfon","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085639-o23dfqnjn\"}]","start":"2025-12-16T14:00:00.000Z","end":"2025-12-16T14:25:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9585\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-z7y6p9tho","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085658-pyem5tg5m\"}]","start":"2026-01-15T21:55:00.000Z","end":"2026-01-15T22:20:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1033\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-zt7y3r0vf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085676-v7vvatspy\"}]","start":"2026-02-13T21:30:00.000Z","end":"2026-02-13T21:55:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3176\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-x0sybthko","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085738-de1afivmg\"}]","start":"2026-06-05T18:00:00.000Z","end":"2026-06-05T18:25:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-3525\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-h3g9yy76h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-ksuscwz98\"}]","start":"2026-04-27T20:55:00.000Z","end":"2026-04-27T21:20:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6137\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-n84gcv4rm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085663-eaadwobb6\"}]","start":"2026-01-23T20:40:00.000Z","end":"2026-01-23T21:05:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1503\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-ytl1oo2wk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085730-bqw6h9p1r\"}]","start":"2026-05-25T19:15:00.000Z","end":"2026-05-25T19:40:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-1651\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-h8n3mzaxx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085655-3odd0be71\"}]","start":"2026-01-09T20:40:00.000Z","end":"2026-01-09T21:05:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1930\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086281-mgxj1k7rw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085692-7218n4ath\"}]","start":"2026-03-16T14:15:00.000Z","end":"2026-03-16T14:40:00.000Z","created":"2025-12-12T05:24:46.281Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-2929\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-99y2pcn7f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085729-aok59t2yi\"}]","start":"2026-05-22T20:55:00.000Z","end":"2026-05-22T21:20:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6022\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-5ujlk5oxp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085718-06xi9uuo4\"}]","start":"2026-05-01T18:25:00.000Z","end":"2026-05-01T18:50:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7147\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-oznm0icui","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085656-1k74ggju3\"}]","start":"2026-01-13T19:00:00.000Z","end":"2026-01-13T19:25:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4066\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-nr5usm57x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085664-pu41iv53s\"}]","start":"2026-01-26T19:00:00.000Z","end":"2026-01-26T19:25:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5170\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-mwx92qyai","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085653-stnh1vtvh\"}]","start":"2026-01-07T21:05:00.000Z","end":"2026-01-07T21:30:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1049\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-3o05votln","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085661-oacqgox3k\"}]","start":"2026-01-21T15:15:00.000Z","end":"2026-01-21T15:40:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9188\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-13upr7g9h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085710-hwnpmihs3\"}]","start":"2026-04-17T17:35:00.000Z","end":"2026-04-17T18:00:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2948\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-asqims8mb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-7fy4psi5f\"}]","start":"2026-02-12T21:55:00.000Z","end":"2026-02-12T22:20:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1845\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-6gn103lcx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085647-h025atpzh\"}]","start":"2025-12-29T17:45:00.000Z","end":"2025-12-29T18:10:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3843\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-ubfqsezcm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085682-2m472422r\"}]","start":"2026-02-26T14:00:00.000Z","end":"2026-02-26T14:25:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3037\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-pd644522n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085734-rkuof9fe1\"}]","start":"2026-06-01T20:05:00.000Z","end":"2026-06-01T20:30:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6445\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-7j49nv791","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-6s5ttra9i\"}]","start":"2026-01-22T18:10:00.000Z","end":"2026-01-22T18:35:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-7293\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086282-4fohezvyu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085651-2knx3l1ap\"}]","start":"2026-01-02T14:50:00.000Z","end":"2026-01-02T15:15:00.000Z","created":"2025-12-12T05:24:46.282Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6518\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-jqf4syr8i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085710-21drol0o8\"}]","start":"2026-04-16T18:25:00.000Z","end":"2026-04-16T18:50:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7639\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-tind741zz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085735-2z037afob\"}]","start":"2026-06-02T19:40:00.000Z","end":"2026-06-02T20:05:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6646\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-29oidihvj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085697-tl9sz0vz7\"}]","start":"2026-03-24T18:25:00.000Z","end":"2026-03-24T18:50:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3743\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-5locxi6xe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085678-mjtx98tum\"}]","start":"2026-02-18T17:45:00.000Z","end":"2026-02-18T18:10:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1115\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-h8nmj9dtt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085703-a9at8qc2e\"}]","start":"2026-04-06T15:30:00.000Z","end":"2026-04-06T15:55:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8230\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-n6mcicaj1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085664-znava8p0f\"}]","start":"2026-01-27T19:00:00.000Z","end":"2026-01-27T19:25:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7986\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-rcaih9d9u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085736-2waj7zcc9\"}]","start":"2026-06-04T18:25:00.000Z","end":"2026-06-04T18:50:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8606\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-ui7dz8v49","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085680-zu82sagb5\"}]","start":"2026-02-23T17:45:00.000Z","end":"2026-02-23T18:10:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4000\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-qeehvhu8p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085719-dzvm6upoq\"}]","start":"2026-05-05T14:40:00.000Z","end":"2026-05-05T15:05:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6325\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-vew8093r0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085710-tszyoa2hk\"}]","start":"2026-04-17T14:15:00.000Z","end":"2026-04-17T14:40:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1731\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-mj6c1dgdp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085727-kgwjulfx3\"}]","start":"2026-05-19T15:55:00.000Z","end":"2026-05-19T16:20:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1376\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-urrxgzcd2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-i0chhy0hz\"}]","start":"2026-02-26T17:45:00.000Z","end":"2026-02-26T18:10:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-9701\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086283-xfq1rm65c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085672-k8hst1a4w\"}]","start":"2026-02-06T21:05:00.000Z","end":"2026-02-06T21:30:00.000Z","created":"2025-12-12T05:24:46.283Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7412\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-j02g34fh7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085690-9a0jsm6ma\"}]","start":"2026-03-11T21:20:00.000Z","end":"2026-03-11T21:45:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-7369\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-th3dfwe59","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085643-omx5plydl\"}]","start":"2025-12-22T20:40:00.000Z","end":"2025-12-22T21:05:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5502\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-30otl9eh6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085720-id288qxzf\"}]","start":"2026-05-07T15:05:00.000Z","end":"2026-05-07T15:30:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1714\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-dwijfxifg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085703-gg31o9rd3\"}]","start":"2026-04-06T15:05:00.000Z","end":"2026-04-06T15:30:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-4688\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-autecc79d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085689-ymva0vjh2\"}]","start":"2026-03-10T16:20:00.000Z","end":"2026-03-10T16:45:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4495\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-px5v3r4my","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-6hannhtwe\"}]","start":"2026-05-21T20:05:00.000Z","end":"2026-05-21T20:30:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-8211\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-p42a4fug6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085701-59c3mgyj3\"}]","start":"2026-03-31T18:00:00.000Z","end":"2026-03-31T18:25:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9873\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-bz4cnzduk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085732-bwjdh08md\"}]","start":"2026-05-27T13:50:00.000Z","end":"2026-05-27T14:15:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9784\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-v9ckdndef","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085729-fpet3o8l2\"}]","start":"2026-05-25T15:30:00.000Z","end":"2026-05-25T15:55:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7357\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-zhrzem2yr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085691-d7rlk48je\"}]","start":"2026-03-12T15:30:00.000Z","end":"2026-03-12T15:55:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-8513\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086284-z9i2zccwk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085670-mjuce72di\"}]","start":"2026-02-03T17:45:00.000Z","end":"2026-02-03T18:10:00.000Z","created":"2025-12-12T05:24:46.284Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6045\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-r13mpj37r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085718-mglu9hoe1\"}]","start":"2026-05-01T20:30:00.000Z","end":"2026-05-01T20:55:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3722\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-kpu06ynou","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085735-s8ngvfi0a\"}]","start":"2026-06-02T18:00:00.000Z","end":"2026-06-02T18:25:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9152\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-4buhl2a0u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085740-302qcvhuu\"}]","start":"2026-06-09T16:20:00.000Z","end":"2026-06-09T16:45:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2669\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-obuyxyk2d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085690-oiwqf5u2k\"}]","start":"2026-03-11T18:50:00.000Z","end":"2026-03-11T19:15:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5860\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-2vvs5f3v0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085658-s1yahlqvt\"}]","start":"2026-01-16T14:25:00.000Z","end":"2026-01-16T14:50:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4720\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-kmfgz6xrc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085740-9svv271zn\"}]","start":"2026-06-09T18:50:00.000Z","end":"2026-06-09T19:15:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-3797\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-7targt4uz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085729-twj8izfq7\"}]","start":"2026-05-25T15:55:00.000Z","end":"2026-05-25T16:20:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5387\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-uax6kgsrj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085664-w36qo0dr0\"}]","start":"2026-01-27T14:00:00.000Z","end":"2026-01-27T14:25:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8880\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-dw9rqh3x9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085701-sxl8yk232\"}]","start":"2026-03-31T20:55:00.000Z","end":"2026-03-31T21:20:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9283\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-dotnvl303","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085664-iruwzehsv\"}]","start":"2026-01-27T15:15:00.000Z","end":"2026-01-27T15:40:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6163\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-pyjpq12ke","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085640-edlxqdq8u\"}]","start":"2025-12-17T19:00:00.000Z","end":"2025-12-17T19:25:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6711\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086285-idaj5mue5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085684-zf2r6z4bi\"}]","start":"2026-03-02T20:40:00.000Z","end":"2026-03-02T21:05:00.000Z","created":"2025-12-12T05:24:46.285Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3279\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-tk3lv8lpc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085649-pl40x9yy3\"}]","start":"2025-12-30T21:30:00.000Z","end":"2025-12-30T21:55:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1047\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-xz85g95al","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085696-qjsod5i87\"}]","start":"2026-03-20T18:50:00.000Z","end":"2026-03-20T19:15:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8017\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-vssjp5ldj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085659-puwq3yt0c\"}]","start":"2026-01-19T19:00:00.000Z","end":"2026-01-19T19:25:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8513\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-4chrcs5ms","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085651-cdzinr7pa\"}]","start":"2026-01-05T18:35:00.000Z","end":"2026-01-05T19:00:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2710\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-cztsywla6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085672-9ns1gyo1q\"}]","start":"2026-02-10T14:00:00.000Z","end":"2026-02-10T14:25:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-8762\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-lvkr2z4bv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085652-3op6ln1c7\"}]","start":"2026-01-06T15:40:00.000Z","end":"2026-01-06T16:05:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7459\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-h3jjh1w4o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085659-ptnzv9b1y\"}]","start":"2026-01-19T20:40:00.000Z","end":"2026-01-19T21:05:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-7656\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-yyr7vruu6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085656-5wacq3pvx\"}]","start":"2026-01-12T20:15:00.000Z","end":"2026-01-12T20:40:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3830\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-o2kjyttee","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085639-14gkgp0po\"}]","start":"2025-12-16T16:55:00.000Z","end":"2025-12-16T17:20:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5215\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-2qfqxs40y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085696-d0itmypwp\"}]","start":"2026-03-20T16:20:00.000Z","end":"2026-03-20T16:45:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4884\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-8vp3t8ule","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085708-gh2jmurfu\"}]","start":"2026-04-13T17:35:00.000Z","end":"2026-04-13T18:00:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2182\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086286-3ygrjvlmo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085642-8hylhy2gt\"}]","start":"2025-12-19T16:05:00.000Z","end":"2025-12-19T16:30:00.000Z","created":"2025-12-12T05:24:46.286Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3431\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-bu651dylc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085702-jp9mqbwke\"}]","start":"2026-04-01T15:30:00.000Z","end":"2026-04-01T15:55:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9684\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-73fvzctht","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085638-rq2vjfxty\"}]","start":"2025-12-15T14:25:00.000Z","end":"2025-12-15T14:50:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2025\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-838c424l8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085719-599u3b69x\"}]","start":"2026-05-04T18:25:00.000Z","end":"2026-05-04T18:50:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1703\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-p4vhfnkwt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085726-2ywy4af1m\"}]","start":"2026-05-15T20:30:00.000Z","end":"2026-05-15T20:55:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2858\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-b394sv1dj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085702-laporkxpd\"}]","start":"2026-04-02T20:55:00.000Z","end":"2026-04-02T21:20:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9867\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-s1pqxedtt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085705-agxbw6zrk\"}]","start":"2026-04-09T13:50:00.000Z","end":"2026-04-09T14:15:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3767\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-km2qr4bch","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085680-8qs1guikt\"}]","start":"2026-02-23T18:35:00.000Z","end":"2026-02-23T19:00:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-6414\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-ueduqarez","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085665-d0h1k05q2\"}]","start":"2026-01-28T15:15:00.000Z","end":"2026-01-28T15:40:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5901\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-8v7ltbm4m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085669-4mkhfc67t\"}]","start":"2026-02-02T16:55:00.000Z","end":"2026-02-02T17:20:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7065\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-ey9g84pfe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085704-l6gz5k04e\"}]","start":"2026-04-06T20:05:00.000Z","end":"2026-04-06T20:30:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9390\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-jvec6l8na","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085688-fhzhv48u2\"}]","start":"2026-03-09T19:15:00.000Z","end":"2026-03-09T19:40:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8809\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086287-l3uhguxpx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085664-5fdyihy32\"}]","start":"2026-01-27T19:25:00.000Z","end":"2026-01-27T19:50:00.000Z","created":"2025-12-12T05:24:46.287Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8645\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-3qkbfur8z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085680-qmpfhf262\"}]","start":"2026-02-23T14:25:00.000Z","end":"2026-02-23T14:50:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9944\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-ar4nu4edn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085678-ek5skb5j9\"}]","start":"2026-02-19T15:15:00.000Z","end":"2026-02-19T15:40:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2001\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-5l8tdxuad","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085664-c9n98dxp5\"}]","start":"2026-01-27T18:35:00.000Z","end":"2026-01-27T19:00:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4104\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-vi0cqmqku","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085658-3g4dhpta1\"}]","start":"2026-01-16T15:15:00.000Z","end":"2026-01-16T15:40:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8109\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-qt2h15j87","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085684-rcr8xx04p\"}]","start":"2026-02-27T21:05:00.000Z","end":"2026-02-27T21:30:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6515\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-032locme3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085655-bfvj5fxin\"}]","start":"2026-01-09T19:25:00.000Z","end":"2026-01-09T19:50:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4523\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-5fnxqc5u6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085717-fgd7bmaxe\"}]","start":"2026-05-01T13:00:00.000Z","end":"2026-05-01T13:25:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7240\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-0nwa6kopg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085705-3pzefmoa5\"}]","start":"2026-04-08T17:35:00.000Z","end":"2026-04-08T18:00:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5125\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-pwzbn3lda","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085652-uvxrjhoay\"}]","start":"2026-01-07T15:15:00.000Z","end":"2026-01-07T15:40:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8391\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-os7b5dd61","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085722-d1q8viyfl\"}]","start":"2026-05-11T20:55:00.000Z","end":"2026-05-11T21:20:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7956\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-d57rsbydz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085715-ifk4ulf3i\"}]","start":"2026-04-28T18:25:00.000Z","end":"2026-04-28T18:50:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7402\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-v9uc1ec6u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085665-zsy71md4u\"}]","start":"2026-01-27T21:30:00.000Z","end":"2026-01-27T21:55:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4840\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086288-d5p35g5uu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085664-mt2358ygy\"}]","start":"2026-01-26T22:20:00.000Z","end":"2026-01-26T22:45:00.000Z","created":"2025-12-12T05:24:46.288Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2627\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086289-uz3g12smu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085651-r0ph3m9fu\"}]","start":"2026-01-05T16:30:00.000Z","end":"2026-01-05T16:55:00.000Z","created":"2025-12-12T05:24:46.289Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1202\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.289Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086289-ny88j6tzu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085695-flyje5zak\"}]","start":"2026-03-18T21:20:00.000Z","end":"2026-03-18T21:45:00.000Z","created":"2025-12-12T05:24:46.289Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4387\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.289Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086289-vk1axfej5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085692-vslf3476z\"}]","start":"2026-03-16T16:45:00.000Z","end":"2026-03-16T17:10:00.000Z","created":"2025-12-12T05:24:46.289Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8608\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.289Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086289-yl4yr1igd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-dippg7io4\"}]","start":"2026-04-27T21:20:00.000Z","end":"2026-04-27T21:45:00.000Z","created":"2025-12-12T05:24:46.289Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8802\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.289Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086291-mpl37tw30","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-f8dvr2pix\"}]","start":"2026-02-26T22:20:00.000Z","end":"2026-02-26T22:45:00.000Z","created":"2025-12-12T05:24:46.291Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-3176\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086291-86zgf8snw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-z22ac6ua5\"}]","start":"2026-03-20T15:05:00.000Z","end":"2026-03-20T15:30:00.000Z","created":"2025-12-12T05:24:46.291Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6470\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086291-2swsn3u11","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085693-fiiz7g66o\"}]","start":"2026-03-17T18:25:00.000Z","end":"2026-03-17T18:50:00.000Z","created":"2025-12-12T05:24:46.291Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4215\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086291-os6b4r0a4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085703-38mjmpakf\"}]","start":"2026-04-06T13:00:00.000Z","end":"2026-04-06T13:25:00.000Z","created":"2025-12-12T05:24:46.291Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5148\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086291-j8e487edh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-v4uhperd6\"}]","start":"2026-05-21T19:15:00.000Z","end":"2026-05-21T19:40:00.000Z","created":"2025-12-12T05:24:46.291Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7693\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086291-0zno55xur","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085653-mysrvuvx7\"}]","start":"2026-01-08T17:20:00.000Z","end":"2026-01-08T17:45:00.000Z","created":"2025-12-12T05:24:46.291Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8366\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086291-tng1sntq1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085734-5pni2ld79\"}]","start":"2026-06-01T18:50:00.000Z","end":"2026-06-01T19:15:00.000Z","created":"2025-12-12T05:24:46.291Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-1523\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-vetcf9k88","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085701-2dv94xkjf\"}]","start":"2026-03-31T13:00:00.000Z","end":"2026-03-31T13:25:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3825\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-f3u32v9tl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085722-2xjrcsbdw\"}]","start":"2026-05-11T13:00:00.000Z","end":"2026-05-11T13:25:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3190\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-377o7cy1j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085738-1a1e794rp\"}]","start":"2026-06-05T21:20:00.000Z","end":"2026-06-05T21:45:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-9701\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-datn3e3pv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085679-hq9nypvq8\"}]","start":"2026-02-20T18:35:00.000Z","end":"2026-02-20T19:00:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-7997\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-a3ggmedj6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085733-tbg9ds61b\"}]","start":"2026-05-28T16:45:00.000Z","end":"2026-05-28T17:10:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-2166\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-67v4wbno3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085724-g3itvju4f\"}]","start":"2026-05-13T17:10:00.000Z","end":"2026-05-13T17:35:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1520\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-x4i6vzjfl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085709-cjev9h353\"}]","start":"2026-04-15T15:55:00.000Z","end":"2026-04-15T16:20:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3800\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-84y83ipeh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085712-t8pv94kjd\"}]","start":"2026-04-21T16:45:00.000Z","end":"2026-04-21T17:10:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-8469\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-p5l3hbehx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085735-ztqhnn0ne\"}]","start":"2026-06-04T13:00:00.000Z","end":"2026-06-04T13:25:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4316\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-xl8cb6ozu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085688-262v6zrpm\"}]","start":"2026-03-09T13:50:00.000Z","end":"2026-03-09T14:15:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6185\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-r15hlexkg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085708-8ez5epal8\"}]","start":"2026-04-14T16:20:00.000Z","end":"2026-04-14T16:45:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4264\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-5x928l2e3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085643-zolw6g6f0\"}]","start":"2025-12-23T17:20:00.000Z","end":"2025-12-23T17:45:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9000\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086292-zp6f61e4l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-ylokfe78p\"}]","start":"2026-02-13T20:15:00.000Z","end":"2026-02-13T20:40:00.000Z","created":"2025-12-12T05:24:46.292Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3804\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-2orrmpym4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085703-w51316t3s\"}]","start":"2026-04-06T13:50:00.000Z","end":"2026-04-06T14:15:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1099\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-kb5g4xs9f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085719-q2bm1u7qy\"}]","start":"2026-05-04T13:25:00.000Z","end":"2026-05-04T13:50:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-1485\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-qs9c3ttww","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085722-3cxpbfed9\"}]","start":"2026-05-11T16:45:00.000Z","end":"2026-05-11T17:10:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8397\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-fixiruebc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085641-cuijmuj94\"}]","start":"2025-12-17T21:30:00.000Z","end":"2025-12-17T21:55:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4822\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-0ddpfeto1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085713-xw6oi44fi\"}]","start":"2026-04-23T13:50:00.000Z","end":"2026-04-23T14:15:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5646\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-utd5zaatv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085664-4wlb8sfgn\"}]","start":"2026-01-26T17:45:00.000Z","end":"2026-01-26T18:10:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-7117\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-lnehgqb27","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085727-vswit7p8a\"}]","start":"2026-05-19T14:40:00.000Z","end":"2026-05-19T15:05:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8428\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-62lzs9zqj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085688-41wpf77h9\"}]","start":"2026-03-10T13:50:00.000Z","end":"2026-03-10T14:15:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6972\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-c3bauinli","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085668-woumob5ob\"}]","start":"2026-01-30T20:40:00.000Z","end":"2026-01-30T21:05:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5336\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-xhcl844an","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085647-obt8iumdz\"}]","start":"2025-12-29T19:50:00.000Z","end":"2025-12-29T20:15:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3316\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-7y2uhdm83","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085729-v509os8t4\"}]","start":"2026-05-25T16:20:00.000Z","end":"2026-05-25T16:45:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-9213\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-5timd012t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085674-zo966skw5\"}]","start":"2026-02-11T19:50:00.000Z","end":"2026-02-11T20:15:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3456\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-9yl4iaset","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085667-xgutapos8\"}]","start":"2026-01-29T21:55:00.000Z","end":"2026-01-29T22:20:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5576\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086293-4ktj8y9l1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085647-1okkxh2bv\"}]","start":"2025-12-26T21:05:00.000Z","end":"2025-12-26T21:30:00.000Z","created":"2025-12-12T05:24:46.293Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2369\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-93ikyrz9f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085662-0xxvq8c1f\"}]","start":"2026-01-22T17:20:00.000Z","end":"2026-01-22T17:45:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4578\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-z3gc8tije","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085738-xhuq2s9zj\"}]","start":"2026-06-08T16:20:00.000Z","end":"2026-06-08T16:45:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9348\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-nr9sh8fud","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085647-otri8s31h\"}]","start":"2025-12-29T19:25:00.000Z","end":"2025-12-29T19:50:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4107\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-esuddmfeg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085732-eydlblzbj\"}]","start":"2026-05-28T13:00:00.000Z","end":"2026-05-28T13:25:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-4268\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-nt9qagr8u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085717-k28o1bxbv\"}]","start":"2026-04-30T16:45:00.000Z","end":"2026-04-30T17:10:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3453\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-8b9uum6h0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085726-fjre0ooli\"}]","start":"2026-05-18T19:40:00.000Z","end":"2026-05-18T20:05:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2853\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-r01d1pzb2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085667-er3wfahuw\"}]","start":"2026-01-30T15:40:00.000Z","end":"2026-01-30T16:05:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1310\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-m9cerrg66","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085664-9448w0oxs\"}]","start":"2026-01-27T15:40:00.000Z","end":"2026-01-27T16:05:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3799\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-avhkl4rlp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085672-9mb6y09kk\"}]","start":"2026-02-09T21:55:00.000Z","end":"2026-02-09T22:20:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4640\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-ch9u6d9r0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085723-pc2jsl70b\"}]","start":"2026-05-13T16:45:00.000Z","end":"2026-05-13T17:10:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9210\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-cthb6lvt2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085647-v3jlku9f5\"}]","start":"2025-12-26T21:55:00.000Z","end":"2025-12-26T22:20:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9496\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086294-zoytmfjau","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085691-b2t1h64x2\"}]","start":"2026-03-12T20:05:00.000Z","end":"2026-03-12T20:30:00.000Z","created":"2025-12-12T05:24:46.294Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9802\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-4655zc6if","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085729-k2sy8ymng\"}]","start":"2026-05-25T16:45:00.000Z","end":"2026-05-25T17:10:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4104\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-uppro0dyn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085641-yr77wnv8z\"}]","start":"2025-12-18T15:15:00.000Z","end":"2025-12-18T15:40:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-6691\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-befqxji25","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085672-8lz039egr\"}]","start":"2026-02-09T20:15:00.000Z","end":"2026-02-09T20:40:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4227\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-rghwvc4ws","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085682-rxq9qpc38\"}]","start":"2026-02-25T20:40:00.000Z","end":"2026-02-25T21:05:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-6462\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-56zcino80","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085700-ry9id0ssp\"}]","start":"2026-03-30T17:10:00.000Z","end":"2026-03-30T17:35:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3133\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-60tes1loc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085655-g55682c6y\"}]","start":"2026-01-09T14:50:00.000Z","end":"2026-01-09T15:15:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7753\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-e5mwjgh77","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085665-0rz86bsve\"}]","start":"2026-01-27T20:40:00.000Z","end":"2026-01-27T21:05:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4342\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-nlo0xmh21","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085719-jv7xvzlo0\"}]","start":"2026-05-04T16:20:00.000Z","end":"2026-05-04T16:45:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1591\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-wetsbge3i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085642-tihv3i8vj\"}]","start":"2025-12-19T14:00:00.000Z","end":"2025-12-19T14:25:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-8324\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-0ycoidll6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085698-qgsw7rtgj\"}]","start":"2026-03-26T13:00:00.000Z","end":"2026-03-26T13:25:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2196\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-ijqrpw93h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085720-460icml4a\"}]","start":"2026-05-05T21:20:00.000Z","end":"2026-05-05T21:45:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6559\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-rf021zcw9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085689-91o3j4mc5\"}]","start":"2026-03-10T15:55:00.000Z","end":"2026-03-10T16:20:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4272\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086295-rpll990oo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085685-u1bk9b179\"}]","start":"2026-03-04T20:15:00.000Z","end":"2026-03-04T20:40:00.000Z","created":"2025-12-12T05:24:46.295Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2433\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-ciuxbmv7t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085735-dtnevd4je\"}]","start":"2026-06-04T13:25:00.000Z","end":"2026-06-04T13:50:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2437\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-wdueij16l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085721-gvhr0j0cj\"}]","start":"2026-05-07T17:35:00.000Z","end":"2026-05-07T18:00:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4242\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-qf6tu8pyl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085714-xcm11fzem\"}]","start":"2026-04-24T18:50:00.000Z","end":"2026-04-24T19:15:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1081\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-31qup05t8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085687-a334wddvc\"}]","start":"2026-03-06T15:15:00.000Z","end":"2026-03-06T15:40:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9722\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-sd6i1joio","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085693-xrzx4qwaf\"}]","start":"2026-03-17T15:30:00.000Z","end":"2026-03-17T15:55:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6622\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-q0rkfnbla","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085692-7256zxo9o\"}]","start":"2026-03-16T18:00:00.000Z","end":"2026-03-16T18:25:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3141\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-q25kesv7n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085645-cf6zp0has\"}]","start":"2025-12-25T15:15:00.000Z","end":"2025-12-25T15:40:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-3897\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-lvp4ztle5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085642-vkkcw2eq0\"}]","start":"2025-12-19T21:30:00.000Z","end":"2025-12-19T21:55:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8560\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-x0l63t357","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085666-oswaip9nb\"}]","start":"2026-01-28T19:50:00.000Z","end":"2026-01-28T20:15:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6215\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-tf87gvu1r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085697-rvppvzxpr\"}]","start":"2026-03-23T20:55:00.000Z","end":"2026-03-23T21:20:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-4396\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-b8fyr8rh8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085665-7hvkjy4ni\"}]","start":"2026-01-28T14:00:00.000Z","end":"2026-01-28T14:25:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6404\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-se9efzqie","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085663-93zfk1ql4\"}]","start":"2026-01-23T17:20:00.000Z","end":"2026-01-23T17:45:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1411\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086296-sw04xuo2r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085699-8p1ntfre9\"}]","start":"2026-03-27T15:55:00.000Z","end":"2026-03-27T16:20:00.000Z","created":"2025-12-12T05:24:46.296Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4673\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-be8q4s84d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085702-8ah1zhhi3\"}]","start":"2026-04-01T19:40:00.000Z","end":"2026-04-01T20:05:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8880\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-af6gyobcu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085663-4qytwjony\"}]","start":"2026-01-23T16:55:00.000Z","end":"2026-01-23T17:20:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9265\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-273p0d64j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085697-sb0ypypx6\"}]","start":"2026-03-25T13:00:00.000Z","end":"2026-03-25T13:25:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8475\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-j5hhd5p1i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085649-1jv73a542\"}]","start":"2025-12-30T18:10:00.000Z","end":"2025-12-30T18:35:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1406\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-qyjwrm1u4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085716-0gf8fvj00\"}]","start":"2026-04-28T20:05:00.000Z","end":"2026-04-28T20:30:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8181\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-gqa1gl7d2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085730-uqjuzgv1p\"}]","start":"2026-05-25T17:10:00.000Z","end":"2026-05-25T17:35:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2701\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-9nevzao74","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085733-6m4xozdfh\"}]","start":"2026-05-28T15:30:00.000Z","end":"2026-05-28T15:55:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9417\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-yc9vr21cy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085715-zdf0v9c9b\"}]","start":"2026-04-27T20:30:00.000Z","end":"2026-04-27T20:55:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5053\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-7mhyazhbh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085709-youszcz12\"}]","start":"2026-04-16T16:45:00.000Z","end":"2026-04-16T17:10:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9441\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-jfff0ykfj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085676-cqid1gq05\"}]","start":"2026-02-13T14:00:00.000Z","end":"2026-02-13T14:25:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8802\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-n5bkgn4qo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085734-qhitwbp8t\"}]","start":"2026-06-02T14:15:00.000Z","end":"2026-06-02T14:40:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6237\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-1po5ygzih","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085731-tu18ba6y9\"}]","start":"2026-05-26T13:25:00.000Z","end":"2026-05-26T13:50:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6736\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086297-ntxp3eg8m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085688-px8g4oru9\"}]","start":"2026-03-10T14:40:00.000Z","end":"2026-03-10T15:05:00.000Z","created":"2025-12-12T05:24:46.297Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6671\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-njorcgvbj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085671-82ea70wh6\"}]","start":"2026-02-05T18:10:00.000Z","end":"2026-02-05T18:35:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8497\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-fhs10ngsr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085726-gh9ppeqdi\"}]","start":"2026-05-18T14:15:00.000Z","end":"2026-05-18T14:40:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2835\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-spbl9o211","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085740-2mxql9ioy\"}]","start":"2026-06-09T17:35:00.000Z","end":"2026-06-09T18:00:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5111\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-fbx03i6ec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085670-n5ang8bx4\"}]","start":"2026-02-03T18:10:00.000Z","end":"2026-02-03T18:35:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-4808\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-17srhtion","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085710-wfuxfcf00\"}]","start":"2026-04-17T19:15:00.000Z","end":"2026-04-17T19:40:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8967\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-6re9wgb0u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085709-mpi6bvudn\"}]","start":"2026-04-16T17:10:00.000Z","end":"2026-04-16T17:35:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1709\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-2ablsywoj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085712-ubenzik35\"}]","start":"2026-04-21T14:40:00.000Z","end":"2026-04-21T15:05:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8336\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-ltqby1ndn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085684-gvxpiua8m\"}]","start":"2026-02-27T21:30:00.000Z","end":"2026-02-27T21:55:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2191\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-p77u6fgtx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085732-vodvs7170\"}]","start":"2026-05-27T20:05:00.000Z","end":"2026-05-27T20:30:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-2279\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-dx7hqjdaa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085677-yfkjt2p0x\"}]","start":"2026-02-16T20:40:00.000Z","end":"2026-02-16T21:05:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9443\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-bp0ip4yl7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085693-t9k6xihkr\"}]","start":"2026-03-17T18:50:00.000Z","end":"2026-03-17T19:15:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9576\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-kxqa1gzuq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085688-nmtkxtiwx\"}]","start":"2026-03-09T20:55:00.000Z","end":"2026-03-09T21:20:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1466\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086298-jab4sblwe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-bal7iqfy7\"}]","start":"2026-03-23T16:45:00.000Z","end":"2026-03-23T17:10:00.000Z","created":"2025-12-12T05:24:46.298Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1687\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-080x922uk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085737-wexyup1lb\"}]","start":"2026-06-05T14:15:00.000Z","end":"2026-06-05T14:40:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9183\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-kvui8n93x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085647-89x5987ke\"}]","start":"2025-12-29T14:50:00.000Z","end":"2025-12-29T15:15:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8175\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-1opbaiymh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085656-s3urpbq1s\"}]","start":"2026-01-13T14:00:00.000Z","end":"2026-01-13T14:25:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2316\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-h50j2gwio","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085663-h8ku8tnla\"}]","start":"2026-01-26T15:40:00.000Z","end":"2026-01-26T16:05:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5733\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-adwquymo3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085684-2bft8vi8m\"}]","start":"2026-03-02T21:30:00.000Z","end":"2026-03-02T21:55:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4447\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-321diuo56","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085703-62bkehwso\"}]","start":"2026-04-06T13:25:00.000Z","end":"2026-04-06T13:50:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5265\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-76342j0ar","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085703-pl5inll4y\"}]","start":"2026-04-03T20:30:00.000Z","end":"2026-04-03T20:55:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3183\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-wy197f2cu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085733-ad3u7jtn0\"}]","start":"2026-05-29T16:45:00.000Z","end":"2026-05-29T17:10:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8804\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-8n0rhestv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085680-vlgkly5o1\"}]","start":"2026-02-23T21:55:00.000Z","end":"2026-02-23T22:20:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-1290\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-rjikimq5m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085646-rppx5cfa2\"}]","start":"2025-12-26T17:20:00.000Z","end":"2025-12-26T17:45:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-7391\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-td72e4vrj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085675-8je1rv8pe\"}]","start":"2026-02-11T21:05:00.000Z","end":"2026-02-11T21:30:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3021\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-mpkktkz0e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085647-q93o60kus\"}]","start":"2025-12-29T18:10:00.000Z","end":"2025-12-29T18:35:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4664\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086299-hn1i0j6fw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085645-86qppggyn\"}]","start":"2025-12-24T22:20:00.000Z","end":"2025-12-24T22:45:00.000Z","created":"2025-12-12T05:24:46.299Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4388\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086300-70d88vf0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085727-zz7xfnhdn\"}]","start":"2026-05-19T18:00:00.000Z","end":"2026-05-19T18:25:00.000Z","created":"2025-12-12T05:24:46.300Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8684\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.300Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-342n4de1p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085704-q3tdmv3eh\"}]","start":"2026-04-08T14:40:00.000Z","end":"2026-04-08T15:05:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1386\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-d1bqnmd7d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085666-atzj1dl4m\"}]","start":"2026-01-28T22:20:00.000Z","end":"2026-01-28T22:45:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4291\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-raphrcaug","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085659-6bdt22130\"}]","start":"2026-01-20T14:00:00.000Z","end":"2026-01-20T14:25:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2760\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-u8qrbvf06","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085663-61cygziyv\"}]","start":"2026-01-23T17:45:00.000Z","end":"2026-01-23T18:10:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9097\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-58pt1z1tl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085689-gwxw2gbu0\"}]","start":"2026-03-10T16:45:00.000Z","end":"2026-03-10T17:10:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3677\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-iuvombq3j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085642-61p6iuzor\"}]","start":"2025-12-18T21:30:00.000Z","end":"2025-12-18T21:55:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3623\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-55ni5otq5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085652-lsuqhy1dy\"}]","start":"2026-01-06T17:20:00.000Z","end":"2026-01-06T17:45:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-6800\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-21qag9vbx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085650-3hzdgzri6\"}]","start":"2026-01-01T17:20:00.000Z","end":"2026-01-01T17:45:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6335\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-ycpubd9t9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085672-k9jd9zh0l\"}]","start":"2026-02-09T14:25:00.000Z","end":"2026-02-09T14:50:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7209\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-3huz3b7ir","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085673-ohd4w4pyo\"}]","start":"2026-02-10T18:10:00.000Z","end":"2026-02-10T18:35:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9838\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086302-28np0vpuu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085671-usekxkpod\"}]","start":"2026-02-05T20:15:00.000Z","end":"2026-02-05T20:40:00.000Z","created":"2025-12-12T05:24:46.302Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5191\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-b49empoac","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085680-xdo9m5jb0\"}]","start":"2026-02-23T20:15:00.000Z","end":"2026-02-23T20:40:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5407\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-1jq3l87iz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085658-sq9oatii7\"}]","start":"2026-01-15T19:25:00.000Z","end":"2026-01-15T19:50:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5883\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-het8kav8a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085676-77xja2x33\"}]","start":"2026-02-12T19:50:00.000Z","end":"2026-02-12T20:15:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8779\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-veos1doki","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085662-8w7wepic8\"}]","start":"2026-01-21T19:50:00.000Z","end":"2026-01-21T20:15:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5145\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-yv9n7n417","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085729-3eiu5ufbo\"}]","start":"2026-05-22T21:20:00.000Z","end":"2026-05-22T21:45:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8963\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-mp44zif9b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085714-270bz34m8\"}]","start":"2026-04-24T20:30:00.000Z","end":"2026-04-24T20:55:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8775\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-dpqo2y8wp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085688-cqj9wg5fp\"}]","start":"2026-03-06T18:35:00.000Z","end":"2026-03-06T19:00:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4877\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-o2o10xr0v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085642-39cjdnytw\"}]","start":"2025-12-19T19:50:00.000Z","end":"2025-12-19T20:15:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6594\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-ygsd1obk6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085719-zav92jqrk\"}]","start":"2026-05-04T19:15:00.000Z","end":"2026-05-04T19:40:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9914\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-g2zuscipy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085661-clzveeda7\"}]","start":"2026-01-21T16:30:00.000Z","end":"2026-01-21T16:55:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4859\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-seux39arp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085689-e9dztx3h4\"}]","start":"2026-03-10T17:35:00.000Z","end":"2026-03-10T18:00:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-3522\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-dk34b0qg8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085702-3hyjy6ibj\"}]","start":"2026-04-02T13:50:00.000Z","end":"2026-04-02T14:15:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7014\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086303-h16xa7vq9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085666-5qop537ax\"}]","start":"2026-01-28T20:40:00.000Z","end":"2026-01-28T21:05:00.000Z","created":"2025-12-12T05:24:46.303Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4919\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-2a4z6sgc9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085664-cs1hebdy7\"}]","start":"2026-01-26T19:25:00.000Z","end":"2026-01-26T19:50:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8913\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-nhbt3idrg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085658-t2ipxlglq\"}]","start":"2026-01-16T20:15:00.000Z","end":"2026-01-16T20:40:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6026\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-rwhtyp71x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085638-xc9ese6mo\"}]","start":"2025-12-12T17:20:00.000Z","end":"2025-12-12T17:45:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5504\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-26hx4h0qc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085682-lwhj9t65r\"}]","start":"2026-02-24T20:40:00.000Z","end":"2026-02-24T21:05:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2283\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-zuaue4y22","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085733-o8nsq9xtf\"}]","start":"2026-05-28T15:05:00.000Z","end":"2026-05-28T15:30:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9121\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-8sscovhuv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085676-1l5xlpiqh\"}]","start":"2026-02-13T17:20:00.000Z","end":"2026-02-13T17:45:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6489\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-tpdoyasj2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085673-fvu9w75t8\"}]","start":"2026-02-10T21:05:00.000Z","end":"2026-02-10T21:30:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9176\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-cci1ui1zx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085648-4w97o7srw\"}]","start":"2025-12-29T21:30:00.000Z","end":"2025-12-29T21:55:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-8829\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-82cx6epb4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085698-3849n0iae\"}]","start":"2026-03-25T18:25:00.000Z","end":"2026-03-25T18:50:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1832\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-7w4uy8x4o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085663-1jgy49fux\"}]","start":"2026-01-22T21:30:00.000Z","end":"2026-01-22T21:55:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8882\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-xc9hjeoqg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085673-iq13ase3e\"}]","start":"2026-02-10T18:35:00.000Z","end":"2026-02-10T19:00:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5662\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086304-83a8nuh9r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085725-xty873t70\"}]","start":"2026-05-15T13:50:00.000Z","end":"2026-05-15T14:15:00.000Z","created":"2025-12-12T05:24:46.304Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2784\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-13afgsekz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085660-r3nb42cmt\"}]","start":"2026-01-20T19:25:00.000Z","end":"2026-01-20T19:50:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5212\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-3z8p4k3ze","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085661-ddklsuas6\"}]","start":"2026-01-21T14:50:00.000Z","end":"2026-01-21T15:15:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6403\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-vs9k80fw5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085698-x3ix1so05\"}]","start":"2026-03-26T15:30:00.000Z","end":"2026-03-26T15:55:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4173\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-u80pyo6vz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085679-dogjwlw9n\"}]","start":"2026-02-19T21:30:00.000Z","end":"2026-02-19T21:55:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7298\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-45w4bascp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085650-v0sj4tqxg\"}]","start":"2026-01-01T19:50:00.000Z","end":"2026-01-01T20:15:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-9176\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-98bg44mng","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085678-vfhkojzi2\"}]","start":"2026-02-18T20:40:00.000Z","end":"2026-02-18T21:05:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5446\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-0jljqa6k7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085666-1e2jmc0nx\"}]","start":"2026-01-28T17:20:00.000Z","end":"2026-01-28T17:45:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4314\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-1296tzvqb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-7t317vauf\"}]","start":"2026-05-22T14:15:00.000Z","end":"2026-05-22T14:40:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6972\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-40nhuzn3l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085667-96aunq4ux\"}]","start":"2026-01-30T20:15:00.000Z","end":"2026-01-30T20:40:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-9049\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-r6k5dxboz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-ctata9czi\"}]","start":"2026-01-21T21:05:00.000Z","end":"2026-01-21T21:30:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4474\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-c81jrqky1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085727-99uuv6ctd\"}]","start":"2026-05-20T13:50:00.000Z","end":"2026-05-20T14:15:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4340\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-jo483068v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085659-992d44yd8\"}]","start":"2026-01-19T18:35:00.000Z","end":"2026-01-19T19:00:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2178\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086305-kmypw94dm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085718-gq3dtas6q\"}]","start":"2026-05-01T15:55:00.000Z","end":"2026-05-01T16:20:00.000Z","created":"2025-12-12T05:24:46.305Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8851\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-hv9y6in9r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085709-0zl4d2iz7\"}]","start":"2026-04-16T18:00:00.000Z","end":"2026-04-16T18:25:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6464\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-mjln8fzlb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085670-o92g1bi2y\"}]","start":"2026-02-04T19:00:00.000Z","end":"2026-02-04T19:25:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-2857\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-4xi1cktgv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085698-y2j6winnc\"}]","start":"2026-03-26T18:25:00.000Z","end":"2026-03-26T18:50:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9655\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-q3zb7zr5d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085727-wslqf8w3m\"}]","start":"2026-05-20T18:00:00.000Z","end":"2026-05-20T18:25:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-6340\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-qq8nupbt6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085731-203ry8pno\"}]","start":"2026-05-26T14:40:00.000Z","end":"2026-05-26T15:05:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2295\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-a9qy6xbjc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085642-hq7ruov25\"}]","start":"2025-12-19T20:15:00.000Z","end":"2025-12-19T20:40:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-2135\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-8k3h2n4nk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085705-2vd5xg2m6\"}]","start":"2026-04-08T16:45:00.000Z","end":"2026-04-08T17:10:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3638\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-gqfcmmb0q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085650-6e5mpfftr\"}]","start":"2025-12-31T21:05:00.000Z","end":"2025-12-31T21:30:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6194\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-ductksdy1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085659-52m91bpmq\"}]","start":"2026-01-19T21:30:00.000Z","end":"2026-01-19T21:55:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8654\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086306-660sok9n7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085684-yvpbsu8rp\"}]","start":"2026-03-02T16:30:00.000Z","end":"2026-03-02T16:55:00.000Z","created":"2025-12-12T05:24:46.306Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8158\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-pcp7k56dh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085683-eyupgwl56\"}]","start":"2026-02-27T17:45:00.000Z","end":"2026-02-27T18:10:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5079\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-sbtad1ugh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085677-rfqfcc8mw\"}]","start":"2026-02-16T14:00:00.000Z","end":"2026-02-16T14:25:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3898\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-n3f49jrkz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085685-7kri3morz\"}]","start":"2026-03-03T21:30:00.000Z","end":"2026-03-03T21:55:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3339\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-8c81cbfgl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085719-sex1nfjeg\"}]","start":"2026-05-04T14:40:00.000Z","end":"2026-05-04T15:05:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9040\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-kw5k9v1k8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-n1n0uide6\"}]","start":"2026-01-14T14:00:00.000Z","end":"2026-01-14T14:25:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9538\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-guj1s56nd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085709-3ldlz1uje\"}]","start":"2026-04-15T13:50:00.000Z","end":"2026-04-15T14:15:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3450\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-aofjyd882","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085638-w7t3s5c2n\"}]","start":"2025-12-15T19:25:00.000Z","end":"2025-12-15T19:50:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-9863\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-tnaxy59x6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085725-a6h2wft8x\"}]","start":"2026-05-14T20:30:00.000Z","end":"2026-05-14T20:55:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4979\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-b5bxqgv5x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085692-usa9zfs7y\"}]","start":"2026-03-13T20:55:00.000Z","end":"2026-03-13T21:20:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8015\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-mzyl6nugr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085708-kxdvopwvl\"}]","start":"2026-04-13T20:05:00.000Z","end":"2026-04-13T20:30:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3421\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-joppymsk6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085687-xk7uthx4l\"}]","start":"2026-03-05T22:20:00.000Z","end":"2026-03-05T22:45:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-9857\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-xccyiqhy0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085715-sajxkw5b0\"}]","start":"2026-04-28T17:35:00.000Z","end":"2026-04-28T18:00:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9965\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086307-iq7lvlmnj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085728-s5mcc8mq5\"}]","start":"2026-05-21T17:35:00.000Z","end":"2026-05-21T18:00:00.000Z","created":"2025-12-12T05:24:46.307Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5991\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-g2ecu26wp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085671-br7m2urom\"}]","start":"2026-02-04T21:30:00.000Z","end":"2026-02-04T21:55:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4279\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-80d37f7pf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085646-law8p1get\"}]","start":"2025-12-26T14:50:00.000Z","end":"2025-12-26T15:15:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9514\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-phyeu1wfg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-nwph4bekl\"}]","start":"2026-03-20T21:20:00.000Z","end":"2026-03-20T21:45:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-3597\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-u4zut0mb7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085709-kidzpib97\"}]","start":"2026-04-15T21:20:00.000Z","end":"2026-04-15T21:45:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-8678\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-tgn1wbwn3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085720-047iglrom\"}]","start":"2026-05-06T18:25:00.000Z","end":"2026-05-06T18:50:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1524\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-erjw9won2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-c0jwr9a7h\"}]","start":"2026-04-07T13:25:00.000Z","end":"2026-04-07T13:50:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1244\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-ipvy0i69d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085659-5uf61zzs6\"}]","start":"2026-01-19T15:15:00.000Z","end":"2026-01-19T15:40:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8654\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-059vr54b0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085641-v9sctybmj\"}]","start":"2025-12-18T14:00:00.000Z","end":"2025-12-18T14:25:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6992\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-jzn0uvewx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085740-qylmmxevm\"}]","start":"2026-06-09T20:30:00.000Z","end":"2026-06-09T20:55:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-8627\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-gvd64k6iu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085671-bgbdyo4oi\"}]","start":"2026-02-06T17:20:00.000Z","end":"2026-02-06T17:45:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3436\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-gzc8cligx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085684-ty3xguvo2\"}]","start":"2026-03-02T19:00:00.000Z","end":"2026-03-02T19:25:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1027\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086308-v7vu9hoi0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085679-2q8350jfw\"}]","start":"2026-02-19T18:35:00.000Z","end":"2026-02-19T19:00:00.000Z","created":"2025-12-12T05:24:46.308Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9870\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-nypcf0hqd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085657-5xi7tlpng\"}]","start":"2026-01-14T21:30:00.000Z","end":"2026-01-14T21:55:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3303\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-ikm5iorwx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085647-zaox5ls9j\"}]","start":"2025-12-29T16:55:00.000Z","end":"2025-12-29T17:20:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2928\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-2ewrl5ow8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085697-epnzikqiw\"}]","start":"2026-03-24T17:35:00.000Z","end":"2026-03-24T18:00:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7419\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-91l1ed2yg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085734-oy3m8d2do\"}]","start":"2026-06-01T14:15:00.000Z","end":"2026-06-01T14:40:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4692\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-9zqnauaig","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085721-im2xr097e\"}]","start":"2026-05-08T14:40:00.000Z","end":"2026-05-08T15:05:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6745\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-hbmglo7ky","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085643-6rxi3ub77\"}]","start":"2025-12-23T19:50:00.000Z","end":"2025-12-23T20:15:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4599\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-ojtuzixh7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085705-lw197zunz\"}]","start":"2026-04-08T16:20:00.000Z","end":"2026-04-08T16:45:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1269\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-7msiibk20","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085734-iwrsk3mb0\"}]","start":"2026-06-01T20:55:00.000Z","end":"2026-06-01T21:20:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3064\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-v1o76990g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085712-wlc1rbgwh\"}]","start":"2026-04-21T15:30:00.000Z","end":"2026-04-21T15:55:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5514\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-vp0vajfe5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085704-0ajatfdcl\"}]","start":"2026-04-07T20:30:00.000Z","end":"2026-04-07T20:55:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1044\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-4zk3dzti6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085698-c1q219pfd\"}]","start":"2026-03-26T14:15:00.000Z","end":"2026-03-26T14:40:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1210\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086309-c5epvziaj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085647-id6do8677\"}]","start":"2025-12-29T19:00:00.000Z","end":"2025-12-29T19:25:00.000Z","created":"2025-12-12T05:24:46.309Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-3334\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-yi3lbbxv4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085727-xv7seqcqy\"}]","start":"2026-05-20T14:15:00.000Z","end":"2026-05-20T14:40:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1750\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-6gazzsj6t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085663-debcaszei\"}]","start":"2026-01-23T22:20:00.000Z","end":"2026-01-23T22:45:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2475\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-owbe5rpch","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085641-1604t29mh\"}]","start":"2025-12-17T19:25:00.000Z","end":"2025-12-17T19:50:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6160\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-daourbhc3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085720-z1hb90id1\"}]","start":"2026-05-07T14:15:00.000Z","end":"2026-05-07T14:40:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3206\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-3h3mom932","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085714-znlg8k302\"}]","start":"2026-04-24T13:25:00.000Z","end":"2026-04-24T13:50:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6891\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-f7l74rx2h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085727-3ylio8cm1\"}]","start":"2026-05-20T17:35:00.000Z","end":"2026-05-20T18:00:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4282\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-98ki19rr9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085678-zu20n58gi\"}]","start":"2026-02-18T16:55:00.000Z","end":"2026-02-18T17:20:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9898\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-q0r1sheys","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085662-a5p1x06z2\"}]","start":"2026-01-22T19:50:00.000Z","end":"2026-01-22T20:15:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2935\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-r4fc2yr74","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085731-b3pia351j\"}]","start":"2026-05-26T16:20:00.000Z","end":"2026-05-26T16:45:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6823\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086310-gb191crsr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085659-q5xo8bpd3\"}]","start":"2026-01-19T16:55:00.000Z","end":"2026-01-19T17:20:00.000Z","created":"2025-12-12T05:24:46.310Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5608\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086312-m6uf5c29q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085667-bsnqbn0lw\"}]","start":"2026-01-29T17:45:00.000Z","end":"2026-01-29T18:10:00.000Z","created":"2025-12-12T05:24:46.312Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7371\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.312Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086312-wshjtnbzw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085642-ix6w2dh9y\"}]","start":"2025-12-19T19:00:00.000Z","end":"2025-12-19T19:25:00.000Z","created":"2025-12-12T05:24:46.312Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1436\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.312Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086312-fugj67cdf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085673-f5ayd5xqt\"}]","start":"2026-02-10T17:45:00.000Z","end":"2026-02-10T18:10:00.000Z","created":"2025-12-12T05:24:46.312Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3341\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.312Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086312-k8rfg6vyz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085656-cxzrpa0fm\"}]","start":"2026-01-13T17:20:00.000Z","end":"2026-01-13T17:45:00.000Z","created":"2025-12-12T05:24:46.312Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8275\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.312Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-hddkcu0w4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085678-zgb73d5b9\"}]","start":"2026-02-19T14:00:00.000Z","end":"2026-02-19T14:25:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8310\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-i28l6ux9i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085680-42pn7zivt\"}]","start":"2026-02-23T14:50:00.000Z","end":"2026-02-23T15:15:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-6841\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-ohf4000lo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085725-o74r88oq9\"}]","start":"2026-05-14T15:30:00.000Z","end":"2026-05-14T15:55:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7882\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-87w2paubq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085692-wpqkbf5tc\"}]","start":"2026-03-16T14:40:00.000Z","end":"2026-03-16T15:05:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8333\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-5p86hqdlq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085695-l4ommef90\"}]","start":"2026-03-19T17:10:00.000Z","end":"2026-03-19T17:35:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9627\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-8drzfrkyx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085663-cimi3loq6\"}]","start":"2026-01-23T15:40:00.000Z","end":"2026-01-23T16:05:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-2803\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-p8prb07w3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085652-n6s9hgpmm\"}]","start":"2026-01-05T22:20:00.000Z","end":"2026-01-05T22:45:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8664\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-yo7db34a0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085706-243veeexg\"}]","start":"2026-04-09T16:45:00.000Z","end":"2026-04-09T17:10:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8342\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-1ea3qxfi5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085683-rkp3vljtv\"}]","start":"2026-02-26T19:50:00.000Z","end":"2026-02-26T20:15:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-6713\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-d851tun6u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085709-62lyj35ll\"}]","start":"2026-04-15T17:35:00.000Z","end":"2026-04-15T18:00:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-4690\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-frzc9p1sw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085712-u6drzvbbl\"}]","start":"2026-04-21T17:10:00.000Z","end":"2026-04-21T17:35:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5965\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086313-xopkq3s36","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085663-plx4kgtai\"}]","start":"2026-01-26T14:25:00.000Z","end":"2026-01-26T14:50:00.000Z","created":"2025-12-12T05:24:46.313Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9828\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-fu370d32s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085660-z7c89u20f\"}]","start":"2026-01-20T20:40:00.000Z","end":"2026-01-20T21:05:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8389\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-oituapip1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085679-dq56t0q7i\"}]","start":"2026-02-20T15:15:00.000Z","end":"2026-02-20T15:40:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1843\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-ww6kvezgl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085691-tvgd4n2rf\"}]","start":"2026-03-13T13:00:00.000Z","end":"2026-03-13T13:25:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1728\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-ficp8f51f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085676-0ftg8u8n7\"}]","start":"2026-02-13T15:15:00.000Z","end":"2026-02-13T15:40:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4044\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-l0c3g0w08","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085643-o4ur2r6u4\"}]","start":"2025-12-23T16:55:00.000Z","end":"2025-12-23T17:20:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1566\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-5299s8lyr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085700-ftjkwondn\"}]","start":"2026-03-30T16:45:00.000Z","end":"2026-03-30T17:10:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6338\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-90s1yr303","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085671-gnf2bd8bb\"}]","start":"2026-02-05T20:40:00.000Z","end":"2026-02-05T21:05:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3065\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-ie92dcqof","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085674-njxtca7nq\"}]","start":"2026-02-11T15:40:00.000Z","end":"2026-02-11T16:05:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4596\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-mok6imz9z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085671-xm08r581u\"}]","start":"2026-02-05T21:05:00.000Z","end":"2026-02-05T21:30:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5440\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-66gu4gdbv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085699-s255vp0xl\"}]","start":"2026-03-27T17:35:00.000Z","end":"2026-03-27T18:00:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4109\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-cuj6oklxn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085656-9pm68bdnc\"}]","start":"2026-01-12T18:35:00.000Z","end":"2026-01-12T19:00:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5058\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-jswturxvd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085653-n09htch4c\"}]","start":"2026-01-07T22:20:00.000Z","end":"2026-01-07T22:45:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5266\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086314-62rurd13j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085740-yqfnkmzeb\"}]","start":"2026-06-09T18:00:00.000Z","end":"2026-06-09T18:25:00.000Z","created":"2025-12-12T05:24:46.314Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5383\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-plllobr9c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085734-12t0mcjxu\"}]","start":"2026-06-01T20:30:00.000Z","end":"2026-06-01T20:55:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8161\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-6o4cb0tte","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085727-mnn757b6r\"}]","start":"2026-05-19T21:20:00.000Z","end":"2026-05-19T21:45:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8031\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-jq3bodlfb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085738-nlukg6rsb\"}]","start":"2026-06-08T15:05:00.000Z","end":"2026-06-08T15:30:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6433\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-311pwn9w3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085692-2k6qtq0ws\"}]","start":"2026-03-13T19:15:00.000Z","end":"2026-03-13T19:40:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4464\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-798qpaknq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085657-p62zq1a2r\"}]","start":"2026-01-15T15:40:00.000Z","end":"2026-01-15T16:05:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-3727\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-owi72tk6q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085707-4km2m4omg\"}]","start":"2026-04-10T15:55:00.000Z","end":"2026-04-10T16:20:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-7259\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-zl3lekilx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085652-jt2g2n85j\"}]","start":"2026-01-07T14:50:00.000Z","end":"2026-01-07T15:15:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6881\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-eomqn8nvb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085644-5sh6hhi9a\"}]","start":"2025-12-24T18:10:00.000Z","end":"2025-12-24T18:35:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6158\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-nmp3uqz09","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085647-67219wzio\"}]","start":"2025-12-26T19:00:00.000Z","end":"2025-12-26T19:25:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2894\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-0hw8d6l98","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085709-xo3r5jjbx\"}]","start":"2026-04-15T18:50:00.000Z","end":"2026-04-15T19:15:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8636\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-1pl60877y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085720-j0lpa8z4s\"}]","start":"2026-05-06T18:50:00.000Z","end":"2026-05-06T19:15:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3287\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-j6sr7oo5i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085650-wrdxvx8ow\"}]","start":"2026-01-01T19:25:00.000Z","end":"2026-01-01T19:50:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7258\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086315-0qr2c525p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085655-c070cq1s0\"}]","start":"2026-01-09T14:25:00.000Z","end":"2026-01-09T14:50:00.000Z","created":"2025-12-12T05:24:46.315Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8206\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-224luo8zq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085644-ffs4hp7j9\"}]","start":"2025-12-23T22:20:00.000Z","end":"2025-12-23T22:45:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2442\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-etu2uc1rk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085707-6uiaqnsxc\"}]","start":"2026-04-13T15:30:00.000Z","end":"2026-04-13T15:55:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6720\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-py1gfcjmi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085680-txupmalzz\"}]","start":"2026-02-23T16:30:00.000Z","end":"2026-02-23T16:55:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9484\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-s2imzs6o4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085656-5gvlonuej\"}]","start":"2026-01-13T16:05:00.000Z","end":"2026-01-13T16:30:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2560\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-r537bbe2o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085674-7zbj3diaf\"}]","start":"2026-02-11T18:35:00.000Z","end":"2026-02-11T19:00:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1137\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-tmn0s2byi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085656-4h2vjwd0d\"}]","start":"2026-01-13T20:15:00.000Z","end":"2026-01-13T20:40:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3550\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-27aatmo5d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085665-gcrmxwhy8\"}]","start":"2026-01-27T22:20:00.000Z","end":"2026-01-27T22:45:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4764\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-13h3wqhfg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085667-arebcl3yt\"}]","start":"2026-01-29T21:05:00.000Z","end":"2026-01-29T21:30:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2419\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-wdlp3whef","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085719-hbw2p230n\"}]","start":"2026-05-05T14:15:00.000Z","end":"2026-05-05T14:40:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-5637\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-tuud0r2h3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085672-dtguaoqfs\"}]","start":"2026-02-09T18:10:00.000Z","end":"2026-02-09T18:35:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9362\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-l3j54ly1r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085740-0gtj6aqpr\"}]","start":"2026-06-09T16:45:00.000Z","end":"2026-06-09T17:10:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1750\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-swo99w9ln","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-vmp25uje0\"}]","start":"2026-02-26T16:05:00.000Z","end":"2026-02-26T16:30:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5537\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086316-bzst1o4dd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085641-83fb5u1hh\"}]","start":"2025-12-17T21:55:00.000Z","end":"2025-12-17T22:20:00.000Z","created":"2025-12-12T05:24:46.316Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9988\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-mq2dpx5t0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085690-4rt2im0qm\"}]","start":"2026-03-11T20:05:00.000Z","end":"2026-03-11T20:30:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3619\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-zm5ux3vto","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085702-aza704jfz\"}]","start":"2026-04-01T15:55:00.000Z","end":"2026-04-01T16:20:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-2363\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-lgzqspp60","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085704-ask7k111g\"}]","start":"2026-04-07T20:55:00.000Z","end":"2026-04-07T21:20:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-7086\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-rb3r2yp1a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085670-qlccfg3id\"}]","start":"2026-02-04T20:15:00.000Z","end":"2026-02-04T20:40:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2194\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-pzm0jj5kf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085728-ohf9upj2v\"}]","start":"2026-05-21T15:30:00.000Z","end":"2026-05-21T15:55:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2197\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-9u0ugco6u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085686-imco0zygw\"}]","start":"2026-03-05T16:05:00.000Z","end":"2026-03-05T16:30:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-2639\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-2ononrq3i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085689-r0zefoefc\"}]","start":"2026-03-10T19:40:00.000Z","end":"2026-03-10T20:05:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-1308\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-zozalcxll","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085658-knwkr1brr\"}]","start":"2026-01-16T14:50:00.000Z","end":"2026-01-16T15:15:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2539\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-kjnryi9zq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085704-iytons031\"}]","start":"2026-04-07T21:20:00.000Z","end":"2026-04-07T21:45:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1491\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-s8dmcorwp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085678-jeud2jir5\"}]","start":"2026-02-18T21:55:00.000Z","end":"2026-02-18T22:20:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6993\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-duo63w3vy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085719-n5wut5lr3\"}]","start":"2026-05-04T20:55:00.000Z","end":"2026-05-04T21:20:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8869\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-9arxebtti","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085721-64q0jwv5e\"}]","start":"2026-05-07T21:20:00.000Z","end":"2026-05-07T21:45:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7734\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086317-mn2eye5bm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085642-vlm2usqau\"}]","start":"2025-12-19T16:30:00.000Z","end":"2025-12-19T16:55:00.000Z","created":"2025-12-12T05:24:46.317Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2557\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-zgowqddfe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085734-dj3j91es9\"}]","start":"2026-06-02T17:10:00.000Z","end":"2026-06-02T17:35:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2782\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-fsw61mhnf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085696-dqchzdmnd\"}]","start":"2026-03-23T19:15:00.000Z","end":"2026-03-23T19:40:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2202\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-jm0y26p8m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085657-5nfuoprfy\"}]","start":"2026-01-14T16:05:00.000Z","end":"2026-01-14T16:30:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-4565\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-nf75wlyvt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085720-kkobp43cn\"}]","start":"2026-05-05T20:05:00.000Z","end":"2026-05-05T20:30:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5568\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-7mntv4g0o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085677-465uvc5qg\"}]","start":"2026-02-17T14:00:00.000Z","end":"2026-02-17T14:25:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7150\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-4umr4v3ox","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085718-pbtupgipt\"}]","start":"2026-05-01T18:50:00.000Z","end":"2026-05-01T19:15:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9729\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-a0ub29dz5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085723-otm9oz6vb\"}]","start":"2026-05-13T15:05:00.000Z","end":"2026-05-13T15:30:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9703\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-00414of8t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085670-9s9xrgr7p\"}]","start":"2026-02-03T21:55:00.000Z","end":"2026-02-03T22:20:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9612\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-rmmx81veq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085638-xbiflrz3m\"}]","start":"2025-12-12T21:05:00.000Z","end":"2025-12-12T21:30:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9577\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-6d4mbz2ra","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085683-m40qa3gnv\"}]","start":"2026-02-27T16:55:00.000Z","end":"2026-02-27T17:20:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6807\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-cf7bcprh4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085715-r1wazbaf1\"}]","start":"2026-04-27T14:15:00.000Z","end":"2026-04-27T14:40:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-3779\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086318-yubbydtif","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085738-603g2xlyv\"}]","start":"2026-06-05T20:05:00.000Z","end":"2026-06-05T20:30:00.000Z","created":"2025-12-12T05:24:46.318Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4555\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-y5rmd6zn0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085702-umqtlxld2\"}]","start":"2026-04-02T14:15:00.000Z","end":"2026-04-02T14:40:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-6583\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-9supkh6m7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085696-ipjmgyewc\"}]","start":"2026-03-20T14:40:00.000Z","end":"2026-03-20T15:05:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4629\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-v9wa49psk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085701-ohjqprblu\"}]","start":"2026-03-30T18:00:00.000Z","end":"2026-03-30T18:25:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9139\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-e3zo36r2l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085679-ia78kbtum\"}]","start":"2026-02-19T19:00:00.000Z","end":"2026-02-19T19:25:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-6005\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-0cqsk7u96","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085736-bnyvs2yt6\"}]","start":"2026-06-04T16:20:00.000Z","end":"2026-06-04T16:45:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-7214\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-qdnuy85fb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085730-2ayqiwzqy\"}]","start":"2026-05-25T17:35:00.000Z","end":"2026-05-25T18:00:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8441\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-x0pee25g7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085726-s3srmbc2v\"}]","start":"2026-05-18T16:45:00.000Z","end":"2026-05-18T17:10:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5886\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-epb9r3bvl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085649-5gm2cz1x1\"}]","start":"2025-12-30T16:30:00.000Z","end":"2025-12-30T16:55:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5091\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-ifjw0ii00","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085653-7vwvpyee7\"}]","start":"2026-01-08T16:30:00.000Z","end":"2026-01-08T16:55:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8389\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-5yxbtphtc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085711-mr4iw8rys\"}]","start":"2026-04-20T15:55:00.000Z","end":"2026-04-20T16:20:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6873\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-kqcl146jo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085714-wqthmwgwe\"}]","start":"2026-04-24T20:55:00.000Z","end":"2026-04-24T21:20:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7531\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-5u5t4pthl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085677-rn2bwky9y\"}]","start":"2026-02-16T14:25:00.000Z","end":"2026-02-16T14:50:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5577\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086319-rjwyc6hu2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085642-tbkdylcp8\"}]","start":"2025-12-19T16:55:00.000Z","end":"2025-12-19T17:20:00.000Z","created":"2025-12-12T05:24:46.319Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8078\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-cbykfvkda","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085713-41avqc9tf\"}]","start":"2026-04-22T14:40:00.000Z","end":"2026-04-22T15:05:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6905\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-yn5852gw1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085683-dxfoi0898\"}]","start":"2026-02-26T20:40:00.000Z","end":"2026-02-26T21:05:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1290\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-vn46ujoae","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085707-alytqbq2m\"}]","start":"2026-04-09T20:30:00.000Z","end":"2026-04-09T20:55:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8947\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-n5eywl8zj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085714-zkcsm2iq6\"}]","start":"2026-04-24T13:50:00.000Z","end":"2026-04-24T14:15:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-3842\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-yqmwf2ab6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085717-6koyiotow\"}]","start":"2026-05-01T14:15:00.000Z","end":"2026-05-01T14:40:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-3353\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-3d519ogha","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085740-rqepz97zp\"}]","start":"2026-06-09T20:55:00.000Z","end":"2026-06-09T21:20:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8070\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-5ijrs0xnf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085659-1kuem6lbn\"}]","start":"2026-01-19T14:50:00.000Z","end":"2026-01-19T15:15:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-6014\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-g0gcvyhse","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085643-cn07ex515\"}]","start":"2025-12-23T19:25:00.000Z","end":"2025-12-23T19:50:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9883\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-w6tnzfths","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085726-0iglh9s0n\"}]","start":"2026-05-18T19:15:00.000Z","end":"2026-05-18T19:40:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9535\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-416ra3up4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085653-n2f5tzt5w\"}]","start":"2026-01-07T19:25:00.000Z","end":"2026-01-07T19:50:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9625\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-bmix385qh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085682-7fqzwyxe9\"}]","start":"2026-02-25T16:30:00.000Z","end":"2026-02-25T16:55:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-2726\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-vuzq89feb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085692-gk2gnt76u\"}]","start":"2026-03-17T15:05:00.000Z","end":"2026-03-17T15:30:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3293\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086320-kf8yhfhjn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085646-zgpl3tsg6\"}]","start":"2025-12-26T15:15:00.000Z","end":"2025-12-26T15:40:00.000Z","created":"2025-12-12T05:24:46.320Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7921\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086321-q3aahz4b6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085655-l2nfyy4jq\"}]","start":"2026-01-09T19:00:00.000Z","end":"2026-01-09T19:25:00.000Z","created":"2025-12-12T05:24:46.321Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5512\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086321-0sodw9sfr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085693-a1nt4qc7g\"}]","start":"2026-03-18T14:15:00.000Z","end":"2026-03-18T14:40:00.000Z","created":"2025-12-12T05:24:46.321Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7286\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086321-bqmj0qc0m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085708-sjo19w9n9\"}]","start":"2026-04-14T15:05:00.000Z","end":"2026-04-14T15:30:00.000Z","created":"2025-12-12T05:24:46.321Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2241\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086321-4pcxfthvo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085726-1tqt08o8w\"}]","start":"2026-05-18T15:05:00.000Z","end":"2026-05-18T15:30:00.000Z","created":"2025-12-12T05:24:46.321Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9978\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086321-sfqrisxke","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085714-tdwmmji8j\"}]","start":"2026-04-23T20:05:00.000Z","end":"2026-04-23T20:30:00.000Z","created":"2025-12-12T05:24:46.321Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1333\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086321-bbmidgirg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085641-7a5p2r0wv\"}]","start":"2025-12-17T20:15:00.000Z","end":"2025-12-17T20:40:00.000Z","created":"2025-12-12T05:24:46.321Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4052\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086321-j9eja6qsn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085666-t74nsrjrq\"}]","start":"2026-01-29T15:40:00.000Z","end":"2026-01-29T16:05:00.000Z","created":"2025-12-12T05:24:46.321Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4209\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086323-jzoxxu9bx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085678-h5k22swkz\"}]","start":"2026-02-18T14:25:00.000Z","end":"2026-02-18T14:50:00.000Z","created":"2025-12-12T05:24:46.323Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1301\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086323-gom0343wc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085701-7hdo6macw\"}]","start":"2026-03-31T13:25:00.000Z","end":"2026-03-31T13:50:00.000Z","created":"2025-12-12T05:24:46.323Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-5222\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086323-damtors18","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085662-03xu00d3j\"}]","start":"2026-01-22T16:30:00.000Z","end":"2026-01-22T16:55:00.000Z","created":"2025-12-12T05:24:46.323Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7798\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086323-5iwlgu8yr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085643-imeac6fsw\"}]","start":"2025-12-22T18:35:00.000Z","end":"2025-12-22T19:00:00.000Z","created":"2025-12-12T05:24:46.323Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4119\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086323-uz6x5rtf5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085676-3tf71poo3\"}]","start":"2026-02-13T19:25:00.000Z","end":"2026-02-13T19:50:00.000Z","created":"2025-12-12T05:24:46.323Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5573\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086323-26uwfpe2g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085694-dkib91ymf\"}]","start":"2026-03-18T15:05:00.000Z","end":"2026-03-18T15:30:00.000Z","created":"2025-12-12T05:24:46.323Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2073\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-pn3wmrqla","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085725-85ez92qd7\"}]","start":"2026-05-15T17:10:00.000Z","end":"2026-05-15T17:35:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9827\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-qns8f0pw7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085695-1om3r8v1k\"}]","start":"2026-03-19T15:30:00.000Z","end":"2026-03-19T15:55:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2159\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-1ax9zpbwu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085667-dlcfct2cz\"}]","start":"2026-01-29T18:10:00.000Z","end":"2026-01-29T18:35:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8049\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-5reob4ktp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085714-fpgoglc2v\"}]","start":"2026-04-24T18:00:00.000Z","end":"2026-04-24T18:25:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2287\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-ookvnihl7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085643-cxqelwf4s\"}]","start":"2025-12-22T14:50:00.000Z","end":"2025-12-22T15:15:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4210\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-sux16y28r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085701-ywqzbivme\"}]","start":"2026-03-30T18:50:00.000Z","end":"2026-03-30T19:15:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-7553\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-kcq3isck3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085707-fgrij4q2o\"}]","start":"2026-04-13T14:15:00.000Z","end":"2026-04-13T14:40:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1190\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-ynwb9yeiz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085710-q5jwatd23\"}]","start":"2026-04-17T16:20:00.000Z","end":"2026-04-17T16:45:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8673\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-kskq68hql","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085704-zrfo7p109\"}]","start":"2026-04-07T16:20:00.000Z","end":"2026-04-07T16:45:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3624\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-bz4j6z8rb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085715-2x7bx3a40\"}]","start":"2026-04-27T15:05:00.000Z","end":"2026-04-27T15:30:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7043\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-497aud2y9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085684-xqksmrvzk\"}]","start":"2026-03-02T16:55:00.000Z","end":"2026-03-02T17:20:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1449\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086324-ty953k7we","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085655-3s0v68frc\"}]","start":"2026-01-09T21:30:00.000Z","end":"2026-01-09T21:55:00.000Z","created":"2025-12-12T05:24:46.324Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4258\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086325-ywjns2n7k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085665-vp29dogll\"}]","start":"2026-01-27T20:15:00.000Z","end":"2026-01-27T20:40:00.000Z","created":"2025-12-12T05:24:46.325Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5936\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.325Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086325-xinssoywg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085709-4hm1af145\"}]","start":"2026-04-16T17:35:00.000Z","end":"2026-04-16T18:00:00.000Z","created":"2025-12-12T05:24:46.325Z","comment":"Appointment with Dr. Michael Johnson","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8635\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.325Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086396-e89r6f91l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085888-ef5u1l045\"}]","start":"2026-06-08T12:15:00.000Z","end":"2026-06-08T12:30:00.000Z","created":"2025-12-12T05:24:46.396Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1778\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086396-g2pph3mrg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085741-4gz97q1za\"}]","start":"2025-12-15T15:45:00.000Z","end":"2025-12-15T16:00:00.000Z","created":"2025-12-12T05:24:46.396Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-6453\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086396-znh5c9aag","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085798-cix2njj3k\"}]","start":"2026-02-19T20:30:00.000Z","end":"2026-02-19T20:45:00.000Z","created":"2025-12-12T05:24:46.396Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6505\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086396-jp8u6qo61","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085752-zvlpnh2fu\"}]","start":"2025-12-25T17:00:00.000Z","end":"2025-12-25T17:15:00.000Z","created":"2025-12-12T05:24:46.396Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2512\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086396-1dhgg8v3e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085782-3phyd2k05\"}]","start":"2026-01-30T14:30:00.000Z","end":"2026-01-30T14:45:00.000Z","created":"2025-12-12T05:24:46.396Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3526\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086396-aqlr27tz8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085778-f0ntbq9jn\"}]","start":"2026-01-27T14:00:00.000Z","end":"2026-01-27T14:15:00.000Z","created":"2025-12-12T05:24:46.396Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9098\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086396-yn61d39kl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085779-0etg6p7gg\"}]","start":"2026-01-28T16:30:00.000Z","end":"2026-01-28T16:45:00.000Z","created":"2025-12-12T05:24:46.396Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-2704\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086396-a110o78fq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085761-2g98syjb1\"}]","start":"2026-01-07T15:45:00.000Z","end":"2026-01-07T16:00:00.000Z","created":"2025-12-12T05:24:46.396Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5924\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-92g9glgoe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085767-vrgw3lbw\"}]","start":"2026-01-14T15:15:00.000Z","end":"2026-01-14T15:30:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3762\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-utd9ipqys","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085870-j5nqd98n7\"}]","start":"2026-05-14T19:45:00.000Z","end":"2026-05-14T20:00:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3289\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-2obebomio","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085845-fapsasd2t\"}]","start":"2026-04-16T15:15:00.000Z","end":"2026-04-16T15:30:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5267\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-n0j785cd5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085789-4nclk0051\"}]","start":"2026-02-09T18:45:00.000Z","end":"2026-02-09T19:00:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5395\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-vrtptqket","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085741-a2ksedof1\"}]","start":"2025-12-12T19:30:00.000Z","end":"2025-12-12T19:45:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9546\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-vukqvjrjr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085797-j3jds1ntw\"}]","start":"2026-02-18T18:30:00.000Z","end":"2026-02-18T18:45:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9177\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-mwg5m2xqz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085774-8o4zncrnt\"}]","start":"2026-01-22T14:00:00.000Z","end":"2026-01-22T14:15:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5405\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-s8i4il9gt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085758-quel1ixhy\"}]","start":"2026-01-01T17:45:00.000Z","end":"2026-01-01T18:00:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1572\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-r7yq5pja2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085847-actet2blb\"}]","start":"2026-04-21T14:15:00.000Z","end":"2026-04-21T14:30:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6678\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-wuqcrksrn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085741-xxhvme6ur\"}]","start":"2025-12-12T20:45:00.000Z","end":"2025-12-12T21:00:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7080\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-yv2h66mzf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085819-wtfvpigdo\"}]","start":"2026-03-16T17:30:00.000Z","end":"2026-03-16T17:45:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-2076\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-6o9pz6epg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085850-riij58opg\"}]","start":"2026-04-22T13:30:00.000Z","end":"2026-04-22T13:45:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5502\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086397-9q4pasct4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085797-rb5p0pl1w\"}]","start":"2026-02-18T16:15:00.000Z","end":"2026-02-18T16:30:00.000Z","created":"2025-12-12T05:24:46.397Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9160\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-syvq90hpj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085810-n3wn0ob2k\"}]","start":"2026-03-06T18:15:00.000Z","end":"2026-03-06T18:30:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-2170\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-8v9e0yc76","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085754-ormz9vmtc\"}]","start":"2025-12-29T19:45:00.000Z","end":"2025-12-29T20:00:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6815\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-bmkbd7sig","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085831-k0t72zdzc\"}]","start":"2026-03-31T14:45:00.000Z","end":"2026-03-31T15:00:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9708\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-3hen75o1g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085766-45nv2w84o\"}]","start":"2026-01-13T17:30:00.000Z","end":"2026-01-13T17:45:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1345\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-2lr0xkh2c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085786-rw3vyglyr\"}]","start":"2026-02-05T14:45:00.000Z","end":"2026-02-05T15:00:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9739\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-nke73d3ra","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085746-bnucu634d\"}]","start":"2025-12-19T15:45:00.000Z","end":"2025-12-19T16:00:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1069\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-r4tnuhduw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085848-7x5uff2bq\"}]","start":"2026-04-21T17:00:00.000Z","end":"2026-04-21T17:15:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4160\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-nnmu16qhr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085752-h8v2m8708\"}]","start":"2025-12-26T15:15:00.000Z","end":"2025-12-26T15:30:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7002\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-79czvs7d2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085813-33lflfg1u\"}]","start":"2026-03-10T17:15:00.000Z","end":"2026-03-10T17:30:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9768\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-5l6j4rjp7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085853-y5nax8iw8\"}]","start":"2026-04-24T18:45:00.000Z","end":"2026-04-24T19:00:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-3091\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-e4y2hhckc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085870-ps368spez\"}]","start":"2026-05-15T13:45:00.000Z","end":"2026-05-15T14:00:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-4327\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086398-fl2l0bgno","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085753-ax2hb0w5h\"}]","start":"2025-12-26T20:30:00.000Z","end":"2025-12-26T20:45:00.000Z","created":"2025-12-12T05:24:46.398Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-7849\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-4ll6ro60b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085871-bp0dnyq6d\"}]","start":"2026-05-18T13:15:00.000Z","end":"2026-05-18T13:30:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-6516\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-6671o87ol","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085860-77y0ewvdf\"}]","start":"2026-05-04T17:00:00.000Z","end":"2026-05-04T17:15:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7591\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-jc06vqt5j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085845-4k1igvbpf\"}]","start":"2026-04-16T15:45:00.000Z","end":"2026-04-16T16:00:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1991\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-206db5j25","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085748-t8s99ra1l\"}]","start":"2025-12-22T17:15:00.000Z","end":"2025-12-22T17:30:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3905\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-61s6gg1tt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085854-o4szocl5y\"}]","start":"2026-04-28T19:30:00.000Z","end":"2026-04-28T19:45:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4695\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-uhh3d0t2m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085765-yhrhohx8y\"}]","start":"2026-01-09T19:45:00.000Z","end":"2026-01-09T20:00:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8104\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-k07pf31zq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085783-quwtfvf5d\"}]","start":"2026-01-30T20:45:00.000Z","end":"2026-01-30T21:00:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6291\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-umgr3vb2b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085845-lepvyyz6a\"}]","start":"2026-04-16T16:15:00.000Z","end":"2026-04-16T16:30:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-2402\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-hm1hej8eg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085784-4yianj1g8\"}]","start":"2026-02-03T13:00:00.000Z","end":"2026-02-03T13:15:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-7344\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-y4euqpg12","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085854-1f8416ivt\"}]","start":"2026-04-28T17:00:00.000Z","end":"2026-04-28T17:15:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6015\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-7ing27ye7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085766-udzz58628\"}]","start":"2026-01-13T15:15:00.000Z","end":"2026-01-13T15:30:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8301\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086399-tcs6lqg8u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085753-eofd1cez0\"}]","start":"2025-12-26T19:15:00.000Z","end":"2025-12-26T19:30:00.000Z","created":"2025-12-12T05:24:46.399Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2757\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-uhfm35n60","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085796-36g4if8ry\"}]","start":"2026-02-18T14:30:00.000Z","end":"2026-02-18T14:45:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8240\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-uq3a6nb7d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085846-36giz1f3g\"}]","start":"2026-04-17T19:30:00.000Z","end":"2026-04-17T19:45:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5075\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-khx91hi4p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085870-gafs9kscn\"}]","start":"2026-05-15T19:15:00.000Z","end":"2026-05-15T19:30:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1154\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-63kfbjzgf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085792-j4htklx2m\"}]","start":"2026-02-13T13:00:00.000Z","end":"2026-02-13T13:15:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2846\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-r3c7m0eus","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085791-xnwladl9r\"}]","start":"2026-02-11T13:15:00.000Z","end":"2026-02-11T13:30:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4807\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-g9dsi1kqf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085766-z39jlgwmf\"}]","start":"2026-01-13T19:45:00.000Z","end":"2026-01-13T20:00:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1157\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-q1qb86c5n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085854-33x7dr3m5\"}]","start":"2026-04-28T13:15:00.000Z","end":"2026-04-28T13:30:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8895\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-asrcuy7df","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085750-ktiizez8g\"}]","start":"2025-12-24T15:45:00.000Z","end":"2025-12-24T16:00:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2854\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-sbd5he3os","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085854-fwj4mroq9\"}]","start":"2026-04-28T17:15:00.000Z","end":"2026-04-28T17:30:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6533\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-3jhyc2o0w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085871-lh578vtel\"}]","start":"2026-05-18T13:00:00.000Z","end":"2026-05-18T13:15:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7966\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-5znyqq3ze","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085823-v7anf9mbr\"}]","start":"2026-03-20T17:45:00.000Z","end":"2026-03-20T18:00:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1375\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-ru3bumf0p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085844-or92gcz56\"}]","start":"2026-04-15T19:45:00.000Z","end":"2026-04-15T20:00:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5176\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086400-b6knywld0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085850-kpczhzpr5\"}]","start":"2026-04-22T16:00:00.000Z","end":"2026-04-22T16:15:00.000Z","created":"2025-12-12T05:24:46.400Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3064\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-7ihaz5k60","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085845-c0k43691d\"}]","start":"2026-04-16T19:45:00.000Z","end":"2026-04-16T20:00:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2891\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-j51tay0hg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085776-arjedk10w\"}]","start":"2026-01-22T19:30:00.000Z","end":"2026-01-22T19:45:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-8640\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-6wn6wxfv3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085844-3atkjkpxm\"}]","start":"2026-04-15T16:45:00.000Z","end":"2026-04-15T17:00:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6025\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-iz2an7cqt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085812-zrvrrwbzw\"}]","start":"2026-03-09T16:30:00.000Z","end":"2026-03-09T16:45:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3854\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-y91erlg16","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085784-9kwtjyjww\"}]","start":"2026-02-02T18:15:00.000Z","end":"2026-02-02T18:30:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1937\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-4gb2tdstl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085847-f1u8oepmv\"}]","start":"2026-04-20T19:45:00.000Z","end":"2026-04-20T20:00:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6362\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-o6nlaq44i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085753-66m36narf\"}]","start":"2025-12-26T20:15:00.000Z","end":"2025-12-26T20:30:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4407\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-tu3y5yuxx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085820-jjuyws7f6\"}]","start":"2026-03-17T18:00:00.000Z","end":"2026-03-17T18:15:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1759\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-cgo176i7t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085854-lig2ffy5h\"}]","start":"2026-04-28T12:15:00.000Z","end":"2026-04-28T12:30:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1336\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-9mr46pint","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085844-hi846kiyg\"}]","start":"2026-04-15T14:45:00.000Z","end":"2026-04-15T15:00:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9433\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-p6q9u0zo3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085843-1csn659t1\"}]","start":"2026-04-15T12:45:00.000Z","end":"2026-04-15T13:00:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-6723\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-84qojybui","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085861-u7hr8jae0\"}]","start":"2026-05-06T13:30:00.000Z","end":"2026-05-06T13:45:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-6685\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086401-g9ql5x7za","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085795-5qmwfjlv4\"}]","start":"2026-02-16T16:45:00.000Z","end":"2026-02-16T17:00:00.000Z","created":"2025-12-12T05:24:46.401Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8597\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-36n9fede5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085858-i293kk3fk\"}]","start":"2026-05-01T12:00:00.000Z","end":"2026-05-01T12:15:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-2740\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-7tqefzj5p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085744-jlys4pur8\"}]","start":"2025-12-17T14:15:00.000Z","end":"2025-12-17T14:30:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-3752\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-s0e2urpb2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085766-pjqafac13\"}]","start":"2026-01-13T19:30:00.000Z","end":"2026-01-13T19:45:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1322\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-58p6hu298","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085846-5tn4h3r3r\"}]","start":"2026-04-20T13:45:00.000Z","end":"2026-04-20T14:00:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9039\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-53xyi9wae","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085851-9aa8cmocn\"}]","start":"2026-04-22T18:45:00.000Z","end":"2026-04-22T19:00:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4140\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-su8top8hl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085858-m484oorxw\"}]","start":"2026-05-01T19:00:00.000Z","end":"2026-05-01T19:15:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3247\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-5fzg0o3r4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085808-r6aue20g0\"}]","start":"2026-03-04T18:15:00.000Z","end":"2026-03-04T18:30:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4065\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-9ez2tzj6x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085763-tx15d634m\"}]","start":"2026-01-07T20:45:00.000Z","end":"2026-01-07T21:00:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9130\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-javp7wi9m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085741-lhkdgsypg\"}]","start":"2025-12-15T13:00:00.000Z","end":"2025-12-15T13:15:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6466\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-39t9etgsa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085769-hzsty3bty\"}]","start":"2026-01-16T13:00:00.000Z","end":"2026-01-16T13:15:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6543\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-17m7nhsqm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085808-flyoak93c\"}]","start":"2026-03-04T13:00:00.000Z","end":"2026-03-04T13:15:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-7472\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086402-2lrjr6iiy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085844-k21byfsij\"}]","start":"2026-04-15T18:45:00.000Z","end":"2026-04-15T19:00:00.000Z","created":"2025-12-12T05:24:46.402Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1606\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086403-9hwzbuafu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085822-exgihzrzg\"}]","start":"2026-03-20T16:30:00.000Z","end":"2026-03-20T16:45:00.000Z","created":"2025-12-12T05:24:46.403Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8250\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086403-aaf1jimhx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085808-rfclgo0k5\"}]","start":"2026-03-04T13:15:00.000Z","end":"2026-03-04T13:30:00.000Z","created":"2025-12-12T05:24:46.403Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4908\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086403-8ip5dgvks","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085821-8pfrcijcc\"}]","start":"2026-03-18T19:45:00.000Z","end":"2026-03-18T20:00:00.000Z","created":"2025-12-12T05:24:46.403Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3839\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086403-bubo2b7q6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085858-iqelzvomn\"}]","start":"2026-04-30T19:45:00.000Z","end":"2026-04-30T20:00:00.000Z","created":"2025-12-12T05:24:46.403Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9305\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086403-mrnxp7h6p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085746-446gkskjd\"}]","start":"2025-12-19T17:15:00.000Z","end":"2025-12-19T17:30:00.000Z","created":"2025-12-12T05:24:46.403Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3408\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086403-251s9pgno","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085749-79lrqaksh\"}]","start":"2025-12-24T14:45:00.000Z","end":"2025-12-24T15:00:00.000Z","created":"2025-12-12T05:24:46.403Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-5479\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086405-jyj8i2v81","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085865-wy1nj8uyb\"}]","start":"2026-05-11T12:00:00.000Z","end":"2026-05-11T12:15:00.000Z","created":"2025-12-12T05:24:46.405Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5249\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086405-8s6cg7e5q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085792-ijzr1mj68\"}]","start":"2026-02-12T13:45:00.000Z","end":"2026-02-12T14:00:00.000Z","created":"2025-12-12T05:24:46.405Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-4742\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086405-i2u2h6mc9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085796-z60zh0x10\"}]","start":"2026-02-17T15:30:00.000Z","end":"2026-02-17T15:45:00.000Z","created":"2025-12-12T05:24:46.405Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-3517\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086405-8cymghmhr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085857-m2swm1mwk\"}]","start":"2026-04-30T15:15:00.000Z","end":"2026-04-30T15:30:00.000Z","created":"2025-12-12T05:24:46.405Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2076\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086405-oremakddl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085846-ikwwpa2ek\"}]","start":"2026-04-20T13:30:00.000Z","end":"2026-04-20T13:45:00.000Z","created":"2025-12-12T05:24:46.405Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8728\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086405-ujxq9ue4n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085773-id5z0e7r3\"}]","start":"2026-01-21T20:15:00.000Z","end":"2026-01-21T20:30:00.000Z","created":"2025-12-12T05:24:46.405Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2056\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-dq18gs7g2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085870-qh3vlk4o3\"}]","start":"2026-05-15T17:45:00.000Z","end":"2026-05-15T18:00:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3656\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-8974mebtf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085834-qi7o880xn\"}]","start":"2026-04-03T15:30:00.000Z","end":"2026-04-03T15:45:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9901\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-d1sgu6r3d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085851-4775x6fmg\"}]","start":"2026-04-23T12:45:00.000Z","end":"2026-04-23T13:00:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5229\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-9uyjcly8a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085797-v88ifaf3v\"}]","start":"2026-02-18T16:00:00.000Z","end":"2026-02-18T16:15:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4263\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-c0yd49ybb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085812-b70gqc6q9\"}]","start":"2026-03-09T16:15:00.000Z","end":"2026-03-09T16:30:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2452\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-bgoovkarn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085747-03h2fnyiu\"}]","start":"2025-12-19T18:30:00.000Z","end":"2025-12-19T18:45:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-7107\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-r39zcxmh5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085812-4au2q5nvo\"}]","start":"2026-03-09T18:00:00.000Z","end":"2026-03-09T18:15:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3948\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-7cn3ojjva","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085838-a49khgfli\"}]","start":"2026-04-09T12:30:00.000Z","end":"2026-04-09T12:45:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-5915\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-ylw3016kq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085784-dlkhsitdc\"}]","start":"2026-02-02T20:45:00.000Z","end":"2026-02-02T21:00:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2573\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086406-ppt9b9dt7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085749-9ikj50d0y\"}]","start":"2025-12-24T13:45:00.000Z","end":"2025-12-24T14:00:00.000Z","created":"2025-12-12T05:24:46.406Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3811\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-h960se74j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085854-4ky97upd1\"}]","start":"2026-04-28T12:45:00.000Z","end":"2026-04-28T13:00:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4660\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-apm7285qd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085855-bywi5m2ta\"}]","start":"2026-04-29T13:15:00.000Z","end":"2026-04-29T13:30:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1906\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-poqtyt94w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085751-ulf724q2u\"}]","start":"2025-12-24T19:45:00.000Z","end":"2025-12-24T20:00:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-7573\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-3eo61aypk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-k0f5w39cj\"}]","start":"2025-12-26T15:00:00.000Z","end":"2025-12-26T15:15:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8572\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-kp8j5looa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085823-t3p6da2vi\"}]","start":"2026-03-23T15:45:00.000Z","end":"2026-03-23T16:00:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2824\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-20c60l8to","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085838-u13ig9yme\"}]","start":"2026-04-08T17:15:00.000Z","end":"2026-04-08T17:30:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3633\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-ug5a90g8v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085815-c8hu2zasy\"}]","start":"2026-03-12T13:30:00.000Z","end":"2026-03-12T13:45:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7692\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-nbeuik7ur","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085858-1vq9xyoy5\"}]","start":"2026-05-01T12:30:00.000Z","end":"2026-05-01T12:45:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5956\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-qq3pqh51s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085787-dyad51l0x\"}]","start":"2026-02-06T14:00:00.000Z","end":"2026-02-06T14:15:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2191\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-sv38inb8r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085784-e62a8ncbw\"}]","start":"2026-02-02T20:00:00.000Z","end":"2026-02-02T20:15:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2100\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-txf1l001a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085796-gqckxcunq\"}]","start":"2026-02-18T14:45:00.000Z","end":"2026-02-18T15:00:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4209\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086407-dm1kyssf8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085858-ghgujuo9l\"}]","start":"2026-05-04T12:00:00.000Z","end":"2026-05-04T12:15:00.000Z","created":"2025-12-12T05:24:46.407Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-9126\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-lp509n1mq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085783-8hcp0k4yu\"}]","start":"2026-02-02T16:00:00.000Z","end":"2026-02-02T16:15:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-7787\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-lpl498zkx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085763-ajoewtmna\"}]","start":"2026-01-08T14:45:00.000Z","end":"2026-01-08T15:00:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3024\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-1q5gmjfpd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-aw7yusyu1\"}]","start":"2026-05-11T15:15:00.000Z","end":"2026-05-11T15:30:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9469\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-c0167832t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085834-v6y6t80f3\"}]","start":"2026-04-03T14:30:00.000Z","end":"2026-04-03T14:45:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-7684\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-9t9zatvaz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085865-11zexfx9b\"}]","start":"2026-05-11T14:15:00.000Z","end":"2026-05-11T14:30:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2985\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-cs2viwldl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085795-gw94usonp\"}]","start":"2026-02-16T19:15:00.000Z","end":"2026-02-16T19:30:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1657\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-i3ulnmk06","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085769-ubaa106af\"}]","start":"2026-01-15T15:45:00.000Z","end":"2026-01-15T16:00:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-9040\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-wif7pc176","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085740-autmjzqeb\"}]","start":"2025-12-12T15:15:00.000Z","end":"2025-12-12T15:30:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1317\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-7qtw3rzl9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085860-wegyv3cbr\"}]","start":"2026-05-04T18:00:00.000Z","end":"2026-05-04T18:15:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5595\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-854hwsbjn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085815-mnx1se3xn\"}]","start":"2026-03-12T16:15:00.000Z","end":"2026-03-12T16:30:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4606\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-7qpby5q1x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085834-owmc81rd2\"}]","start":"2026-04-03T17:30:00.000Z","end":"2026-04-03T17:45:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8475\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086408-jw5wkp0i3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085749-f2mkxk2mk\"}]","start":"2025-12-24T14:30:00.000Z","end":"2025-12-24T14:45:00.000Z","created":"2025-12-12T05:24:46.408Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3816\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-avm7k1l29","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085769-4b655w6qv\"}]","start":"2026-01-15T14:45:00.000Z","end":"2026-01-15T15:00:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7958\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-l3wbbe16a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085796-5gmdgxigp\"}]","start":"2026-02-18T14:15:00.000Z","end":"2026-02-18T14:30:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7273\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-bv2zcje7b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-5bqao40o0\"}]","start":"2026-01-09T14:15:00.000Z","end":"2026-01-09T14:30:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4172\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-0d6jxmdbv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-y8kezaw49\"}]","start":"2026-04-06T12:00:00.000Z","end":"2026-04-06T12:15:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2780\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-ejld639l0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085834-frzjfjyf4\"}]","start":"2026-04-03T18:00:00.000Z","end":"2026-04-03T18:15:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3884\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-f9ezi329l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085769-vsx5rwge7\"}]","start":"2026-01-15T18:00:00.000Z","end":"2026-01-15T18:15:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4507\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-6oqcbczwt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085813-lchfjp9tr\"}]","start":"2026-03-10T12:45:00.000Z","end":"2026-03-10T13:00:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8438\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-ztvmznqk8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085752-2s5mmp659\"}]","start":"2025-12-25T20:00:00.000Z","end":"2025-12-25T20:15:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9789\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-7mcq0w8hc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085796-tbzfkit66\"}]","start":"2026-02-17T20:30:00.000Z","end":"2026-02-17T20:45:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8505\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-uhvyjr8lf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085819-za89nqfz4\"}]","start":"2026-03-16T19:15:00.000Z","end":"2026-03-16T19:30:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2005\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-wz144t7b5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085844-u0381klx2\"}]","start":"2026-04-16T12:30:00.000Z","end":"2026-04-16T12:45:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-7532\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086409-liwfespvy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085855-hitw8bqp0\"}]","start":"2026-04-29T14:15:00.000Z","end":"2026-04-29T14:30:00.000Z","created":"2025-12-12T05:24:46.409Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6416\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-wzwakeomh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085760-9yukp4bot\"}]","start":"2026-01-06T13:00:00.000Z","end":"2026-01-06T13:15:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7294\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-q13kvdmb4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-wmg91c4ix\"}]","start":"2026-05-11T13:45:00.000Z","end":"2026-05-11T14:00:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9163\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-60xrhtsnc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085871-lwbe4a489\"}]","start":"2026-05-18T12:45:00.000Z","end":"2026-05-18T13:00:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-1630\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-14ey3zbz7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085744-8of12d4nm\"}]","start":"2025-12-17T13:15:00.000Z","end":"2025-12-17T13:30:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7374\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-i9s6rabql","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085761-1w4azbafp\"}]","start":"2026-01-07T14:15:00.000Z","end":"2026-01-07T14:30:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7353\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-8zvhf1626","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085772-zeml1o2b1\"}]","start":"2026-01-21T13:30:00.000Z","end":"2026-01-21T13:45:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1564\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-wdk0zyxl8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085817-f1rnuqguw\"}]","start":"2026-03-16T14:30:00.000Z","end":"2026-03-16T14:45:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5062\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-px40i99ex","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085866-fsu6ipcu0\"}]","start":"2026-05-11T19:30:00.000Z","end":"2026-05-11T19:45:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1898\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-r43gmgj14","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085883-j8760tusu\"}]","start":"2026-06-01T16:15:00.000Z","end":"2026-06-01T16:30:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8392\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-7986ywiwn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085783-bbkq2anrj\"}]","start":"2026-02-02T13:30:00.000Z","end":"2026-02-02T13:45:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8225\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-dnfr3f7jv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085853-tcyz01hhs\"}]","start":"2026-04-27T16:00:00.000Z","end":"2026-04-27T16:15:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9529\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-k4kqwye23","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085740-czyq46jvx\"}]","start":"2025-12-12T14:45:00.000Z","end":"2025-12-12T15:00:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1100\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086410-fokj4u3k3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085881-68nqulkry\"}]","start":"2026-05-28T18:45:00.000Z","end":"2026-05-28T19:00:00.000Z","created":"2025-12-12T05:24:46.410Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7638\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-j94v05f4d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085795-5fhvdspxn\"}]","start":"2026-02-16T13:00:00.000Z","end":"2026-02-16T13:15:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1357\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-mulfropa2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085883-1mr9ii6v8\"}]","start":"2026-06-02T13:15:00.000Z","end":"2026-06-02T13:30:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2421\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-o5qch40yd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085815-ola63pc5x\"}]","start":"2026-03-12T12:45:00.000Z","end":"2026-03-12T13:00:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9346\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-nya8uzjk7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085834-ab8qe4kwk\"}]","start":"2026-04-03T16:15:00.000Z","end":"2026-04-03T16:30:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6161\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-xy4ncrxhv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085819-ck356nr8v\"}]","start":"2026-03-16T18:30:00.000Z","end":"2026-03-16T18:45:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-3752\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-qy5ukdtbt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085746-iwnkgrqq3\"}]","start":"2025-12-19T14:45:00.000Z","end":"2025-12-19T15:00:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3473\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-7d4mm1ibe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085822-8yo3q97xj\"}]","start":"2026-03-19T19:15:00.000Z","end":"2026-03-19T19:30:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-7722\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-icbfpkpse","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085747-z3me8fxm1\"}]","start":"2025-12-19T20:15:00.000Z","end":"2025-12-19T20:30:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3962\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-0465fp8du","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085835-5xax1soki\"}]","start":"2026-04-06T12:45:00.000Z","end":"2026-04-06T13:00:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8651\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-yng2cyee9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085884-ahqmm5c98\"}]","start":"2026-06-02T19:45:00.000Z","end":"2026-06-02T20:00:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4830\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-61rezu9q8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085797-wupib18lo\"}]","start":"2026-02-18T15:00:00.000Z","end":"2026-02-18T15:15:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3447\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-22tb0gcnn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085870-fmz7bka41\"}]","start":"2026-05-15T15:15:00.000Z","end":"2026-05-15T15:30:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3145\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086411-uhw4wjyax","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085877-sbkhbvol9\"}]","start":"2026-05-26T12:00:00.000Z","end":"2026-05-26T12:15:00.000Z","created":"2025-12-12T05:24:46.411Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5781\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086412-puzto1dtz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085814-e517kto01\"}]","start":"2026-03-11T13:30:00.000Z","end":"2026-03-11T13:45:00.000Z","created":"2025-12-12T05:24:46.412Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9385\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086412-fqr4jag7c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085760-s6sfoeyym\"}]","start":"2026-01-05T20:45:00.000Z","end":"2026-01-05T21:00:00.000Z","created":"2025-12-12T05:24:46.412Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9948\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086412-5r1uh25zd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085784-qk366q5sj\"}]","start":"2026-02-02T18:00:00.000Z","end":"2026-02-02T18:15:00.000Z","created":"2025-12-12T05:24:46.412Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1298\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086412-6ffoxkv6z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085821-4xshs8eai\"}]","start":"2026-03-18T18:00:00.000Z","end":"2026-03-18T18:15:00.000Z","created":"2025-12-12T05:24:46.412Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6151\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086412-b8r1luqdq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085882-vrylfkc7v\"}]","start":"2026-06-01T12:45:00.000Z","end":"2026-06-01T13:00:00.000Z","created":"2025-12-12T05:24:46.412Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7026\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086412-0cf931wsz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085835-p7cty5r9d\"}]","start":"2026-04-06T17:45:00.000Z","end":"2026-04-06T18:00:00.000Z","created":"2025-12-12T05:24:46.412Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-5232\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086412-1eznfdxvx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085743-438hqxqz2\"}]","start":"2025-12-16T19:30:00.000Z","end":"2025-12-16T19:45:00.000Z","created":"2025-12-12T05:24:46.412Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9353\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086414-e9oyxjx8l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085757-hkzno5yrr\"}]","start":"2026-01-01T16:45:00.000Z","end":"2026-01-01T17:00:00.000Z","created":"2025-12-12T05:24:46.414Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5693\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.414Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086414-h9279spzv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085815-q4yq1fdcs\"}]","start":"2026-03-12T17:15:00.000Z","end":"2026-03-12T17:30:00.000Z","created":"2025-12-12T05:24:46.414Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1552\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.414Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-sx05lo5n3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085783-ke2ub2zq9\"}]","start":"2026-02-02T17:30:00.000Z","end":"2026-02-02T17:45:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5107\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-dxeg0guxb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085759-9l5d1mvqd\"}]","start":"2026-01-05T13:45:00.000Z","end":"2026-01-05T14:00:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3980\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-k5us08sa4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085821-f4v2ihsgd\"}]","start":"2026-03-18T19:30:00.000Z","end":"2026-03-18T19:45:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9272\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-ncafhsk99","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085845-qowgqjx6i\"}]","start":"2026-04-16T14:30:00.000Z","end":"2026-04-16T14:45:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3271\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-3zpazaymp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-zewhuc21q\"}]","start":"2025-12-26T16:30:00.000Z","end":"2025-12-26T16:45:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8745\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-2151fa1l6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085854-653n6alcn\"}]","start":"2026-04-28T15:30:00.000Z","end":"2026-04-28T15:45:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6131\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-7m2733rhc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085880-o6o8jngye\"}]","start":"2026-05-28T18:30:00.000Z","end":"2026-05-28T18:45:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7463\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-0ga1nmta9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085742-ud8bk8rrd\"}]","start":"2025-12-15T20:00:00.000Z","end":"2025-12-15T20:15:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1020\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-4ab5lnj74","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085779-x6lbg0n2w\"}]","start":"2026-01-27T16:15:00.000Z","end":"2026-01-27T16:30:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3971\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-52r68uoim","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085820-14g7uzg20\"}]","start":"2026-03-17T14:45:00.000Z","end":"2026-03-17T15:00:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4277\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086415-66xvvwc9v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085797-6klfzbn0m\"}]","start":"2026-02-18T19:00:00.000Z","end":"2026-02-18T19:15:00.000Z","created":"2025-12-12T05:24:46.415Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8514\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-15u3u1x4t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085819-nchms5i4a\"}]","start":"2026-03-17T12:15:00.000Z","end":"2026-03-17T12:30:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1134\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-90s4bmqec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-hm4bds40h\"}]","start":"2026-01-14T20:30:00.000Z","end":"2026-01-14T20:45:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5867\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-o4533c356","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085877-6ii9liird\"}]","start":"2026-05-25T13:30:00.000Z","end":"2026-05-25T13:45:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9893\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-rz4o4k710","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085854-nkx3pmksi\"}]","start":"2026-04-28T14:15:00.000Z","end":"2026-04-28T14:30:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1688\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-i2ox3ma04","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085755-t1291g1yq\"}]","start":"2025-12-31T15:15:00.000Z","end":"2025-12-31T15:30:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1140\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-7ps43sisp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085751-tx3ch9p68\"}]","start":"2025-12-24T20:00:00.000Z","end":"2025-12-24T20:15:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7365\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-qn39prxw8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085752-men3o4bft\"}]","start":"2025-12-26T14:45:00.000Z","end":"2025-12-26T15:00:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6414\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-nc36bjam7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085879-ju9btgvme\"}]","start":"2026-05-27T18:45:00.000Z","end":"2026-05-27T19:00:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3159\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-q26u4gvt4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085880-zhddzw4lm\"}]","start":"2026-05-28T16:30:00.000Z","end":"2026-05-28T16:45:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3473\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086416-h3vyyajp5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085878-62961vgh8\"}]","start":"2026-05-26T17:15:00.000Z","end":"2026-05-26T17:30:00.000Z","created":"2025-12-12T05:24:46.416Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2621\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086418-d84y3849p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085876-bqm1n78gf\"}]","start":"2026-05-22T13:15:00.000Z","end":"2026-05-22T13:30:00.000Z","created":"2025-12-12T05:24:46.418Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9351\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.418Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086419-ucvujqjgx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085878-w6agbj0vd\"}]","start":"2026-05-27T12:00:00.000Z","end":"2026-05-27T12:15:00.000Z","created":"2025-12-12T05:24:46.419Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4102\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086419-tk72bq0v7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085869-dp3l256qq\"}]","start":"2026-05-14T13:45:00.000Z","end":"2026-05-14T14:00:00.000Z","created":"2025-12-12T05:24:46.419Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-7439\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086419-a9qku3omg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085755-4f4c4m2u8\"}]","start":"2025-12-30T19:00:00.000Z","end":"2025-12-30T19:15:00.000Z","created":"2025-12-12T05:24:46.419Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8747\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086419-sup8yecko","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085742-7samjqhhg\"}]","start":"2025-12-16T13:00:00.000Z","end":"2025-12-16T13:15:00.000Z","created":"2025-12-12T05:24:46.419Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2968\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086419-dr4a9tv5l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085803-segrd6j2n\"}]","start":"2026-02-26T13:00:00.000Z","end":"2026-02-26T13:15:00.000Z","created":"2025-12-12T05:24:46.419Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9456\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086419-e4afvct6q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085783-jns5glqk5\"}]","start":"2026-02-02T14:15:00.000Z","end":"2026-02-02T14:30:00.000Z","created":"2025-12-12T05:24:46.419Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3955\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086419-moi38dyec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085834-vk6rnbrjl\"}]","start":"2026-04-03T19:00:00.000Z","end":"2026-04-03T19:15:00.000Z","created":"2025-12-12T05:24:46.419Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4901\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086419-uyakd63jx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085873-wxyq9oxth\"}]","start":"2026-05-20T18:15:00.000Z","end":"2026-05-20T18:30:00.000Z","created":"2025-12-12T05:24:46.419Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4518\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086420-ur9nkrncu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085845-wql89diux\"}]","start":"2026-04-16T13:45:00.000Z","end":"2026-04-16T14:00:00.000Z","created":"2025-12-12T05:24:46.420Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1454\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.420Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086420-0cpi7syt1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085834-lpkn26d8m\"}]","start":"2026-04-03T12:30:00.000Z","end":"2026-04-03T12:45:00.000Z","created":"2025-12-12T05:24:46.420Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4436\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.420Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-xq79z8pcq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085804-41uwleorx\"}]","start":"2026-02-27T13:15:00.000Z","end":"2026-02-27T13:30:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5921\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-35ouyn1l6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085866-mv55fqugh\"}]","start":"2026-05-11T19:15:00.000Z","end":"2026-05-11T19:30:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8133\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-35witbehi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085796-dgf3qlmvx\"}]","start":"2026-02-18T13:45:00.000Z","end":"2026-02-18T14:00:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2747\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-e54qxntd3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085883-9n08nsrgd\"}]","start":"2026-06-02T14:30:00.000Z","end":"2026-06-02T14:45:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1944\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-jphfasat2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085857-y45kzfbof\"}]","start":"2026-04-30T13:15:00.000Z","end":"2026-04-30T13:30:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7363\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-54lq368st","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085746-nbzpojlvz\"}]","start":"2025-12-19T16:15:00.000Z","end":"2025-12-19T16:30:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2883\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-iclajbh9a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085783-7bi0ifhna\"}]","start":"2026-02-02T14:00:00.000Z","end":"2026-02-02T14:15:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-4543\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-qc9rwf6a3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-sq9t3ae2q\"}]","start":"2026-01-14T14:45:00.000Z","end":"2026-01-14T15:00:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5203\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-7r90efqw1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-blctp8cgi\"}]","start":"2026-01-02T13:00:00.000Z","end":"2026-01-02T13:15:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3344\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-la3suzm8z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085871-n1n6tljfm\"}]","start":"2026-05-18T14:00:00.000Z","end":"2026-05-18T14:15:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-7284\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-tdm4l01ae","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085798-fxfev84zb\"}]","start":"2026-02-19T14:45:00.000Z","end":"2026-02-19T15:00:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6599\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086421-unh7f746x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085835-1mnjdzqbu\"}]","start":"2026-04-06T13:15:00.000Z","end":"2026-04-06T13:30:00.000Z","created":"2025-12-12T05:24:46.421Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2762\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-lom4bo0wf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085808-50ixpokn7\"}]","start":"2026-03-04T17:45:00.000Z","end":"2026-03-04T18:00:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-7149\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-lk9unbc4n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085763-yfn1bwi8w\"}]","start":"2026-01-08T13:00:00.000Z","end":"2026-01-08T13:15:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2479\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-0athvk7mx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085816-dyhr3qtxj\"}]","start":"2026-03-12T18:45:00.000Z","end":"2026-03-12T19:00:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-4530\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-o93jz4gei","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085857-szhsib0xe\"}]","start":"2026-04-30T12:00:00.000Z","end":"2026-04-30T12:15:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2528\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-lhd76dlum","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085753-sb3p8axt6\"}]","start":"2025-12-29T14:30:00.000Z","end":"2025-12-29T14:45:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5826\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-4jk3h70e3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085769-alt9z4xdr\"}]","start":"2026-01-16T13:15:00.000Z","end":"2026-01-16T13:30:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1966\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-cnhcskifm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085745-vwu15f3oj\"}]","start":"2025-12-17T20:30:00.000Z","end":"2025-12-17T20:45:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8612\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-0oflbgzfj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085817-o0uoktvby\"}]","start":"2026-03-13T14:30:00.000Z","end":"2026-03-13T14:45:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5414\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-au3bs3oj6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085879-b26vv0yn0\"}]","start":"2026-05-27T17:30:00.000Z","end":"2026-05-27T17:45:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8394\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-tptg0m4ry","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085779-nn4ri0qez\"}]","start":"2026-01-27T17:45:00.000Z","end":"2026-01-27T18:00:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-3290\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-1oq5uv2n3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085889-ynvygwfvk\"}]","start":"2026-06-08T18:15:00.000Z","end":"2026-06-08T18:30:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1511\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-t1pm1j6y2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085798-554971g51\"}]","start":"2026-02-19T18:15:00.000Z","end":"2026-02-19T18:30:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8482\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086422-7nwdpvqew","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085820-8goubmjv8\"}]","start":"2026-03-17T17:45:00.000Z","end":"2026-03-17T18:00:00.000Z","created":"2025-12-12T05:24:46.422Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8314\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-p2g5gwnre","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085740-2yefyqlj6\"}]","start":"2025-12-12T15:30:00.000Z","end":"2025-12-12T15:45:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5443\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-ik9blpo4m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085753-ztzhg8djn\"}]","start":"2025-12-29T14:45:00.000Z","end":"2025-12-29T15:00:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3821\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-e5v38zntd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085746-xj8tgprk6\"}]","start":"2025-12-19T15:15:00.000Z","end":"2025-12-19T15:30:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4488\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-d2khr2xpb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085889-odgo2a0dv\"}]","start":"2026-06-09T14:45:00.000Z","end":"2026-06-09T15:00:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6782\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-we3n7jjw5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085809-cj69wn90v\"}]","start":"2026-03-04T18:45:00.000Z","end":"2026-03-04T19:00:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6437\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-f5dmmzkx3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085877-qqepqor7s\"}]","start":"2026-05-26T12:15:00.000Z","end":"2026-05-26T12:30:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-2814\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-v4udw6usc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085866-3xt3p1z6d\"}]","start":"2026-05-11T17:45:00.000Z","end":"2026-05-11T18:00:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6242\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-uzan2kzcv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085846-i9wobv9h5\"}]","start":"2026-04-20T13:15:00.000Z","end":"2026-04-20T13:30:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9592\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-0jkm9e2pn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085760-92v0xzk8m\"}]","start":"2026-01-05T18:15:00.000Z","end":"2026-01-05T18:30:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3256\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086423-g18hp6cam","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085752-yanrfud3s\"}]","start":"2025-12-25T17:15:00.000Z","end":"2025-12-25T17:30:00.000Z","created":"2025-12-12T05:24:46.423Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5016\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-8fb06jul3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085807-we8eb3pq5\"}]","start":"2026-03-03T17:00:00.000Z","end":"2026-03-03T17:15:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3581\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-c6a7fjn9s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085763-25pbpsbji\"}]","start":"2026-01-08T17:15:00.000Z","end":"2026-01-08T17:30:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5457\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-gjlalwsn3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085872-zlclzxybv\"}]","start":"2026-05-19T14:30:00.000Z","end":"2026-05-19T14:45:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-9682\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-ej0fe0o53","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085769-o6v3fl6ox\"}]","start":"2026-01-15T17:45:00.000Z","end":"2026-01-15T18:00:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5004\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-6eefzfc28","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085883-z80htiwi9\"}]","start":"2026-06-01T17:15:00.000Z","end":"2026-06-01T17:30:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6719\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-vyt20hzsu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085783-lswxhtql8\"}]","start":"2026-01-30T19:15:00.000Z","end":"2026-01-30T19:30:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7146\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-cwilwqsn5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085769-3qczp4nm0\"}]","start":"2026-01-15T19:15:00.000Z","end":"2026-01-15T19:30:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7284\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-9iwr5c86l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085747-hz9ncdivp\"}]","start":"2025-12-19T19:15:00.000Z","end":"2025-12-19T19:30:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2280\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-5sekrtuue","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085858-wxakkmdi5\"}]","start":"2026-05-01T19:45:00.000Z","end":"2026-05-01T20:00:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-3909\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-gjqksjdtg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085791-ob9ka2j9s\"}]","start":"2026-02-11T19:00:00.000Z","end":"2026-02-11T19:15:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-6339\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-pttby85gn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085797-7ri3at480\"}]","start":"2026-02-18T17:45:00.000Z","end":"2026-02-18T18:00:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5772\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086424-cpc0i0kds","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085742-xhnics0xc\"}]","start":"2025-12-15T19:00:00.000Z","end":"2025-12-15T19:15:00.000Z","created":"2025-12-12T05:24:46.424Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1470\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-nyqmbhmlt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085820-hzkvj585m\"}]","start":"2026-03-17T17:15:00.000Z","end":"2026-03-17T17:30:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8346\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-y5nslezpn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085879-9gb789kws\"}]","start":"2026-05-27T15:15:00.000Z","end":"2026-05-27T15:30:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7781\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-tagx8spa7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085788-aw1p47sal\"}]","start":"2026-02-06T16:30:00.000Z","end":"2026-02-06T16:45:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9195\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-rqjs2zzq4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085859-js08dl7jp\"}]","start":"2026-05-04T15:00:00.000Z","end":"2026-05-04T15:15:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1012\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-jpv8sgzx2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085870-otbgav3gx\"}]","start":"2026-05-15T16:00:00.000Z","end":"2026-05-15T16:15:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4328\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-u9w9v56i2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085820-lvaf383u8\"}]","start":"2026-03-17T14:15:00.000Z","end":"2026-03-17T14:30:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6385\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-4zgqw431b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085878-y5v0yc02f\"}]","start":"2026-05-27T12:45:00.000Z","end":"2026-05-27T13:00:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2442\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-hqr3dxi8s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085802-u5iaa72df\"}]","start":"2026-02-24T20:15:00.000Z","end":"2026-02-24T20:30:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1587\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-qn5fqsljk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085797-dftm8jbv6\"}]","start":"2026-02-18T18:00:00.000Z","end":"2026-02-18T18:15:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8679\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-mgs87r682","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085775-2dc3k01rq\"}]","start":"2026-01-22T15:30:00.000Z","end":"2026-01-22T15:45:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6709\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-o4sdn30ix","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085858-rv1isq4pd\"}]","start":"2026-05-01T13:00:00.000Z","end":"2026-05-01T13:15:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1066\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086425-o4gjrjsoy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085879-tsep5s2nc\"}]","start":"2026-05-27T14:15:00.000Z","end":"2026-05-27T14:30:00.000Z","created":"2025-12-12T05:24:46.425Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2030\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-tj7ecl4ls","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085860-uio5vgn6j\"}]","start":"2026-05-04T19:15:00.000Z","end":"2026-05-04T19:30:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4153\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-oujo0pe1r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085889-9cy9bu296\"}]","start":"2026-06-08T18:30:00.000Z","end":"2026-06-08T18:45:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1608\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-tpmgt2jqb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085858-d7wleo0er\"}]","start":"2026-05-01T17:00:00.000Z","end":"2026-05-01T17:15:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-7463\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-aa7ztq292","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085765-ego30d38d\"}]","start":"2026-01-09T20:00:00.000Z","end":"2026-01-09T20:15:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4116\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-2t9m0vam7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085769-n99fo2ewu\"}]","start":"2026-01-15T20:15:00.000Z","end":"2026-01-15T20:30:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4175\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-4r3ye5xnp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-1ogqaftwv\"}]","start":"2026-04-06T14:45:00.000Z","end":"2026-04-06T15:00:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5056\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-y89g3m0ew","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085779-j8c4odxet\"}]","start":"2026-01-28T16:15:00.000Z","end":"2026-01-28T16:30:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5282\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-ab9r19h6g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085754-o2j40r666\"}]","start":"2025-12-30T13:00:00.000Z","end":"2025-12-30T13:15:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2749\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-971r20m7s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085803-dcp0udt8v\"}]","start":"2026-02-26T13:15:00.000Z","end":"2026-02-26T13:30:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6040\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-jw6879lsv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085758-4wk6f08mp\"}]","start":"2026-01-02T14:00:00.000Z","end":"2026-01-02T14:15:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7150\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-eudjzqwpz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085754-l17kz23lw\"}]","start":"2025-12-30T15:30:00.000Z","end":"2025-12-30T15:45:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3691\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-k1yeoylnp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085885-ivacwyv5r\"}]","start":"2026-06-03T19:30:00.000Z","end":"2026-06-03T19:45:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6587\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086426-5y3zqeivm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085817-vrcdep7c9\"}]","start":"2026-03-13T15:00:00.000Z","end":"2026-03-13T15:15:00.000Z","created":"2025-12-12T05:24:46.426Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7900\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-g61rh2o5p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085872-usjj1oepe\"}]","start":"2026-05-19T17:45:00.000Z","end":"2026-05-19T18:00:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-5964\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-cle8syv2b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085743-dbbp0k62y\"}]","start":"2025-12-16T19:00:00.000Z","end":"2025-12-16T19:15:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6746\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-p28tdel4t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085783-ey40f3i4y\"}]","start":"2026-02-02T16:15:00.000Z","end":"2026-02-02T16:30:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7014\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-fsk0fnvu5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085792-sxslwaavi\"}]","start":"2026-02-12T16:15:00.000Z","end":"2026-02-12T16:30:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-6268\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-8qfsg65vs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085773-u6b88kq30\"}]","start":"2026-01-21T16:30:00.000Z","end":"2026-01-21T16:45:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5483\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-138l2g65b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085869-jk17bjpoe\"}]","start":"2026-05-14T18:00:00.000Z","end":"2026-05-14T18:15:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8845\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-sqaqu2k6p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085869-be4dn02jr\"}]","start":"2026-05-14T15:45:00.000Z","end":"2026-05-14T16:00:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7863\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-1et74zskx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-tuso9xje7\"}]","start":"2026-01-14T17:15:00.000Z","end":"2026-01-14T17:30:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1101\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-513kz96dr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085779-vzwqy7jll\"}]","start":"2026-01-28T17:00:00.000Z","end":"2026-01-28T17:15:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9796\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-mhodlev2m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085869-37h1wtspr\"}]","start":"2026-05-14T17:15:00.000Z","end":"2026-05-14T17:30:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2398\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-i2cykouxc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085860-78tfonkrz\"}]","start":"2026-05-05T13:45:00.000Z","end":"2026-05-05T14:00:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1543\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-9mh4x660i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085848-bkjexyw8o\"}]","start":"2026-04-21T17:45:00.000Z","end":"2026-04-21T18:00:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2385\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-1pn3heyes","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085746-rbb48zhnc\"}]","start":"2025-12-19T16:00:00.000Z","end":"2025-12-19T16:15:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8568\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086427-dn1kn7ot5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085817-6tpudeei2\"}]","start":"2026-03-16T15:15:00.000Z","end":"2026-03-16T15:30:00.000Z","created":"2025-12-12T05:24:46.427Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-1408\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-ezl2fi5rl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085820-9gta88jqx\"}]","start":"2026-03-17T16:30:00.000Z","end":"2026-03-17T16:45:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-9181\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-jg58pye15","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085835-o3580dl3c\"}]","start":"2026-04-06T14:15:00.000Z","end":"2026-04-06T14:30:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9715\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-2whklbcss","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085808-6p488td8l\"}]","start":"2026-03-03T19:15:00.000Z","end":"2026-03-03T19:30:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4732\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-0cxtunhy9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085796-fkn0aob6t\"}]","start":"2026-02-17T19:45:00.000Z","end":"2026-02-17T20:00:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9875\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-zk64bnfd7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085885-vbre1mv39\"}]","start":"2026-06-04T14:30:00.000Z","end":"2026-06-04T14:45:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3773\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-3iw56n264","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085857-ktfwy5xqo\"}]","start":"2026-04-30T17:30:00.000Z","end":"2026-04-30T17:45:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9331\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-uqtl7v2v6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085783-gdboueizn\"}]","start":"2026-02-02T15:00:00.000Z","end":"2026-02-02T15:15:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6564\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-dx9bd8bli","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-ekuf5cvx7\"}]","start":"2026-01-05T15:30:00.000Z","end":"2026-01-05T15:45:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1197\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-qt8rvuypp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085780-4abro1phz\"}]","start":"2026-01-28T19:45:00.000Z","end":"2026-01-28T20:00:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4357\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-60s1rpmoe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-rfzv6y9fd\"}]","start":"2026-04-06T17:15:00.000Z","end":"2026-04-06T17:30:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4477\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-6wrgjpu6d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085782-e36ughtfb\"}]","start":"2026-01-30T15:15:00.000Z","end":"2026-01-30T15:30:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-7547\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-rwtcvo0na","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085879-mwilsny0k\"}]","start":"2026-05-27T13:15:00.000Z","end":"2026-05-27T13:30:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1135\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086428-6th6erwnb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085810-3s99ofw47\"}]","start":"2026-03-06T13:15:00.000Z","end":"2026-03-06T13:30:00.000Z","created":"2025-12-12T05:24:46.428Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-9206\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086430-ym2s8llz5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085784-fdk92p7op\"}]","start":"2026-02-02T18:30:00.000Z","end":"2026-02-02T18:45:00.000Z","created":"2025-12-12T05:24:46.430Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6799\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.430Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-msgnj8o2r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085763-lgy3djdyw\"}]","start":"2026-01-08T17:30:00.000Z","end":"2026-01-08T17:45:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-1090\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-8ebbmey9n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085888-sdc9vmlr0\"}]","start":"2026-06-08T15:30:00.000Z","end":"2026-06-08T15:45:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4500\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-4kqkqiu77","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085774-6mpmabyr7\"}]","start":"2026-01-22T13:45:00.000Z","end":"2026-01-22T14:00:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7318\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-ye5bjmgl1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085814-1b8eics5s\"}]","start":"2026-03-11T13:00:00.000Z","end":"2026-03-11T13:15:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8862\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-k3hr48c38","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085785-dd9wx4v21\"}]","start":"2026-02-03T19:30:00.000Z","end":"2026-02-03T19:45:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1863\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-9zye2iqjl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085752-duqh5hjqr\"}]","start":"2025-12-26T15:45:00.000Z","end":"2025-12-26T16:00:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4597\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-s8w9kvni9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085844-yxe2lvbqs\"}]","start":"2026-04-15T16:30:00.000Z","end":"2026-04-15T16:45:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9496\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-klav5s14c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085746-y849li0de\"}]","start":"2025-12-19T13:45:00.000Z","end":"2025-12-19T14:00:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1240\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-tqo6zyd0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085814-3gs14go1r\"}]","start":"2026-03-11T16:15:00.000Z","end":"2026-03-11T16:30:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-7196\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-0ck5y36c2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085811-hm18w0qwh\"}]","start":"2026-03-06T19:45:00.000Z","end":"2026-03-06T20:00:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-1558\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-of8kdf40f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085834-c3l0k7uga\"}]","start":"2026-04-03T16:45:00.000Z","end":"2026-04-03T17:00:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5728\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086431-uz226kkgs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085871-lnxrby1zq\"}]","start":"2026-05-18T12:30:00.000Z","end":"2026-05-18T12:45:00.000Z","created":"2025-12-12T05:24:46.431Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3149\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-raducmf30","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085879-y61f5jupi\"}]","start":"2026-05-28T12:15:00.000Z","end":"2026-05-28T12:30:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6952\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-3bmwfxix7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085880-6cjx2m7mo\"}]","start":"2026-05-28T18:00:00.000Z","end":"2026-05-28T18:15:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8823\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-g1efxpidm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085858-yugvuoqpn\"}]","start":"2026-05-01T13:30:00.000Z","end":"2026-05-01T13:45:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6167\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-vy6fcyg17","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085878-p2d41ect5\"}]","start":"2026-05-27T13:00:00.000Z","end":"2026-05-27T13:15:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8732\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-y9dfzou0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085804-m5k5pjc5e\"}]","start":"2026-02-27T13:30:00.000Z","end":"2026-02-27T13:45:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2675\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-sdrw14ep7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085803-6v24sgwqy\"}]","start":"2026-02-26T16:30:00.000Z","end":"2026-02-26T16:45:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9729\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-93uqepsdu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-4q3ptj024\"}]","start":"2026-01-02T18:45:00.000Z","end":"2026-01-02T19:00:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9796\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-5iuyroxmi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085873-gqbts9jso\"}]","start":"2026-05-20T13:45:00.000Z","end":"2026-05-20T14:00:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7966\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-8e73j77au","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085888-9cv8adxbt\"}]","start":"2026-06-05T19:30:00.000Z","end":"2026-06-05T19:45:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6066\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-6qtjdmb0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085872-7mweq64db\"}]","start":"2026-05-19T17:15:00.000Z","end":"2026-05-19T17:30:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9963\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-m9em0imy6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085857-bznn77vlp\"}]","start":"2026-04-30T16:45:00.000Z","end":"2026-04-30T17:00:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4336\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-cv867s9y2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085760-ww0e2syrw\"}]","start":"2026-01-05T19:00:00.000Z","end":"2026-01-05T19:15:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9284\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086432-n8ikqqljz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085753-z246grxh2\"}]","start":"2025-12-29T18:15:00.000Z","end":"2025-12-29T18:30:00.000Z","created":"2025-12-12T05:24:46.432Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1623\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-dcailkyyv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085792-qrtwybsz5\"}]","start":"2026-02-12T17:30:00.000Z","end":"2026-02-12T17:45:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-3610\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-0wdxg61kn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085823-pa52dg0sc\"}]","start":"2026-03-23T12:30:00.000Z","end":"2026-03-23T12:45:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-4606\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-bhnhwqlrk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085853-lnmwzbilf\"}]","start":"2026-04-27T12:45:00.000Z","end":"2026-04-27T13:00:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2539\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-y02cujtzt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085754-qq4co2po4\"}]","start":"2025-12-30T13:45:00.000Z","end":"2025-12-30T14:00:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7968\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-xkzh7l3tx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085888-fa545ttns\"}]","start":"2026-06-08T13:15:00.000Z","end":"2026-06-08T13:30:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-7382\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-vwdgj9gph","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085788-bze14tz9u\"}]","start":"2026-02-06T18:45:00.000Z","end":"2026-02-06T19:00:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-8679\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-vrdrvy3gb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085813-lkzutx47o\"}]","start":"2026-03-10T15:00:00.000Z","end":"2026-03-10T15:15:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3411\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-efbqllqpl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085776-lx66w21na\"}]","start":"2026-01-23T13:45:00.000Z","end":"2026-01-23T14:00:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9549\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-7mwvozktc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085888-z9fpg1ea1\"}]","start":"2026-06-08T17:30:00.000Z","end":"2026-06-08T17:45:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4164\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-squt9jhry","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085807-3f5k62qx7\"}]","start":"2026-03-03T15:30:00.000Z","end":"2026-03-03T15:45:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7707\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-evybvjqs6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085808-jo41owjt3\"}]","start":"2026-03-04T15:30:00.000Z","end":"2026-03-04T15:45:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7224\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086433-pdjqi7ai5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085791-bkd27gmi5\"}]","start":"2026-02-12T13:15:00.000Z","end":"2026-02-12T13:30:00.000Z","created":"2025-12-12T05:24:46.433Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5418\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-s7udq5rmt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085784-diophulmr\"}]","start":"2026-02-02T19:15:00.000Z","end":"2026-02-02T19:30:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1094\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-30bb4w2cb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085791-z2etu7q7y\"}]","start":"2026-02-11T13:30:00.000Z","end":"2026-02-11T13:45:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3799\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-f4ov90e27","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085873-olh4tn2j5\"}]","start":"2026-05-20T14:45:00.000Z","end":"2026-05-20T15:00:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2667\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-qkbrf4grs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085800-3twyiw2kz\"}]","start":"2026-02-23T13:00:00.000Z","end":"2026-02-23T13:15:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7268\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-xi5iqb7s2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085795-ax2vepjhb\"}]","start":"2026-02-16T20:30:00.000Z","end":"2026-02-16T20:45:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9057\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-kyprr88bj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085859-se175md3u\"}]","start":"2026-05-04T13:45:00.000Z","end":"2026-05-04T14:00:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1440\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-ai9hu64hg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085766-gjw5xxmpd\"}]","start":"2026-01-13T18:30:00.000Z","end":"2026-01-13T18:45:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5929\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-oratjmznf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085884-cehsdgra6\"}]","start":"2026-06-02T17:30:00.000Z","end":"2026-06-02T17:45:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2232\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-hbxugawov","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085773-i7fcftyyt\"}]","start":"2026-01-21T18:30:00.000Z","end":"2026-01-21T18:45:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5608\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-8ky05hge1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085844-j1lw69gan\"}]","start":"2026-04-15T17:15:00.000Z","end":"2026-04-15T17:30:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1709\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-xn45yk8l4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085877-qv9l1c38y\"}]","start":"2026-05-26T12:30:00.000Z","end":"2026-05-26T12:45:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4776\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-qsb8a5lds","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085797-x1ucl0qmu\"}]","start":"2026-02-19T13:00:00.000Z","end":"2026-02-19T13:15:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-6082\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086434-uo8w32ohm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085860-js3jj3hy7\"}]","start":"2026-05-04T16:45:00.000Z","end":"2026-05-04T17:00:00.000Z","created":"2025-12-12T05:24:46.434Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3040\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-04alndyn7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085861-lx6f4p4tx\"}]","start":"2026-05-05T18:15:00.000Z","end":"2026-05-05T18:30:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6923\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-o3on6bzfr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085774-tg1ret3ou\"}]","start":"2026-01-22T15:15:00.000Z","end":"2026-01-22T15:30:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6634\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-lljkdtnyx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085796-c971xga4y\"}]","start":"2026-02-17T16:45:00.000Z","end":"2026-02-17T17:00:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9153\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-8fn1z2wp8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085811-08k3wjeoa\"}]","start":"2026-03-06T20:15:00.000Z","end":"2026-03-06T20:30:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4490\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-fw31tnxlk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085834-2sjckmuaz\"}]","start":"2026-04-03T17:00:00.000Z","end":"2026-04-03T17:15:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8391\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-65oj7j09f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085784-8rho25rqk\"}]","start":"2026-02-03T13:15:00.000Z","end":"2026-02-03T13:30:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-7064\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-887vd1oo2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085814-1so8i0x11\"}]","start":"2026-03-11T15:30:00.000Z","end":"2026-03-11T15:45:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7363\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-puu1guyd5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085807-srkv2ymj9\"}]","start":"2026-03-02T16:45:00.000Z","end":"2026-03-02T17:00:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5543\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-z3rimso3t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085802-tezfts2ma\"}]","start":"2026-02-24T17:15:00.000Z","end":"2026-02-24T17:30:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5647\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-7quac3ous","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085878-uwhrjx0fe\"}]","start":"2026-05-26T16:45:00.000Z","end":"2026-05-26T17:00:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3049\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-lnfkajf3p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085813-nok3w2we4\"}]","start":"2026-03-10T16:15:00.000Z","end":"2026-03-10T16:30:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8560\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-1vuf2v3zh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085751-joeqao965\"}]","start":"2025-12-24T18:45:00.000Z","end":"2025-12-24T19:00:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1434\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-fnvzndg03","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085802-0z2pf2yid\"}]","start":"2026-02-25T13:30:00.000Z","end":"2026-02-25T13:45:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9526\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086435-e5mdqk0zr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085860-y2en8l2xi\"}]","start":"2026-05-04T19:30:00.000Z","end":"2026-05-04T19:45:00.000Z","created":"2025-12-12T05:24:46.435Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1303\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-cj6lriq1p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085754-od7ojd7v1\"}]","start":"2025-12-30T14:30:00.000Z","end":"2025-12-30T14:45:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9508\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-2cjj2gbie","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085796-amuz21kpo\"}]","start":"2026-02-17T18:45:00.000Z","end":"2026-02-17T19:00:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5432\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-jzip0pm29","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085870-gl9ist3my\"}]","start":"2026-05-15T14:15:00.000Z","end":"2026-05-15T14:30:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5580\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-4sfubjrry","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085869-704uxtu72\"}]","start":"2026-05-14T18:45:00.000Z","end":"2026-05-14T19:00:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7569\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-j93zsmqs3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085776-9rr24hm0d\"}]","start":"2026-01-23T14:15:00.000Z","end":"2026-01-23T14:30:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7609\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-gytqrarc4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085740-fned6n7xs\"}]","start":"2025-12-12T14:30:00.000Z","end":"2025-12-12T14:45:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1689\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-5si5tcj41","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-x5w07uj2k\"}]","start":"2026-01-01T18:15:00.000Z","end":"2026-01-01T18:30:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3110\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-mqeje4a8h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085881-9dnhhcaka\"}]","start":"2026-05-28T19:30:00.000Z","end":"2026-05-28T19:45:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9093\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-pw6b6wl64","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-xk1c6b79q\"}]","start":"2025-12-26T17:45:00.000Z","end":"2025-12-26T18:00:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6666\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-0nlmbc7ap","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085798-hgny7regi\"}]","start":"2026-02-19T16:45:00.000Z","end":"2026-02-19T17:00:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9977\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-gcfs4jvyw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085769-bc41aq2pl\"}]","start":"2026-01-15T17:00:00.000Z","end":"2026-01-15T17:15:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6051\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-c3i05taa8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085797-dsnio2s4m\"}]","start":"2026-02-18T19:45:00.000Z","end":"2026-02-18T20:00:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9056\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086436-873inoro4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085859-2oy60b6cg\"}]","start":"2026-05-04T14:15:00.000Z","end":"2026-05-04T14:30:00.000Z","created":"2025-12-12T05:24:46.436Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9536\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-w4iw0fh6c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085741-87hi6p9k2\"}]","start":"2025-12-15T13:15:00.000Z","end":"2025-12-15T13:30:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2089\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-mxxblxfcj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085822-5mgnxzmd2\"}]","start":"2026-03-20T12:15:00.000Z","end":"2026-03-20T12:30:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8350\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-tjcwm85oh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085865-vwkf7jmdr\"}]","start":"2026-05-11T13:00:00.000Z","end":"2026-05-11T13:15:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3189\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-gr9cwr8gf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085853-qcvk2b0ek\"}]","start":"2026-04-27T12:30:00.000Z","end":"2026-04-27T12:45:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-7479\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-cnjukrugb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085823-0jms0g8mq\"}]","start":"2026-03-20T17:15:00.000Z","end":"2026-03-20T17:30:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5504\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-nnbbmak74","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085840-64md6udif\"}]","start":"2026-04-10T18:45:00.000Z","end":"2026-04-10T19:00:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6274\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-pl94rib6e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085816-hmjsiocug\"}]","start":"2026-03-12T19:15:00.000Z","end":"2026-03-12T19:30:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3173\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-ued2ka70g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085746-aoynfj4c2\"}]","start":"2025-12-19T13:30:00.000Z","end":"2025-12-19T13:45:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3958\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-ottsvhp25","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085815-zrfrwwsoz\"}]","start":"2026-03-12T16:00:00.000Z","end":"2026-03-12T16:15:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5121\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-cnnzcfnz4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085784-q39zz5152\"}]","start":"2026-02-03T18:30:00.000Z","end":"2026-02-03T18:45:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2155\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-78q6bxvx1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085867-ud5p69is6\"}]","start":"2026-05-12T18:15:00.000Z","end":"2026-05-12T18:30:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4945\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086437-6bfjndjpa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085810-74hikqam4\"}]","start":"2026-03-06T16:15:00.000Z","end":"2026-03-06T16:30:00.000Z","created":"2025-12-12T05:24:46.437Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6112\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-f0juwwmwo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085819-irxagses6\"}]","start":"2026-03-16T18:00:00.000Z","end":"2026-03-16T18:15:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7083\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-5ax5tnm5k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085801-vk4n506z4\"}]","start":"2026-02-24T13:30:00.000Z","end":"2026-02-24T13:45:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-6840\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-xwtpjnu9j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085846-oer3ze1ec\"}]","start":"2026-04-20T13:00:00.000Z","end":"2026-04-20T13:15:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-8430\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-itr9erhmd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085822-2t39est97\"}]","start":"2026-03-20T16:45:00.000Z","end":"2026-03-20T17:00:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4618\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-50e1nl8ot","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-bhnvqio2z\"}]","start":"2026-01-02T17:30:00.000Z","end":"2026-01-02T17:45:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9095\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-i5r4ar5wu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085745-po0nulncv\"}]","start":"2025-12-17T18:45:00.000Z","end":"2025-12-17T19:00:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1689\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-zkpri6ej4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085792-vgymbbyqf\"}]","start":"2026-02-12T17:15:00.000Z","end":"2026-02-12T17:30:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2894\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-fe6amxzwl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085820-q1a82g5j7\"}]","start":"2026-03-18T14:00:00.000Z","end":"2026-03-18T14:15:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1160\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-n23wo2pp1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085745-u6cnp1s17\"}]","start":"2025-12-18T16:30:00.000Z","end":"2025-12-18T16:45:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2884\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-tvuw9mdqv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085879-cu7m1aw7x\"}]","start":"2026-05-27T15:30:00.000Z","end":"2026-05-27T15:45:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2716\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-r8h2rk0il","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085850-wdcvr3gpm\"}]","start":"2026-04-22T14:00:00.000Z","end":"2026-04-22T14:15:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6545\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-3in16twq7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085870-iie1k79rp\"}]","start":"2026-05-14T19:15:00.000Z","end":"2026-05-14T19:30:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7166\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-n5my5gyay","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085783-kp6mpo00w\"}]","start":"2026-01-30T20:30:00.000Z","end":"2026-01-30T20:45:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-2939\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086438-afq284ioc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085888-5wg4qmhhq\"}]","start":"2026-06-08T12:00:00.000Z","end":"2026-06-08T12:15:00.000Z","created":"2025-12-12T05:24:46.438Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8869\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086439-wbeiif6x0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085786-7gej3x8al\"}]","start":"2026-02-04T20:00:00.000Z","end":"2026-02-04T20:15:00.000Z","created":"2025-12-12T05:24:46.439Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2609\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086439-1al0nf9z0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085763-vrvzthi9l\"}]","start":"2026-01-08T16:30:00.000Z","end":"2026-01-08T16:45:00.000Z","created":"2025-12-12T05:24:46.439Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2133\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086439-98uij59s6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085839-vmc0jxi1q\"}]","start":"2026-04-09T18:15:00.000Z","end":"2026-04-09T18:30:00.000Z","created":"2025-12-12T05:24:46.439Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5759\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086439-rr3sjxyj1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085852-gj1y0ygow\"}]","start":"2026-04-23T18:45:00.000Z","end":"2026-04-23T19:00:00.000Z","created":"2025-12-12T05:24:46.439Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1271\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086439-8qpa21buu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085791-aqz19ddg3\"}]","start":"2026-02-11T14:00:00.000Z","end":"2026-02-11T14:15:00.000Z","created":"2025-12-12T05:24:46.439Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5845\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086439-117fp7x1u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085810-a99uut5xj\"}]","start":"2026-03-05T20:30:00.000Z","end":"2026-03-05T20:45:00.000Z","created":"2025-12-12T05:24:46.439Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4243\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086441-19lvvwy3f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085860-ef6mqjpss\"}]","start":"2026-05-04T17:45:00.000Z","end":"2026-05-04T18:00:00.000Z","created":"2025-12-12T05:24:46.441Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-6436\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.441Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086441-qjtus2ej5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085821-uaouu86uh\"}]","start":"2026-03-18T15:45:00.000Z","end":"2026-03-18T16:00:00.000Z","created":"2025-12-12T05:24:46.441Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8770\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.441Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086441-tjgrbbw1h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085804-18j41wcc3\"}]","start":"2026-02-27T16:45:00.000Z","end":"2026-02-27T17:00:00.000Z","created":"2025-12-12T05:24:46.441Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1654\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.441Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086441-aa1m5hs1s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085866-ze9vjj852\"}]","start":"2026-05-11T19:00:00.000Z","end":"2026-05-11T19:15:00.000Z","created":"2025-12-12T05:24:46.441Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-6013\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.441Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-f7d394cks","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085816-6vbcvqxgq\"}]","start":"2026-03-12T18:15:00.000Z","end":"2026-03-12T18:30:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2060\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-o6xz3qbmq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085866-zq8jv4mum\"}]","start":"2026-05-12T12:00:00.000Z","end":"2026-05-12T12:15:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3074\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-zlc629wg9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085889-z2uq7jgev\"}]","start":"2026-06-08T18:45:00.000Z","end":"2026-06-08T19:00:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7869\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-isfzs97ep","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085772-04ounaa7q\"}]","start":"2026-01-20T16:15:00.000Z","end":"2026-01-20T16:30:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7999\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-j61iw3asa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085745-iub47mrqa\"}]","start":"2025-12-18T16:15:00.000Z","end":"2025-12-18T16:30:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9294\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-27azv3o5o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085820-g5ky1gbbv\"}]","start":"2026-03-17T16:45:00.000Z","end":"2026-03-17T17:00:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4722\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-t0778yhga","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085792-9ohu6i4y6\"}]","start":"2026-02-13T13:15:00.000Z","end":"2026-02-13T13:30:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5785\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-ik79ogl83","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085787-d3134m1yq\"}]","start":"2026-02-06T13:45:00.000Z","end":"2026-02-06T14:00:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5451\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-5t4wioht5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085816-ybmows2g0\"}]","start":"2026-03-13T12:15:00.000Z","end":"2026-03-13T12:30:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3692\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-ssnvzphj9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-ujnzdlr3a\"}]","start":"2026-04-06T14:00:00.000Z","end":"2026-04-06T14:15:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8611\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-2evjwvxgb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085798-svg8xw0rn\"}]","start":"2026-02-19T18:30:00.000Z","end":"2026-02-19T18:45:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3722\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086442-uc32va86r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085870-7gy5nj5gt\"}]","start":"2026-05-15T17:30:00.000Z","end":"2026-05-15T17:45:00.000Z","created":"2025-12-12T05:24:46.442Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5157\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-wn8a1bthi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085770-cmkw3tam6\"}]","start":"2026-01-16T18:00:00.000Z","end":"2026-01-16T18:15:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9407\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-ef2x5owvc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085873-ku2eftnor\"}]","start":"2026-05-20T18:30:00.000Z","end":"2026-05-20T18:45:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3863\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-e4qxtczqe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085822-43l7my8hp\"}]","start":"2026-03-20T12:45:00.000Z","end":"2026-03-20T13:00:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9546\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-q98e5btir","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085815-d03s41oko\"}]","start":"2026-03-12T17:30:00.000Z","end":"2026-03-12T17:45:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5226\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-9x19eo24t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085857-ltdbxc0pr\"}]","start":"2026-04-30T18:45:00.000Z","end":"2026-04-30T19:00:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6783\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-w072o9w0a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085868-9n2kmw48b\"}]","start":"2026-05-14T12:00:00.000Z","end":"2026-05-14T12:15:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7044\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-epee1rahm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085839-akaoq0i2i\"}]","start":"2026-04-09T14:30:00.000Z","end":"2026-04-09T14:45:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9998\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-mz0t9bqc7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085743-lff6isbkr\"}]","start":"2025-12-16T18:45:00.000Z","end":"2025-12-16T19:00:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9929\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-2m3bqduko","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085866-3m1c8ehv2\"}]","start":"2026-05-12T12:15:00.000Z","end":"2026-05-12T12:30:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3580\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-h87h75y5o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085753-qni4bxdkk\"}]","start":"2025-12-29T15:45:00.000Z","end":"2025-12-29T16:00:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-1698\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-x07d6mm0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085790-5xoo7eh0h\"}]","start":"2026-02-10T13:00:00.000Z","end":"2026-02-10T13:15:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-9126\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-t4i1p4448","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085753-h7tugyq3a\"}]","start":"2025-12-29T16:30:00.000Z","end":"2025-12-29T16:45:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3113\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086443-b3r461myv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085770-o9j5dnuwh\"}]","start":"2026-01-16T14:30:00.000Z","end":"2026-01-16T14:45:00.000Z","created":"2025-12-12T05:24:46.443Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-9996\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-wmiwffcoy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085822-3v179x1zm\"}]","start":"2026-03-20T14:00:00.000Z","end":"2026-03-20T14:15:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9201\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-kud3v06ke","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085839-827a8760e\"}]","start":"2026-04-09T19:15:00.000Z","end":"2026-04-09T19:30:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-7480\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-1ihkftgw3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085844-7gceeeohs\"}]","start":"2026-04-15T18:00:00.000Z","end":"2026-04-15T18:15:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8322\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-axx0kzo2g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085878-y2316x2vb\"}]","start":"2026-05-26T12:45:00.000Z","end":"2026-05-26T13:00:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8322\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-ka1f5zrpi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085788-wyjx6gmuf\"}]","start":"2026-02-06T19:30:00.000Z","end":"2026-02-06T19:45:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-4704\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-f3nf2fi1c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085746-oq1h7k51n\"}]","start":"2025-12-18T20:00:00.000Z","end":"2025-12-18T20:15:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6198\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-ke29mqrvp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085866-zpdzzldnx\"}]","start":"2026-05-11T18:30:00.000Z","end":"2026-05-11T18:45:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7652\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-da3w9kry7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085885-40qfdf9kq\"}]","start":"2026-06-04T12:45:00.000Z","end":"2026-06-04T13:00:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1167\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-f24oipnc6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085817-31mq0iu3q\"}]","start":"2026-03-16T13:30:00.000Z","end":"2026-03-16T13:45:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2841\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-vvvmz170v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085820-wq4rjihi9\"}]","start":"2026-03-18T13:30:00.000Z","end":"2026-03-18T13:45:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9229\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-4p4y95iw5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085877-ykkggrfbq\"}]","start":"2026-05-25T18:30:00.000Z","end":"2026-05-25T18:45:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6207\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086444-gq7926nkr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085804-061b22dtc\"}]","start":"2026-02-26T18:30:00.000Z","end":"2026-02-26T18:45:00.000Z","created":"2025-12-12T05:24:46.444Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3953\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-vp50j7ev1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085766-3gctdbt20\"}]","start":"2026-01-14T13:00:00.000Z","end":"2026-01-14T13:15:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3599\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-gh5s6fl0q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085740-ggt0ryaxd\"}]","start":"2025-12-12T15:00:00.000Z","end":"2025-12-12T15:15:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4274\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-v521fnmu7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085790-harp0xhko\"}]","start":"2026-02-10T19:00:00.000Z","end":"2026-02-10T19:15:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5091\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-270y2awj5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085754-mmo16jggw\"}]","start":"2025-12-30T17:00:00.000Z","end":"2025-12-30T17:15:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1844\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-pntrjj8h7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085866-ytrmkjpra\"}]","start":"2026-05-12T16:15:00.000Z","end":"2026-05-12T16:30:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-4621\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-8iouinaz3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085784-b07fju4j2\"}]","start":"2026-02-03T15:15:00.000Z","end":"2026-02-03T15:30:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7929\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-v0h9qprgw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085776-8vw9fgk84\"}]","start":"2026-01-22T17:00:00.000Z","end":"2026-01-22T17:15:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5847\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-wsy97tjtb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085779-k37t3yjtp\"}]","start":"2026-01-28T13:30:00.000Z","end":"2026-01-28T13:45:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7009\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-5t9yr5fl4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085760-lp3qmam37\"}]","start":"2026-01-05T18:45:00.000Z","end":"2026-01-05T19:00:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2082\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-uv5vwzpgj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085879-fu0wfljh8\"}]","start":"2026-05-28T12:00:00.000Z","end":"2026-05-28T12:15:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3867\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-1pf0jmmht","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085767-y7tiypf26\"}]","start":"2026-01-14T17:45:00.000Z","end":"2026-01-14T18:00:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-3221\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-ce272w8h8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085786-phe2ks2a9\"}]","start":"2026-02-05T13:00:00.000Z","end":"2026-02-05T13:15:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-9829\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086445-8aihybxxp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085860-psggfq2u0\"}]","start":"2026-05-05T12:45:00.000Z","end":"2026-05-05T13:00:00.000Z","created":"2025-12-12T05:24:46.445Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1486\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-b46cygici","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085745-akctakw0i\"}]","start":"2025-12-18T15:15:00.000Z","end":"2025-12-18T15:30:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1378\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-brbekv9q1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085871-z9blv1fsw\"}]","start":"2026-05-18T17:45:00.000Z","end":"2026-05-18T18:00:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6919\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-nupwbd3wc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085815-z9ypxfuxg\"}]","start":"2026-03-12T12:30:00.000Z","end":"2026-03-12T12:45:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2784\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-x3uqjty6e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085766-goi2nn3ur\"}]","start":"2026-01-13T19:15:00.000Z","end":"2026-01-13T19:30:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3919\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-d8ciys4pi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085880-k42iqfrzu\"}]","start":"2026-05-28T16:45:00.000Z","end":"2026-05-28T17:00:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3512\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-txy8sua9l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085778-7ep1y6mxl\"}]","start":"2026-01-26T16:00:00.000Z","end":"2026-01-26T16:15:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8960\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-7jgqtf1f9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085803-d71s97eda\"}]","start":"2026-02-25T20:30:00.000Z","end":"2026-02-25T20:45:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-3449\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-rj85tca36","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085754-a4wnafrt8\"}]","start":"2025-12-30T14:00:00.000Z","end":"2025-12-30T14:15:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8059\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-3r9bxwbii","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085839-meo3z48pz\"}]","start":"2026-04-09T19:30:00.000Z","end":"2026-04-09T19:45:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6698\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-xakbkvasz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085798-cre3wta7q\"}]","start":"2026-02-19T19:15:00.000Z","end":"2026-02-19T19:30:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1565\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-tgwie89ux","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085888-ddfq5v2uz\"}]","start":"2026-06-08T13:45:00.000Z","end":"2026-06-08T14:00:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2470\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-3bycamqco","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085785-vzlo7t37f\"}]","start":"2026-02-04T18:45:00.000Z","end":"2026-02-04T19:00:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5069\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-vemxz50o0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085788-rjz5qcmyj\"}]","start":"2026-02-06T15:00:00.000Z","end":"2026-02-06T15:15:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9431\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086446-9z58shjrj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085834-q5qnanseh\"}]","start":"2026-04-03T15:45:00.000Z","end":"2026-04-03T16:00:00.000Z","created":"2025-12-12T05:24:46.446Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8364\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-bh5cbdv5c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085853-y829rao6y\"}]","start":"2026-04-27T12:15:00.000Z","end":"2026-04-27T12:30:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4436\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-pgv1xuu7m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085846-2cszt1653\"}]","start":"2026-04-20T12:45:00.000Z","end":"2026-04-20T13:00:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-9675\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-9zattyi3a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085777-ll67uuvkt\"}]","start":"2026-01-23T20:45:00.000Z","end":"2026-01-23T21:00:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-7354\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-b8ar3qt5m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085872-j46zpglaf\"}]","start":"2026-05-19T17:00:00.000Z","end":"2026-05-19T17:15:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-7233\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-g12yra035","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085823-wuz5dgyav\"}]","start":"2026-03-23T12:15:00.000Z","end":"2026-03-23T12:30:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6602\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-0hjwsr2f6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085884-amtuv1lkq\"}]","start":"2026-06-02T18:15:00.000Z","end":"2026-06-02T18:30:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8107\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-elma07npm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085820-d13kpl2pg\"}]","start":"2026-03-18T14:30:00.000Z","end":"2026-03-18T14:45:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5551\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-c2e5nlr8f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-x6znqhcph\"}]","start":"2026-01-02T20:15:00.000Z","end":"2026-01-02T20:30:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5240\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-cy7z90w30","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085845-4gk09op9q\"}]","start":"2026-04-16T18:30:00.000Z","end":"2026-04-16T18:45:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5581\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-a02dngt4e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085763-c2tmam73u\"}]","start":"2026-01-08T18:45:00.000Z","end":"2026-01-08T19:00:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6101\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-hn7d6eenh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085764-960mpx32j\"}]","start":"2026-01-09T15:45:00.000Z","end":"2026-01-09T16:00:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-8056\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-twn8dtzwk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085779-q0apzo1dp\"}]","start":"2026-01-28T14:45:00.000Z","end":"2026-01-28T15:00:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9054\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086447-kv99kk0lt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085844-8i2imctg2\"}]","start":"2026-04-15T15:45:00.000Z","end":"2026-04-15T16:00:00.000Z","created":"2025-12-12T05:24:46.447Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-2025\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-s5163o78m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085795-m443914cw\"}]","start":"2026-02-16T13:15:00.000Z","end":"2026-02-16T13:30:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2236\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-qnbvjfzip","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085872-jwjh7lkho\"}]","start":"2026-05-20T12:00:00.000Z","end":"2026-05-20T12:15:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5931\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-3jytrbwcs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085745-gfq0lrx1v\"}]","start":"2025-12-17T17:45:00.000Z","end":"2025-12-17T18:00:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2903\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-383eemqg6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-es6a05yvu\"}]","start":"2026-01-02T19:15:00.000Z","end":"2026-01-02T19:30:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7886\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-0leskauh3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085745-8cclkf4e7\"}]","start":"2025-12-18T13:00:00.000Z","end":"2025-12-18T13:15:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-5799\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-xwjl4dvvl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085888-tk96vkil8\"}]","start":"2026-06-08T14:30:00.000Z","end":"2026-06-08T14:45:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6852\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-g5nsa6mis","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085876-7m0b6a1kv\"}]","start":"2026-05-25T12:00:00.000Z","end":"2026-05-25T12:15:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2383\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-t5rvt8zss","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085741-3lnaz2k8b\"}]","start":"2025-12-15T15:15:00.000Z","end":"2025-12-15T15:30:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6503\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-ltfmc78jf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085887-sjtfvfpye\"}]","start":"2026-06-05T13:30:00.000Z","end":"2026-06-05T13:45:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2424\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-b8n7357rj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085770-9hnoi6s8z\"}]","start":"2026-01-16T14:45:00.000Z","end":"2026-01-16T15:00:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7724\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-5l86f8qeq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085880-yoguqtdhn\"}]","start":"2026-05-28T14:45:00.000Z","end":"2026-05-28T15:00:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4217\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-g7k0oi5l6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085848-pccp0qy2v\"}]","start":"2026-04-21T17:30:00.000Z","end":"2026-04-21T17:45:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8209\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086448-yumk5ctjb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-a4qbk5vje\"}]","start":"2025-12-25T19:00:00.000Z","end":"2025-12-25T19:15:00.000Z","created":"2025-12-12T05:24:46.448Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6546\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-2srfs1aw3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085759-tqiz0tm0p\"}]","start":"2026-01-05T16:30:00.000Z","end":"2026-01-05T16:45:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6327\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-k4leftsgu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-jpmpgcbnc\"}]","start":"2026-01-09T17:30:00.000Z","end":"2026-01-09T17:45:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-9677\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-3kib1mnz6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085885-w3yq11hh0\"}]","start":"2026-06-04T14:15:00.000Z","end":"2026-06-04T14:30:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2820\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-a1qhtbr0q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085858-81im1j1ga\"}]","start":"2026-05-01T12:15:00.000Z","end":"2026-05-01T12:30:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5199\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-jhw7sql2e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085785-69kg6t06o\"}]","start":"2026-02-04T17:00:00.000Z","end":"2026-02-04T17:15:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-5472\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-r4zxhu66o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085847-jdoczv0t5\"}]","start":"2026-04-20T16:15:00.000Z","end":"2026-04-20T16:30:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7054\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-cxmzfsbgj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085764-mtsh8ziy3\"}]","start":"2026-01-09T18:15:00.000Z","end":"2026-01-09T18:30:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6691\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-3rtbvv743","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085846-wlbvaxba2\"}]","start":"2026-04-20T14:30:00.000Z","end":"2026-04-20T14:45:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4064\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-lrygbe7o0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085815-qgrxpfax7\"}]","start":"2026-03-12T17:00:00.000Z","end":"2026-03-12T17:15:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6296\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-2dvhgvik9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085880-mwedfv9my\"}]","start":"2026-05-28T17:15:00.000Z","end":"2026-05-28T17:30:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3897\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-9wi47dnln","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085755-26xp4srla\"}]","start":"2025-12-30T19:15:00.000Z","end":"2025-12-30T19:30:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-9080\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-fsolecde5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085821-sbyqkakjs\"}]","start":"2026-03-18T17:15:00.000Z","end":"2026-03-18T17:30:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-1709\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-spn06gxsx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085776-kqq00jhiw\"}]","start":"2026-01-22T18:30:00.000Z","end":"2026-01-22T18:45:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8941\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086449-5krh4lpf4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085788-odb414yc3\"}]","start":"2026-02-06T20:30:00.000Z","end":"2026-02-06T20:45:00.000Z","created":"2025-12-12T05:24:46.449Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7023\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086450-o5s5rb9zn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085858-d3zh3qhd0\"}]","start":"2026-05-01T16:15:00.000Z","end":"2026-05-01T16:30:00.000Z","created":"2025-12-12T05:24:46.450Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-4116\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.450Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086450-5xkvkt5wq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085755-eu3dzu49j\"}]","start":"2025-12-30T19:30:00.000Z","end":"2025-12-30T19:45:00.000Z","created":"2025-12-12T05:24:46.450Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3672\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.450Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086450-uvlzm3nd9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085884-78x4bybza\"}]","start":"2026-06-02T16:45:00.000Z","end":"2026-06-02T17:00:00.000Z","created":"2025-12-12T05:24:46.450Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6872\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.450Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-yrmzthmle","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085870-lugxoba8x\"}]","start":"2026-05-15T17:15:00.000Z","end":"2026-05-15T17:30:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7760\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-uyq1elnec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085869-rdusv1y5a\"}]","start":"2026-05-14T16:15:00.000Z","end":"2026-05-14T16:30:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7692\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-q5m8y75rs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085752-9dqye6sep\"}]","start":"2025-12-26T14:15:00.000Z","end":"2025-12-26T14:30:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4421\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-6gachqfk2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085834-mqjlshzmd\"}]","start":"2026-04-03T12:45:00.000Z","end":"2026-04-03T13:00:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-5583\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-nwt89ac08","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085820-yoc1jd5ah\"}]","start":"2026-03-18T14:15:00.000Z","end":"2026-03-18T14:30:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4633\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-w54y6gfex","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085800-g2w85aaky\"}]","start":"2026-02-23T14:45:00.000Z","end":"2026-02-23T15:00:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8658\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-tqvqgguq0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085823-fkmjy8yzg\"}]","start":"2026-03-23T13:15:00.000Z","end":"2026-03-23T13:30:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5828\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-w5qsg6sv5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085857-mlp9so26m\"}]","start":"2026-04-30T12:15:00.000Z","end":"2026-04-30T12:30:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-7904\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-tdoax5b4c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085834-io322mj5a\"}]","start":"2026-04-03T14:15:00.000Z","end":"2026-04-03T14:30:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2558\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-r50n9grd8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085744-l4wd3chsf\"}]","start":"2025-12-16T20:15:00.000Z","end":"2025-12-16T20:30:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1159\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086453-vdcqfn7hr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085868-58kyw7ggc\"}]","start":"2026-05-13T19:45:00.000Z","end":"2026-05-13T20:00:00.000Z","created":"2025-12-12T05:24:46.453Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2220\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-oo1h077lw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085792-sn6c5buud\"}]","start":"2026-02-12T13:30:00.000Z","end":"2026-02-12T13:45:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6247\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-fl8geey4c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085819-cgsa0by9k\"}]","start":"2026-03-16T19:45:00.000Z","end":"2026-03-16T20:00:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1162\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-5c8q2tnxl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085813-knmsakk3q\"}]","start":"2026-03-10T14:15:00.000Z","end":"2026-03-10T14:30:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3420\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-4sez0zmo8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085788-m831a8qyp\"}]","start":"2026-02-06T17:30:00.000Z","end":"2026-02-06T17:45:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-8167\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-e6er3zmgk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085752-k5z2kfx3d\"}]","start":"2025-12-26T13:00:00.000Z","end":"2025-12-26T13:15:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3743\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-dy02vi3y7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085808-acuerp1u7\"}]","start":"2026-03-03T20:00:00.000Z","end":"2026-03-03T20:15:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-2340\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-lqf8al6us","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085888-rdinv33yi\"}]","start":"2026-06-08T14:00:00.000Z","end":"2026-06-08T14:15:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1915\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-ilw67bljz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085792-hkyjsl37m\"}]","start":"2026-02-12T20:30:00.000Z","end":"2026-02-12T20:45:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9945\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-tl6w2c9t1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085845-ucznlmzln\"}]","start":"2026-04-16T18:45:00.000Z","end":"2026-04-16T19:00:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-2587\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-gwwkp9oog","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085744-w15b7ak1p\"}]","start":"2025-12-17T16:15:00.000Z","end":"2025-12-17T16:30:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9868\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-x2xmhi8bj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085841-51a5pmk0q\"}]","start":"2026-04-13T18:00:00.000Z","end":"2026-04-13T18:15:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6226\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-loztqn9nf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085819-bhm3ybmdi\"}]","start":"2026-03-16T17:45:00.000Z","end":"2026-03-16T18:00:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4649\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086454-qw0kuu3f4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085847-9err3ydj3\"}]","start":"2026-04-20T19:00:00.000Z","end":"2026-04-20T19:15:00.000Z","created":"2025-12-12T05:24:46.454Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8393\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-1gtegpej2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085788-03g6d9k52\"}]","start":"2026-02-06T19:00:00.000Z","end":"2026-02-06T19:15:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1157\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-mh5j5ts7o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085870-sqr000xd9\"}]","start":"2026-05-15T18:30:00.000Z","end":"2026-05-15T18:45:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7003\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-ltrkvfpxi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085857-lyw96wkmx\"}]","start":"2026-04-30T18:15:00.000Z","end":"2026-04-30T18:30:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9520\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-c4k7fz3az","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085884-payket7gx\"}]","start":"2026-06-03T13:45:00.000Z","end":"2026-06-03T14:00:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9859\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-kypb8co0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085746-diesedjqz\"}]","start":"2025-12-19T13:15:00.000Z","end":"2025-12-19T13:30:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2080\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-yk1tsvzkg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085801-g1qs1syr7\"}]","start":"2026-02-24T13:45:00.000Z","end":"2026-02-24T14:00:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3680\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-ex2z16a3w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085836-q3jxgpour\"}]","start":"2026-04-06T19:45:00.000Z","end":"2026-04-06T20:00:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2277\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-fq66bqzwi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085867-jc2s7zi57\"}]","start":"2026-05-13T13:45:00.000Z","end":"2026-05-13T14:00:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6074\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-jo53bnv8v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085871-nzhfhhku2\"}]","start":"2026-05-18T19:30:00.000Z","end":"2026-05-18T19:45:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2429\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-wpzg6dmd2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085873-y2tde4jgx\"}]","start":"2026-05-20T17:00:00.000Z","end":"2026-05-20T17:15:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4900\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-736q2gwqq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085747-u0b9y0fjn\"}]","start":"2025-12-19T19:30:00.000Z","end":"2025-12-19T19:45:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3008\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-zg83tvlhn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085885-w29cc6c40\"}]","start":"2026-06-04T12:00:00.000Z","end":"2026-06-04T12:15:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9240\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-jn7jc7rx7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085839-85zimgnq1\"}]","start":"2026-04-09T13:00:00.000Z","end":"2026-04-09T13:15:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-1514\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086455-fcfnqirjc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085741-ezpcnnsg1\"}]","start":"2025-12-15T13:30:00.000Z","end":"2025-12-15T13:45:00.000Z","created":"2025-12-12T05:24:46.455Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8277\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086456-pwle0onte","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085864-0jplkyrs9\"}]","start":"2026-05-08T12:00:00.000Z","end":"2026-05-08T12:15:00.000Z","created":"2025-12-12T05:24:46.456Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1747\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086456-jc5q8a72r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085766-nw84qkft7\"}]","start":"2026-01-13T20:30:00.000Z","end":"2026-01-13T20:45:00.000Z","created":"2025-12-12T05:24:46.456Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4039\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086456-63djlehnr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085816-nvspwwb7b\"}]","start":"2026-03-12T18:30:00.000Z","end":"2026-03-12T18:45:00.000Z","created":"2025-12-12T05:24:46.456Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-4944\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086456-ep5w7ep15","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085813-kocqwrfay\"}]","start":"2026-03-10T14:45:00.000Z","end":"2026-03-10T15:00:00.000Z","created":"2025-12-12T05:24:46.456Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6168\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086456-2c0plhfqb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085886-9kred8x0p\"}]","start":"2026-06-04T18:15:00.000Z","end":"2026-06-04T18:30:00.000Z","created":"2025-12-12T05:24:46.456Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9303\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086456-ly87ij4fr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085813-tepp2wr2x\"}]","start":"2026-03-10T14:00:00.000Z","end":"2026-03-10T14:15:00.000Z","created":"2025-12-12T05:24:46.456Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-1379\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086456-tixyrvndy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085878-959j3kjc3\"}]","start":"2026-05-26T18:00:00.000Z","end":"2026-05-26T18:15:00.000Z","created":"2025-12-12T05:24:46.456Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4425\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086456-wwnuatlc3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085778-5bznnwcsh\"}]","start":"2026-01-27T13:45:00.000Z","end":"2026-01-27T14:00:00.000Z","created":"2025-12-12T05:24:46.456Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1371\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-d39vubhx1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085834-cmaepoiki\"}]","start":"2026-04-03T13:45:00.000Z","end":"2026-04-03T14:00:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8235\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-qsvidzcoc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085759-cl4pa5wxt\"}]","start":"2026-01-05T16:00:00.000Z","end":"2026-01-05T16:15:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7320\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-g04qpc8wj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085788-pn6ea94pf\"}]","start":"2026-02-06T15:45:00.000Z","end":"2026-02-06T16:00:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-3134\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-7jwkon1qo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085819-hzad4pdtd\"}]","start":"2026-03-17T13:45:00.000Z","end":"2026-03-17T14:00:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6287\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-w2t74ha87","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085818-opsr2qlwr\"}]","start":"2026-03-16T16:00:00.000Z","end":"2026-03-16T16:15:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7401\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-xhnqoiexe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085817-kcpf0i9fm\"}]","start":"2026-03-13T17:00:00.000Z","end":"2026-03-13T17:15:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4026\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-58zfqtrzt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085761-0zi6312gv\"}]","start":"2026-01-07T16:15:00.000Z","end":"2026-01-07T16:30:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5404\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-llrpn21m6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085845-qcpvah75b\"}]","start":"2026-04-16T19:30:00.000Z","end":"2026-04-16T19:45:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1415\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-3k7ua720z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085783-zymnox2pd\"}]","start":"2026-01-30T19:30:00.000Z","end":"2026-01-30T19:45:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2286\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-qkej6wm70","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085813-l01nus0ha\"}]","start":"2026-03-10T17:45:00.000Z","end":"2026-03-10T18:00:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8366\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086457-guk2evtnx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085771-k4nlnew2c\"}]","start":"2026-01-20T14:15:00.000Z","end":"2026-01-20T14:30:00.000Z","created":"2025-12-12T05:24:46.457Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2090\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-8p3m6ehv7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085795-ugpw1x67f\"}]","start":"2026-02-16T15:15:00.000Z","end":"2026-02-16T15:30:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8895\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-93f6kzf6g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085850-jf0zlv7zo\"}]","start":"2026-04-22T12:45:00.000Z","end":"2026-04-22T13:00:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4126\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-t3gxwm614","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085741-y1lqpujc5\"}]","start":"2025-12-15T15:00:00.000Z","end":"2025-12-15T15:15:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-8106\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-6c1ecp9oi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085821-f3ph9gxgl\"}]","start":"2026-03-18T17:00:00.000Z","end":"2026-03-18T17:15:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8701\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-ybx05mc1e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085834-bgpwhwop5\"}]","start":"2026-04-03T18:15:00.000Z","end":"2026-04-03T18:30:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6931\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-70lqaouqb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085844-nl05ac2s1\"}]","start":"2026-04-16T12:15:00.000Z","end":"2026-04-16T12:30:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9826\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-3opd5dirh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085841-5qcd2tkex\"}]","start":"2026-04-13T13:30:00.000Z","end":"2026-04-13T13:45:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4220\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-1c3svczrk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085879-d9mrmozbu\"}]","start":"2026-05-27T13:30:00.000Z","end":"2026-05-27T13:45:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-1215\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-is51wbq1b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085847-ymm6q4wk2\"}]","start":"2026-04-20T15:45:00.000Z","end":"2026-04-20T16:00:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9573\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-vk8ozalc2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085770-7jrz7zvat\"}]","start":"2026-01-16T17:45:00.000Z","end":"2026-01-16T18:00:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6141\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-u9ycvw4zo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085761-c70kyi4o8\"}]","start":"2026-01-07T18:45:00.000Z","end":"2026-01-07T19:00:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9022\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-01cwbydcu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085870-rfaiwdyhh\"}]","start":"2026-05-15T14:30:00.000Z","end":"2026-05-15T14:45:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5166\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086458-47koc181n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085786-eru5ky37c\"}]","start":"2026-02-05T17:15:00.000Z","end":"2026-02-05T17:30:00.000Z","created":"2025-12-12T05:24:46.458Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7894\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-pmzsfe1c4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085872-r2tdbbrhg\"}]","start":"2026-05-19T19:15:00.000Z","end":"2026-05-19T19:30:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6067\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-usvr4owwb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085803-lf0j5xvn9\"}]","start":"2026-02-25T18:45:00.000Z","end":"2026-02-25T19:00:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7888\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-2cafha31e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085875-30mmemg6g\"}]","start":"2026-05-21T18:15:00.000Z","end":"2026-05-21T18:30:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5444\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-o4kc5i0ad","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085865-eet049724\"}]","start":"2026-05-11T14:45:00.000Z","end":"2026-05-11T15:00:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5492\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-tmaay61b4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085859-jscnp9uh4\"}]","start":"2026-05-04T15:30:00.000Z","end":"2026-05-04T15:45:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3451\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-axpgj7qhd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085884-iyljfvj8h\"}]","start":"2026-06-02T16:15:00.000Z","end":"2026-06-02T16:30:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7724\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-zesynyoz6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085766-akviqi9jh\"}]","start":"2026-01-13T20:45:00.000Z","end":"2026-01-13T21:00:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2172\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-wtdy637no","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085746-164naiykl\"}]","start":"2025-12-19T15:30:00.000Z","end":"2025-12-19T15:45:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9769\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-o2bvrv8ih","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085818-bsplf5apb\"}]","start":"2026-03-16T16:15:00.000Z","end":"2026-03-16T16:30:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2454\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-h4fhr7l9c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085791-cfv5m75gw\"}]","start":"2026-02-10T20:45:00.000Z","end":"2026-02-10T21:00:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5714\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-0l68qgn6o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085770-0rwglb5b0\"}]","start":"2026-01-19T13:00:00.000Z","end":"2026-01-19T13:15:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6126\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-gd5gn3v9s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085759-rs2c2628p\"}]","start":"2026-01-02T19:00:00.000Z","end":"2026-01-02T19:15:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-8425\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086459-zdf0u47ui","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085804-s54z776ph\"}]","start":"2026-02-26T18:45:00.000Z","end":"2026-02-26T19:00:00.000Z","created":"2025-12-12T05:24:46.459Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7799\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-7yttg0u2r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085878-qozfg9i2r\"}]","start":"2026-05-26T14:00:00.000Z","end":"2026-05-26T14:15:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8981\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-nyb3ze16m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085779-tzfuk4b8u\"}]","start":"2026-01-27T16:45:00.000Z","end":"2026-01-27T17:00:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3591\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-xs7klx8d4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085842-7urzdc016\"}]","start":"2026-04-14T18:45:00.000Z","end":"2026-04-14T19:00:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-6997\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-9nynx42e7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085809-tz1atd3d3\"}]","start":"2026-03-05T18:00:00.000Z","end":"2026-03-05T18:15:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4098\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-79irg4nxu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085851-42ft3bnn7\"}]","start":"2026-04-23T13:30:00.000Z","end":"2026-04-23T13:45:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9621\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-6gdviokat","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085874-bvb05fqdx\"}]","start":"2026-05-21T12:45:00.000Z","end":"2026-05-21T13:00:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9749\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-gmgu6n12s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085866-ucis4m94a\"}]","start":"2026-05-11T17:30:00.000Z","end":"2026-05-11T17:45:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7796\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-k7mvgnknz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085840-63fx2s3lx\"}]","start":"2026-04-10T17:45:00.000Z","end":"2026-04-10T18:00:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2165\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-v4klm5so0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085873-5rvtwiwky\"}]","start":"2026-05-20T15:00:00.000Z","end":"2026-05-20T15:15:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7269\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-wych7wqnu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085861-fg3cc2dvx\"}]","start":"2026-05-05T19:00:00.000Z","end":"2026-05-05T19:15:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3739\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-olttuo29u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085753-ni1vvmj2d\"}]","start":"2025-12-29T16:00:00.000Z","end":"2025-12-29T16:15:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3143\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-g2ql6uba0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085761-93eovbyes\"}]","start":"2026-01-07T13:45:00.000Z","end":"2026-01-07T14:00:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8900\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-t9q9h8sjw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085870-9jrudn6s2\"}]","start":"2026-05-15T18:45:00.000Z","end":"2026-05-15T19:00:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3311\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086460-8n4xpfy38","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085780-2drdtvzhn\"}]","start":"2026-01-28T18:30:00.000Z","end":"2026-01-28T18:45:00.000Z","created":"2025-12-12T05:24:46.460Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4667\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-cp325749h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085879-rxep4pek6\"}]","start":"2026-05-27T17:15:00.000Z","end":"2026-05-27T17:30:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2527\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-624y1vei9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085813-nugqkfsxx\"}]","start":"2026-03-10T12:30:00.000Z","end":"2026-03-10T12:45:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6191\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-zgb6ipcnr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085847-y4k2m9o4d\"}]","start":"2026-04-20T17:00:00.000Z","end":"2026-04-20T17:15:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7773\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-t40medh2q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085817-0qtaitwcy\"}]","start":"2026-03-16T15:00:00.000Z","end":"2026-03-16T15:15:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8112\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-lmn8l5lo2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085857-ich8bwe6m\"}]","start":"2026-04-29T19:45:00.000Z","end":"2026-04-29T20:00:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7079\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-fhdlwyznp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085845-8r9yo4g03\"}]","start":"2026-04-16T14:00:00.000Z","end":"2026-04-16T14:15:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5454\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-htqt45vit","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085764-924vi5fd7\"}]","start":"2026-01-09T16:15:00.000Z","end":"2026-01-09T16:30:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3604\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-ufqf1r30p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085775-1j2g1x0z3\"}]","start":"2026-01-22T15:45:00.000Z","end":"2026-01-22T16:00:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5810\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-rmkj841n9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085786-q8d8nqorv\"}]","start":"2026-02-04T19:45:00.000Z","end":"2026-02-04T20:00:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-7276\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-zkqifmwhs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085815-3jt9ku06w\"}]","start":"2026-03-12T12:15:00.000Z","end":"2026-03-12T12:30:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8383\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-e8rskcp0i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085841-5468x6ys8\"}]","start":"2026-04-14T13:00:00.000Z","end":"2026-04-14T13:15:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7031\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-adv868u42","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085755-gt5coatbj\"}]","start":"2025-12-30T20:00:00.000Z","end":"2025-12-30T20:15:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4385\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086461-mdwqcmjs5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085740-50xsz1ziv\"}]","start":"2025-12-12T16:00:00.000Z","end":"2025-12-12T16:15:00.000Z","created":"2025-12-12T05:24:46.461Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4332\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-eow025ifh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085885-zp6jal89x\"}]","start":"2026-06-03T17:15:00.000Z","end":"2026-06-03T17:30:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3594\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-9hvdg1tfg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085860-5i4bkuzeu\"}]","start":"2026-05-04T16:15:00.000Z","end":"2026-05-04T16:30:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5141\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-khfhrbf28","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085881-l0kcymnue\"}]","start":"2026-05-29T12:00:00.000Z","end":"2026-05-29T12:15:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3683\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-i6db8ozoo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085753-wrn6wy5ne\"}]","start":"2025-12-29T17:00:00.000Z","end":"2025-12-29T17:15:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3093\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-vuvhzrfun","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085860-9t5l23pmz\"}]","start":"2026-05-05T12:30:00.000Z","end":"2026-05-05T12:45:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4553\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-zo285llj7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085784-6eukfk0dp\"}]","start":"2026-02-03T14:00:00.000Z","end":"2026-02-03T14:15:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-1958\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-kq07akmd4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085759-5zfu9av83\"}]","start":"2026-01-05T14:45:00.000Z","end":"2026-01-05T15:00:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2546\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-6q8l6g39a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085817-9ey0c28fm\"}]","start":"2026-03-16T13:45:00.000Z","end":"2026-03-16T14:00:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5198\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-i9ac0k6l5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085884-c1ztyaaz2\"}]","start":"2026-06-02T19:30:00.000Z","end":"2026-06-02T19:45:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7425\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-sok748uyv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085771-sr0nucigv\"}]","start":"2026-01-20T13:30:00.000Z","end":"2026-01-20T13:45:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9694\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086464-o3coyra11","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085746-3jhf2a8qw\"}]","start":"2025-12-18T19:15:00.000Z","end":"2025-12-18T19:30:00.000Z","created":"2025-12-12T05:24:46.464Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5523\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-bwmocfh6v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085839-9vb0rgm0l\"}]","start":"2026-04-09T13:45:00.000Z","end":"2026-04-09T14:00:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4362\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-jttar2pp9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085798-c5gbvz1io\"}]","start":"2026-02-19T20:45:00.000Z","end":"2026-02-19T21:00:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3295\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-59q3obajk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085822-zwvucfk9u\"}]","start":"2026-03-20T12:00:00.000Z","end":"2026-03-20T12:15:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6272\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-k000gh386","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085888-a989i8ah6\"}]","start":"2026-06-08T18:00:00.000Z","end":"2026-06-08T18:15:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5168\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-l5rx3hs1o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085845-zjsoljtjj\"}]","start":"2026-04-17T14:15:00.000Z","end":"2026-04-17T14:30:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8784\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-smx9r23zz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085877-81qfj8iiv\"}]","start":"2026-05-25T14:45:00.000Z","end":"2026-05-25T15:00:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3170\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-b50630ef2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085777-5r2bfy4d8\"}]","start":"2026-01-26T14:00:00.000Z","end":"2026-01-26T14:15:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3107\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-cwbnoo04j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085888-rh4113jm4\"}]","start":"2026-06-08T16:45:00.000Z","end":"2026-06-08T17:00:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3044\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-1ex9rkxuc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085790-3gr8t30re\"}]","start":"2026-02-10T18:00:00.000Z","end":"2026-02-10T18:15:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6983\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-nsgblpusd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085819-lea8jekg0\"}]","start":"2026-03-17T13:00:00.000Z","end":"2026-03-17T13:15:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-5497\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-m6025oja2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085761-lmjww1ini\"}]","start":"2026-01-07T17:45:00.000Z","end":"2026-01-07T18:00:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4440\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-gz0ok5f1g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085872-b35md31sm\"}]","start":"2026-05-19T18:15:00.000Z","end":"2026-05-19T18:30:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2160\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086465-adtyu6kfg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085887-4fyv0kxnd\"}]","start":"2026-06-05T15:45:00.000Z","end":"2026-06-05T16:00:00.000Z","created":"2025-12-12T05:24:46.465Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7120\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-jxoxta2lq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085801-sie3yltx6\"}]","start":"2026-02-23T20:00:00.000Z","end":"2026-02-23T20:15:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6194\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-emh91u8gd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085875-hzt2d9l6n\"}]","start":"2026-05-21T17:15:00.000Z","end":"2026-05-21T17:30:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-1192\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-vah8og77r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085834-nqpa4ljj2\"}]","start":"2026-04-03T17:15:00.000Z","end":"2026-04-03T17:30:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4318\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-y4xgvm6n7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085840-hu5k11pin\"}]","start":"2026-04-10T13:30:00.000Z","end":"2026-04-10T13:45:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8885\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-pacai9tze","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085746-5mwq94zri\"}]","start":"2025-12-18T20:45:00.000Z","end":"2025-12-18T21:00:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6735\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-m9i5kvf2y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085741-jze5fpxe9\"}]","start":"2025-12-15T15:30:00.000Z","end":"2025-12-15T15:45:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9254\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-8wgm2j1jn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085870-y9c5b53y7\"}]","start":"2026-05-15T16:45:00.000Z","end":"2026-05-15T17:00:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5947\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-zvjkifgv8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085817-tyaid2zo8\"}]","start":"2026-03-16T12:00:00.000Z","end":"2026-03-16T12:15:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2047\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-fva1zpome","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085755-dkd3wcg3b\"}]","start":"2025-12-30T18:30:00.000Z","end":"2025-12-30T18:45:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4947\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-65bju230x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085757-nizbu66tf\"}]","start":"2026-01-01T14:15:00.000Z","end":"2026-01-01T14:30:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-5929\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-zrrt9zz1t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085813-sngh2eg5p\"}]","start":"2026-03-09T19:15:00.000Z","end":"2026-03-09T19:30:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6736\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-o3jhbpaa8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085815-kpsfctk57\"}]","start":"2026-03-12T13:45:00.000Z","end":"2026-03-12T14:00:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5146\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086466-uzozmshnz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085877-v9oeax5u7\"}]","start":"2026-05-25T16:15:00.000Z","end":"2026-05-25T16:30:00.000Z","created":"2025-12-12T05:24:46.466Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5232\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-d6r9gsgwg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085803-oplck61ba\"}]","start":"2026-02-26T16:45:00.000Z","end":"2026-02-26T17:00:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1458\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-40ul97tod","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085851-gf4cdi1x3\"}]","start":"2026-04-23T17:15:00.000Z","end":"2026-04-23T17:30:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3906\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-jcy716ypz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085801-z9ypeh5us\"}]","start":"2026-02-23T17:45:00.000Z","end":"2026-02-23T18:00:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3936\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-f9evmk5l8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085771-sz917e8fb\"}]","start":"2026-01-19T20:30:00.000Z","end":"2026-01-19T20:45:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4947\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-nttgz20yg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085877-q1vs8dv3r\"}]","start":"2026-05-25T19:45:00.000Z","end":"2026-05-25T20:00:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7961\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-zj9kz6b42","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085788-4ytrxytsy\"}]","start":"2026-02-06T16:15:00.000Z","end":"2026-02-06T16:30:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1760\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-kwtmxwbsm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085820-92rvqfml8\"}]","start":"2026-03-18T13:45:00.000Z","end":"2026-03-18T14:00:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8139\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-8j6yjuf97","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085758-1h2b9sddl\"}]","start":"2026-01-02T18:15:00.000Z","end":"2026-01-02T18:30:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-1414\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-tgyhppyls","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085771-x2thn8vso\"}]","start":"2026-01-19T19:15:00.000Z","end":"2026-01-19T19:30:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1182\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-jopof0epb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085841-pxu5si53i\"}]","start":"2026-04-13T14:45:00.000Z","end":"2026-04-13T15:00:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8231\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-plxay65pz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085754-s1x9do84r\"}]","start":"2025-12-29T20:15:00.000Z","end":"2025-12-29T20:30:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4472\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-2swup2bxk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085875-7uvpudqc3\"}]","start":"2026-05-21T17:45:00.000Z","end":"2026-05-21T18:00:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5022\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086467-x7qa2c2n9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085820-kchl7am9e\"}]","start":"2026-03-17T16:00:00.000Z","end":"2026-03-17T16:15:00.000Z","created":"2025-12-12T05:24:46.467Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1131\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-g2b3k6e5n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085803-h7jp3qgd1\"}]","start":"2026-02-25T19:00:00.000Z","end":"2026-02-25T19:15:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8895\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-wfs3bo9ds","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085839-yl4pevpg2\"}]","start":"2026-04-09T16:00:00.000Z","end":"2026-04-09T16:15:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1477\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-vlhtz7r39","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085759-hwy6fh1l8\"}]","start":"2026-01-05T17:15:00.000Z","end":"2026-01-05T17:30:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7376\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-erds58qlw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085780-0jwu2r3p4\"}]","start":"2026-01-28T17:15:00.000Z","end":"2026-01-28T17:30:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8633\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-es8fg27f9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085751-cobf79q7y\"}]","start":"2025-12-24T17:30:00.000Z","end":"2025-12-24T17:45:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1963\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-6vtsp4f7v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085820-d6zlvznx6\"}]","start":"2026-03-17T18:15:00.000Z","end":"2026-03-17T18:30:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3449\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-9xtrv1i0t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085794-tdqpew2vw\"}]","start":"2026-02-13T19:00:00.000Z","end":"2026-02-13T19:15:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8853\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-8nd00yzoj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085754-25tznp53i\"}]","start":"2025-12-30T16:30:00.000Z","end":"2025-12-30T16:45:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7515\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-m1uvx39yy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085816-ikipv6mgt\"}]","start":"2026-03-13T13:30:00.000Z","end":"2026-03-13T13:45:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3272\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-punia5nq9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085877-3boohmtqy\"}]","start":"2026-05-25T18:00:00.000Z","end":"2026-05-25T18:15:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5899\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-vnxqfjnlj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085864-xf7tvv2vw\"}]","start":"2026-05-08T13:30:00.000Z","end":"2026-05-08T13:45:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2393\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086468-iuhz2myf3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085810-vnwojjc1v\"}]","start":"2026-03-06T17:00:00.000Z","end":"2026-03-06T17:15:00.000Z","created":"2025-12-12T05:24:46.468Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-7236\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-m2vpo3uvw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085772-s2tlm3tx8\"}]","start":"2026-01-20T15:30:00.000Z","end":"2026-01-20T15:45:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5433\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-b9kp7s3kq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085806-gc3ydvr2v\"}]","start":"2026-03-02T15:00:00.000Z","end":"2026-03-02T15:15:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5107\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-2ool2fpzp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085773-ua9rzds3n\"}]","start":"2026-01-21T17:30:00.000Z","end":"2026-01-21T17:45:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5548\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-16zgi29fm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085805-v4398vq37\"}]","start":"2026-02-27T19:30:00.000Z","end":"2026-02-27T19:45:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1711\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-n4d00wwv1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085851-lh7ekn8ma\"}]","start":"2026-04-23T13:45:00.000Z","end":"2026-04-23T14:00:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6013\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-2gkcqxccr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085801-3gzs03qrz\"}]","start":"2026-02-23T19:30:00.000Z","end":"2026-02-23T19:45:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6666\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-gsf7ytsri","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085787-yy2khc9y5\"}]","start":"2026-02-06T13:00:00.000Z","end":"2026-02-06T13:15:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4791\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-qo9b26rwc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085807-dixu9a2ng\"}]","start":"2026-03-02T17:45:00.000Z","end":"2026-03-02T18:00:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9881\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-sao9s9j3u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085757-7a9d64c2n\"}]","start":"2025-12-31T20:00:00.000Z","end":"2025-12-31T20:15:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8648\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-lgb8pu2fa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085889-1xmbwp7r8\"}]","start":"2026-06-08T19:00:00.000Z","end":"2026-06-08T19:15:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7301\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-sm9px6czd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085824-liw6eazm0\"}]","start":"2026-03-23T17:45:00.000Z","end":"2026-03-23T18:00:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9543\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-sxos5sppe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085888-uom3f49vo\"}]","start":"2026-06-05T17:00:00.000Z","end":"2026-06-05T17:15:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5871\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086469-anfr0qqh2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085767-x1j80pbv3\"}]","start":"2026-01-14T20:15:00.000Z","end":"2026-01-14T20:30:00.000Z","created":"2025-12-12T05:24:46.469Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-5388\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-20xgvh8pm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-vsc72as0k\"}]","start":"2026-04-06T18:45:00.000Z","end":"2026-04-06T19:00:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-1635\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-ycvdbgb8u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085865-k0wlc1dz7\"}]","start":"2026-05-08T17:45:00.000Z","end":"2026-05-08T18:00:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9333\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-zfrbhmbyi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085820-p5p8hdbvx\"}]","start":"2026-03-17T15:45:00.000Z","end":"2026-03-17T16:00:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9003\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-i4kidcerl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085818-g0q72lxgz\"}]","start":"2026-03-16T15:30:00.000Z","end":"2026-03-16T15:45:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1723\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-czwg9yhmt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085802-ie6m554vb\"}]","start":"2026-02-25T16:30:00.000Z","end":"2026-02-25T16:45:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7094\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-gkkj30c4m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085800-u53ux20gq\"}]","start":"2026-02-23T15:15:00.000Z","end":"2026-02-23T15:30:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5290\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-ynbvqz1gs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-tsvonbmpy\"}]","start":"2026-04-06T16:45:00.000Z","end":"2026-04-06T17:00:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-8383\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-7fhdfdn56","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085801-wur9e58qt\"}]","start":"2026-02-23T19:15:00.000Z","end":"2026-02-23T19:30:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5228\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-lm388zbae","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085825-m237zkyda\"}]","start":"2026-03-23T19:15:00.000Z","end":"2026-03-23T19:30:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-3075\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-nkpu1ld4t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085745-c0xkznh1z\"}]","start":"2025-12-18T17:15:00.000Z","end":"2025-12-18T17:30:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5361\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-fenc73hki","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085823-qd70e5f5p\"}]","start":"2026-03-20T18:45:00.000Z","end":"2026-03-20T19:00:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1666\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-hkr0xvrma","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085838-888tghadk\"}]","start":"2026-04-08T16:15:00.000Z","end":"2026-04-08T16:30:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5713\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-bjkgnt87e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085793-5me4mp055\"}]","start":"2026-02-13T15:30:00.000Z","end":"2026-02-13T15:45:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5079\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086470-qjbphsdht","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085854-3531z9ncj\"}]","start":"2026-04-28T13:45:00.000Z","end":"2026-04-28T14:00:00.000Z","created":"2025-12-12T05:24:46.470Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5297\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-2jvi7as9s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085770-6155whxzn\"}]","start":"2026-01-16T19:15:00.000Z","end":"2026-01-16T19:30:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9395\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-cnljx66s7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085861-ogrs4vzhl\"}]","start":"2026-05-05T19:45:00.000Z","end":"2026-05-05T20:00:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5805\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-ot4dtm570","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085757-uyzv81mk7\"}]","start":"2025-12-31T19:30:00.000Z","end":"2025-12-31T19:45:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2371\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-he56rtg4y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085838-jl38ch7nu\"}]","start":"2026-04-08T12:45:00.000Z","end":"2026-04-08T13:00:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5211\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-bvzfgwm77","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085838-uxqwd6hqc\"}]","start":"2026-04-08T14:30:00.000Z","end":"2026-04-08T14:45:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7787\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-6vn131wjz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085880-ftgcntc9s\"}]","start":"2026-05-28T15:45:00.000Z","end":"2026-05-28T16:00:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-3496\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-baxhxof27","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085813-b9yiyqxfg\"}]","start":"2026-03-10T15:45:00.000Z","end":"2026-03-10T16:00:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8951\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-4br6k0q6i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-7ml36liyc\"}]","start":"2026-01-09T13:30:00.000Z","end":"2026-01-09T13:45:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3538\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-2ivkjt4wm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085797-k900v0kx4\"}]","start":"2026-02-18T15:45:00.000Z","end":"2026-02-18T16:00:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8540\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-dnkms0zro","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085808-338tgh1jz\"}]","start":"2026-03-03T18:45:00.000Z","end":"2026-03-03T19:00:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2171\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-1bfb1rw0m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085792-6lswph5cj\"}]","start":"2026-02-12T16:30:00.000Z","end":"2026-02-12T16:45:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8210\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-ozdvi2kal","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085838-fngwrma89\"}]","start":"2026-04-08T18:45:00.000Z","end":"2026-04-08T19:00:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5553\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086471-b8el2z3ie","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085854-s1bkk1j7q\"}]","start":"2026-04-28T16:45:00.000Z","end":"2026-04-28T17:00:00.000Z","created":"2025-12-12T05:24:46.471Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9142\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-zysbd48q6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085741-ndhy75djz\"}]","start":"2025-12-12T20:15:00.000Z","end":"2025-12-12T20:30:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8307\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-c3cj0s0i6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085809-mrh7yrek9\"}]","start":"2026-03-05T13:00:00.000Z","end":"2026-03-05T13:15:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8153\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-bzahrtzuw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085860-egz0f75nn\"}]","start":"2026-05-05T13:15:00.000Z","end":"2026-05-05T13:30:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1671\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-e9mdyg9fy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085808-6sfmmhrhw\"}]","start":"2026-03-03T18:00:00.000Z","end":"2026-03-03T18:15:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1110\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-8sfxgmc9l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085804-gwct4scd1\"}]","start":"2026-02-27T17:15:00.000Z","end":"2026-02-27T17:30:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5542\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-du8hhghn3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085864-uafn59eec\"}]","start":"2026-05-08T13:15:00.000Z","end":"2026-05-08T13:30:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8881\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-hi2ra9hyo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085864-ov838u5y8\"}]","start":"2026-05-08T13:00:00.000Z","end":"2026-05-08T13:15:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9977\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-l4tnla635","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085853-2akwb454h\"}]","start":"2026-04-27T13:15:00.000Z","end":"2026-04-27T13:30:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-7417\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086472-n2tb8fktx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085776-q0u78g5gd\"}]","start":"2026-01-22T20:30:00.000Z","end":"2026-01-22T20:45:00.000Z","created":"2025-12-12T05:24:46.472Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5477\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086474-dl1ehs79d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085767-gr7cazwfk\"}]","start":"2026-01-14T15:45:00.000Z","end":"2026-01-14T16:00:00.000Z","created":"2025-12-12T05:24:46.474Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9976\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.474Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086474-u04kz47o6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085742-rlku3oe43\"}]","start":"2025-12-15T20:15:00.000Z","end":"2025-12-15T20:30:00.000Z","created":"2025-12-12T05:24:46.474Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5896\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.474Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086474-rw841m24q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085761-ocmfkpzdg\"}]","start":"2026-01-07T15:30:00.000Z","end":"2026-01-07T15:45:00.000Z","created":"2025-12-12T05:24:46.474Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7566\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.474Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-5vkpgogev","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085865-6bvg81us6\"}]","start":"2026-05-11T12:15:00.000Z","end":"2026-05-11T12:30:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2221\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-sdpf2p4py","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085823-y8qwbjh8d\"}]","start":"2026-03-20T18:30:00.000Z","end":"2026-03-20T18:45:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1335\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-fs1xaaga2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-q1iyuh7sp\"}]","start":"2026-01-02T16:15:00.000Z","end":"2026-01-02T16:30:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9145\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-b64uneo6u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085867-vgwf0gjdx\"}]","start":"2026-05-13T17:45:00.000Z","end":"2026-05-13T18:00:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5172\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-yy40y56db","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085795-fanarktea\"}]","start":"2026-02-16T14:30:00.000Z","end":"2026-02-16T14:45:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7414\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-b1y9e935u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085790-xfv2ar59n\"}]","start":"2026-02-10T16:30:00.000Z","end":"2026-02-10T16:45:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8824\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-sai8pih1m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085754-v171mivm7\"}]","start":"2025-12-30T17:45:00.000Z","end":"2025-12-30T18:00:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-6545\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-umey5gk8q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085886-jzowv1u44\"}]","start":"2026-06-05T12:00:00.000Z","end":"2026-06-05T12:15:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9778\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-npyx5x1te","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085887-qpt4oeynw\"}]","start":"2026-06-05T14:00:00.000Z","end":"2026-06-05T14:15:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4879\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-h4botft87","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085845-gb6dwa616\"}]","start":"2026-04-17T12:15:00.000Z","end":"2026-04-17T12:30:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8678\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-9ej388d0z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-j0y32kcpw\"}]","start":"2026-05-11T15:00:00.000Z","end":"2026-05-11T15:15:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9672\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-rcd7xaodf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085864-olplst6ox\"}]","start":"2026-05-08T15:30:00.000Z","end":"2026-05-08T15:45:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2798\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086475-05imj2yq3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085840-678vcbqqh\"}]","start":"2026-04-13T12:30:00.000Z","end":"2026-04-13T12:45:00.000Z","created":"2025-12-12T05:24:46.475Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2466\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-xwc3hxmm4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085815-u47lez9ty\"}]","start":"2026-03-11T19:45:00.000Z","end":"2026-03-11T20:00:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-9113\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-woa31hvs7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-3ufcg97fi\"}]","start":"2026-01-09T15:00:00.000Z","end":"2026-01-09T15:15:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9278\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-qcw2v7xfv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085870-onwcwct7o\"}]","start":"2026-05-15T13:15:00.000Z","end":"2026-05-15T13:30:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7839\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-xg7wl3qdw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085882-tqk1nrnww\"}]","start":"2026-06-01T13:30:00.000Z","end":"2026-06-01T13:45:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-1111\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-l0ae39u9k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085887-z9g49vvo9\"}]","start":"2026-06-05T12:15:00.000Z","end":"2026-06-05T12:30:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9959\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-tpb4s86gf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085889-gxl34xbbo\"}]","start":"2026-06-09T13:45:00.000Z","end":"2026-06-09T14:00:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6258\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-4yibmourv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085886-rctw9aueb\"}]","start":"2026-06-04T19:30:00.000Z","end":"2026-06-04T19:45:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-8386\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-wfeg4t1al","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085875-lk829rx80\"}]","start":"2026-05-21T15:00:00.000Z","end":"2026-05-21T15:15:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6965\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-2xeh4gr27","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085780-nvekf1j54\"}]","start":"2026-01-28T18:45:00.000Z","end":"2026-01-28T19:00:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4960\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-5nobqgeuw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085845-ka3oedf5q\"}]","start":"2026-04-17T15:00:00.000Z","end":"2026-04-17T15:15:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2139\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-tsqbqueo0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085865-p3e56qsy8\"}]","start":"2026-05-11T14:30:00.000Z","end":"2026-05-11T14:45:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6449\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-vt6h41c5v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085747-xopumgtl5\"}]","start":"2025-12-19T17:30:00.000Z","end":"2025-12-19T17:45:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1163\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086476-n7tpv94bf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085742-b9wvh4nnd\"}]","start":"2025-12-15T20:30:00.000Z","end":"2025-12-15T20:45:00.000Z","created":"2025-12-12T05:24:46.476Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4423\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-zj6sp17qw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085844-s49m0gu14\"}]","start":"2026-04-15T18:15:00.000Z","end":"2026-04-15T18:30:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-6768\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-2o3yt0vjw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085820-pufrjw5u3\"}]","start":"2026-03-17T17:00:00.000Z","end":"2026-03-17T17:15:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-4839\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-wfr49wpff","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085804-p8lhw0bco\"}]","start":"2026-02-26T20:00:00.000Z","end":"2026-02-26T20:15:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2733\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-p0gtrds1q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085745-bxp7ig8gz\"}]","start":"2025-12-18T13:45:00.000Z","end":"2025-12-18T14:00:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9083\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-jr1dhj6r7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085770-x51i54qka\"}]","start":"2026-01-19T14:15:00.000Z","end":"2026-01-19T14:30:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3790\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-bfhfdiw3o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085823-0sywk2z2x\"}]","start":"2026-03-23T14:30:00.000Z","end":"2026-03-23T14:45:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1443\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-t04jqywdn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085755-umjcyllzc\"}]","start":"2025-12-31T14:45:00.000Z","end":"2025-12-31T15:00:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-9354\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-r8yt2mqm7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085844-7niimbmtx\"}]","start":"2026-04-15T17:45:00.000Z","end":"2026-04-15T18:00:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4052\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-pdt0l4bbi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085803-rgnkd0k1p\"}]","start":"2026-02-25T20:00:00.000Z","end":"2026-02-25T20:15:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3289\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-vvrcxwk97","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085855-2no90pl1w\"}]","start":"2026-04-29T12:30:00.000Z","end":"2026-04-29T12:45:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5690\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-4u4epqpoo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085767-22ejvkxoq\"}]","start":"2026-01-14T18:30:00.000Z","end":"2026-01-14T18:45:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-2788\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-yred63h8s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085746-hvxnlwjs0\"}]","start":"2025-12-18T20:30:00.000Z","end":"2025-12-18T20:45:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2062\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-0jwwktrww","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085791-b2ou303ae\"}]","start":"2026-02-11T19:30:00.000Z","end":"2026-02-11T19:45:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9364\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086477-0ckf22isa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085777-tuz6q273l\"}]","start":"2026-01-23T15:15:00.000Z","end":"2026-01-23T15:30:00.000Z","created":"2025-12-12T05:24:46.477Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7399\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-1ykxji9d9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085817-5e4ph9yn1\"}]","start":"2026-03-16T12:30:00.000Z","end":"2026-03-16T12:45:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-9403\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-253kxoij4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085884-n3a2nwb1r\"}]","start":"2026-06-03T12:45:00.000Z","end":"2026-06-03T13:00:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5234\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-qncf6py1y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085886-3xplrtxp7\"}]","start":"2026-06-04T19:45:00.000Z","end":"2026-06-04T20:00:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1272\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-nuj3ctamb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085883-xiticv3wn\"}]","start":"2026-06-01T17:30:00.000Z","end":"2026-06-01T17:45:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3997\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-i4z4tk1ak","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085838-cekzmx1o6\"}]","start":"2026-04-08T15:30:00.000Z","end":"2026-04-08T15:45:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5995\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-4p41rb1c4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085889-9mr86wks6\"}]","start":"2026-06-09T17:30:00.000Z","end":"2026-06-09T17:45:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3724\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-19f92vd9g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085854-of3bytzbc\"}]","start":"2026-04-28T14:00:00.000Z","end":"2026-04-28T14:15:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5282\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-c95tcpi40","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085788-qg0vrk1gc\"}]","start":"2026-02-06T16:45:00.000Z","end":"2026-02-06T17:00:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6342\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-qhiwpi5wz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085780-cg4i4oq12\"}]","start":"2026-01-29T15:00:00.000Z","end":"2026-01-29T15:15:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5055\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-t34nj995i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085795-f7ovnlo68\"}]","start":"2026-02-16T14:15:00.000Z","end":"2026-02-16T14:30:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4953\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-4you4ry42","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085847-s7i18md4y\"}]","start":"2026-04-21T13:15:00.000Z","end":"2026-04-21T13:30:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-8138\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-9y3vx7nl0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085851-j16dmnbjh\"}]","start":"2026-04-23T15:15:00.000Z","end":"2026-04-23T15:30:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-8046\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086478-kll0u8312","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085852-1cfe6kqu9\"}]","start":"2026-04-24T13:45:00.000Z","end":"2026-04-24T14:00:00.000Z","created":"2025-12-12T05:24:46.478Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5556\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-ayeczj7k7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085821-ilhmk78q6\"}]","start":"2026-03-18T15:30:00.000Z","end":"2026-03-18T15:45:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5858\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-n0e9lqfkd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085824-kqg6sane3\"}]","start":"2026-03-23T18:00:00.000Z","end":"2026-03-23T18:15:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2037\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-v7cu5qumb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085792-tcbhdn6if\"}]","start":"2026-02-12T20:00:00.000Z","end":"2026-02-12T20:15:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3620\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-0mbnr8bqk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085784-1b4tuwmi5\"}]","start":"2026-02-03T17:30:00.000Z","end":"2026-02-03T17:45:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4540\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-ua958svzr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085788-1vuzswkq3\"}]","start":"2026-02-06T18:00:00.000Z","end":"2026-02-06T18:15:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2490\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-bc7r3tzdz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085740-31ujt82rg\"}]","start":"2025-12-12T13:00:00.000Z","end":"2025-12-12T13:15:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9922\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-fg0rfmd02","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085878-2rxr915os\"}]","start":"2026-05-26T18:45:00.000Z","end":"2026-05-26T19:00:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5704\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-smyc6y6w2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085871-c6syrg8ff\"}]","start":"2026-05-19T12:00:00.000Z","end":"2026-05-19T12:15:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8606\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-2n5p0xb1v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085791-0kzspu1r2\"}]","start":"2026-02-11T17:30:00.000Z","end":"2026-02-11T17:45:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1132\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-pwnh1foa0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085753-6eylpki7k\"}]","start":"2025-12-29T14:00:00.000Z","end":"2025-12-29T14:15:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4668\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-uq3jo7ie7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085821-vkwn858gu\"}]","start":"2026-03-18T16:45:00.000Z","end":"2026-03-18T17:00:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9872\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-pofl5u8bd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085839-4l7a653wz\"}]","start":"2026-04-09T15:30:00.000Z","end":"2026-04-09T15:45:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6660\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086479-li0k3179m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085779-r1usfxvno\"}]","start":"2026-01-28T14:00:00.000Z","end":"2026-01-28T14:15:00.000Z","created":"2025-12-12T05:24:46.479Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5231\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-j2eblwhij","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085888-pzzljzol3\"}]","start":"2026-06-05T18:00:00.000Z","end":"2026-06-05T18:15:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2393\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-fvxjdoq1f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085866-95kkrzi7c\"}]","start":"2026-05-12T16:45:00.000Z","end":"2026-05-12T17:00:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6353\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-rkgg5iewz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085817-m7hi3afjl\"}]","start":"2026-03-13T16:15:00.000Z","end":"2026-03-13T16:30:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6449\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-71e6x4twr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085802-85l1j41g3\"}]","start":"2026-02-24T19:15:00.000Z","end":"2026-02-24T19:30:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5794\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-sqkwpps84","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085810-jd66hpwyj\"}]","start":"2026-03-06T14:15:00.000Z","end":"2026-03-06T14:30:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-7217\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-6y8zw718j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085857-v0bl21b75\"}]","start":"2026-04-30T15:30:00.000Z","end":"2026-04-30T15:45:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9359\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-ka02xkx0z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085767-xvjwi4mrp\"}]","start":"2026-01-14T16:15:00.000Z","end":"2026-01-14T16:30:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5025\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-v0g54wnja","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085824-138fdi74p\"}]","start":"2026-03-23T18:30:00.000Z","end":"2026-03-23T18:45:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3436\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-0bjsnniiq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085786-uc7dcfze3\"}]","start":"2026-02-05T20:45:00.000Z","end":"2026-02-05T21:00:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2440\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-e7t8carn3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085873-3t6z7df9v\"}]","start":"2026-05-20T17:30:00.000Z","end":"2026-05-20T17:45:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2782\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-0qwpl0nki","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085791-munuwjuzn\"}]","start":"2026-02-11T18:30:00.000Z","end":"2026-02-11T18:45:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4266\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-z1nc8h9ok","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085875-56wlwdyy9\"}]","start":"2026-05-21T15:15:00.000Z","end":"2026-05-21T15:30:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4423\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086480-9woh67j5s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085833-q3s17wzrn\"}]","start":"2026-04-02T15:45:00.000Z","end":"2026-04-02T16:00:00.000Z","created":"2025-12-12T05:24:46.480Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1971\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-v3m6eheme","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085876-vpm64l9mk\"}]","start":"2026-05-22T12:45:00.000Z","end":"2026-05-22T13:00:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4614\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-4jkxee8zf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085744-55fix9mi0\"}]","start":"2025-12-17T15:45:00.000Z","end":"2025-12-17T16:00:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7200\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-8xvnt3gnm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085794-twaxrudq4\"}]","start":"2026-02-13T18:45:00.000Z","end":"2026-02-13T19:00:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4192\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-e60vhmk70","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085809-2pawukghl\"}]","start":"2026-03-04T20:15:00.000Z","end":"2026-03-04T20:30:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5877\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-wl1h08uwi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085879-k2dl1muk2\"}]","start":"2026-05-27T18:15:00.000Z","end":"2026-05-27T18:30:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3161\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-8b010zvww","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085791-fotzu4ddi\"}]","start":"2026-02-11T16:45:00.000Z","end":"2026-02-11T17:00:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1218\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-55pm9dusc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085754-cwgl7pgto\"}]","start":"2025-12-30T15:15:00.000Z","end":"2025-12-30T15:30:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5368\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-ksw3c25iz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085774-zo000hkpo\"}]","start":"2026-01-22T13:30:00.000Z","end":"2026-01-22T13:45:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9771\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-rvbuj74yh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085845-u3rw9mqnu\"}]","start":"2026-04-16T16:45:00.000Z","end":"2026-04-16T17:00:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6615\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-v4ji4jfdl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085885-ew9gsy97n\"}]","start":"2026-06-04T16:15:00.000Z","end":"2026-06-04T16:30:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3218\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-hjdxy9rgy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085797-mqqxe1obg\"}]","start":"2026-02-18T17:00:00.000Z","end":"2026-02-18T17:15:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8653\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-7gbwz6nhq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085838-wnsomrl2s\"}]","start":"2026-04-08T12:15:00.000Z","end":"2026-04-08T12:30:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8859\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086481-yupri1was","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085747-8a7v6ppan\"}]","start":"2025-12-22T14:00:00.000Z","end":"2025-12-22T14:15:00.000Z","created":"2025-12-12T05:24:46.481Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7397\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-xuzu3cqru","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085827-wfwxeeyre\"}]","start":"2026-03-26T13:15:00.000Z","end":"2026-03-26T13:30:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3395\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-1t2q1nr9t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085772-dqew7aq8p\"}]","start":"2026-01-20T15:45:00.000Z","end":"2026-01-20T16:00:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-3563\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-09r830ovk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085860-7c4535pnn\"}]","start":"2026-05-05T15:00:00.000Z","end":"2026-05-05T15:15:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-8819\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-q43tjv6m1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085784-0lzvxjo6l\"}]","start":"2026-02-03T13:45:00.000Z","end":"2026-02-03T14:00:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5072\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-o5k0j7rs3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085873-vsdyl0l6f\"}]","start":"2026-05-20T19:30:00.000Z","end":"2026-05-20T19:45:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7965\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-1axmq7a35","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085791-47svhwrqo\"}]","start":"2026-02-11T18:15:00.000Z","end":"2026-02-11T18:30:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9572\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-5o4429gdu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085885-9roxqwg0q\"}]","start":"2026-06-04T13:30:00.000Z","end":"2026-06-04T13:45:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5438\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-e5fd3p0u9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085796-aid6yq275\"}]","start":"2026-02-17T17:30:00.000Z","end":"2026-02-17T17:45:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2520\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-l3h027g6v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085876-uinn338bu\"}]","start":"2026-05-22T16:00:00.000Z","end":"2026-05-22T16:15:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-4406\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-klzgzynej","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085840-uvk066p22\"}]","start":"2026-04-10T18:15:00.000Z","end":"2026-04-10T18:30:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3292\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-tpqgq9648","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085884-d17s83esy\"}]","start":"2026-06-02T18:45:00.000Z","end":"2026-06-02T19:00:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6938\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-zhd3pkhn2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085873-5veqmu27l\"}]","start":"2026-05-20T19:15:00.000Z","end":"2026-05-20T19:30:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9364\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086482-lc7z5oqlh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-dt2hmz4xg\"}]","start":"2026-01-09T15:15:00.000Z","end":"2026-01-09T15:30:00.000Z","created":"2025-12-12T05:24:46.482Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5563\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086483-79wm2myjr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085883-xfm53c80p\"}]","start":"2026-06-01T14:30:00.000Z","end":"2026-06-01T14:45:00.000Z","created":"2025-12-12T05:24:46.483Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8213\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086483-lonfl743y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085755-w67es14af\"}]","start":"2025-12-30T20:45:00.000Z","end":"2025-12-30T21:00:00.000Z","created":"2025-12-12T05:24:46.483Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-7625\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086483-kvruyo5de","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085840-8cwxbz2ej\"}]","start":"2026-04-10T19:00:00.000Z","end":"2026-04-10T19:15:00.000Z","created":"2025-12-12T05:24:46.483Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7107\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086483-armxp3z2c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085745-644xm0kf3\"}]","start":"2025-12-18T14:15:00.000Z","end":"2025-12-18T14:30:00.000Z","created":"2025-12-12T05:24:46.483Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6392\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086483-uasq938oa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085812-zbgq8vyy1\"}]","start":"2026-03-09T17:00:00.000Z","end":"2026-03-09T17:15:00.000Z","created":"2025-12-12T05:24:46.483Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1470\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086485-xovsn0qeg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085785-rs9p7ep6x\"}]","start":"2026-02-04T13:00:00.000Z","end":"2026-02-04T13:15:00.000Z","created":"2025-12-12T05:24:46.485Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2900\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086485-vggnw2jym","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-b75zvipk8\"}]","start":"2025-12-25T20:30:00.000Z","end":"2025-12-25T20:45:00.000Z","created":"2025-12-12T05:24:46.485Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-2277\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086485-7pl6vzrcq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085742-zdkiggp8r\"}]","start":"2025-12-16T13:45:00.000Z","end":"2025-12-16T14:00:00.000Z","created":"2025-12-12T05:24:46.485Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-6136\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086485-cm4jr6l5p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085769-d0t575m6u\"}]","start":"2026-01-15T20:00:00.000Z","end":"2026-01-15T20:15:00.000Z","created":"2025-12-12T05:24:46.485Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-3387\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086485-sarkzum3g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085833-cfnyxixq5\"}]","start":"2026-04-02T14:30:00.000Z","end":"2026-04-02T14:45:00.000Z","created":"2025-12-12T05:24:46.485Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5260\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086485-aviee0be2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085795-40puce4ep\"}]","start":"2026-02-16T15:30:00.000Z","end":"2026-02-16T15:45:00.000Z","created":"2025-12-12T05:24:46.485Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2353\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086485-y33ahpsp4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085788-pul3sttzi\"}]","start":"2026-02-06T20:15:00.000Z","end":"2026-02-06T20:30:00.000Z","created":"2025-12-12T05:24:46.485Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5302\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086485-7evdzuv5i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085788-5jp36xdha\"}]","start":"2026-02-06T19:15:00.000Z","end":"2026-02-06T19:30:00.000Z","created":"2025-12-12T05:24:46.485Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5801\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-7znv0vdwh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085748-lpapaykfl\"}]","start":"2025-12-22T18:00:00.000Z","end":"2025-12-22T18:15:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3284\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-rxzysvtcj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085883-i333b0fzv\"}]","start":"2026-06-02T12:00:00.000Z","end":"2026-06-02T12:15:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1095\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-pme14awn3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085871-rt2arvnde\"}]","start":"2026-05-18T17:15:00.000Z","end":"2026-05-18T17:30:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2983\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-fc7qc3tfz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085778-p2zw6v2nf\"}]","start":"2026-01-27T13:00:00.000Z","end":"2026-01-27T13:15:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8413\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-sucmykh0g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085794-0rhsczdaf\"}]","start":"2026-02-13T20:45:00.000Z","end":"2026-02-13T21:00:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3828\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-d8owv3wdg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085864-tz2ldeqdl\"}]","start":"2026-05-08T14:15:00.000Z","end":"2026-05-08T14:30:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-7891\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-1chtu9dwh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085870-t0z8zlben\"}]","start":"2026-05-15T16:15:00.000Z","end":"2026-05-15T16:30:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-4340\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-0ekjfingk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085858-7bm4eq1n4\"}]","start":"2026-05-01T14:30:00.000Z","end":"2026-05-01T14:45:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-3747\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-27mklmijs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085866-7q196asbw\"}]","start":"2026-05-12T12:30:00.000Z","end":"2026-05-12T12:45:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6044\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-2zkrutomc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085829-qqjtpdewn\"}]","start":"2026-03-27T18:15:00.000Z","end":"2026-03-27T18:30:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6837\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-wgmsdzq9e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085867-h5janc2r1\"}]","start":"2026-05-13T15:45:00.000Z","end":"2026-05-13T16:00:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3839\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-3nnokuiqa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085861-um7xqi876\"}]","start":"2026-05-05T17:30:00.000Z","end":"2026-05-05T17:45:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6173\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086486-j3t1cfegt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085810-uztym8s1f\"}]","start":"2026-03-05T20:15:00.000Z","end":"2026-03-05T20:30:00.000Z","created":"2025-12-12T05:24:46.486Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2228\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-mrmu9hgtk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085760-3ibyjp94y\"}]","start":"2026-01-05T19:15:00.000Z","end":"2026-01-05T19:30:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4293\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-gjd4d1ffg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085884-l9gnqcg1d\"}]","start":"2026-06-03T16:15:00.000Z","end":"2026-06-03T16:30:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7521\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-4uk7on0ce","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085867-bgy920vko\"}]","start":"2026-05-13T15:30:00.000Z","end":"2026-05-13T15:45:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7970\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-ow0vqapop","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085796-akwrtrtm6\"}]","start":"2026-02-17T14:30:00.000Z","end":"2026-02-17T14:45:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-5749\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-xmh3tyw9i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085798-j8y3d7e3y\"}]","start":"2026-02-20T13:30:00.000Z","end":"2026-02-20T13:45:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8188\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-m11vvayki","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085780-em1ntdvrr\"}]","start":"2026-01-29T13:00:00.000Z","end":"2026-01-29T13:15:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1777\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-40iuag29k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085841-7be7xf0tt\"}]","start":"2026-04-13T19:00:00.000Z","end":"2026-04-13T19:15:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9406\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-pfxtmwfby","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085751-h5hpp32g7\"}]","start":"2025-12-24T20:15:00.000Z","end":"2025-12-24T20:30:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7581\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-x2472xo20","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085860-8spmuj9lt\"}]","start":"2026-05-04T17:15:00.000Z","end":"2026-05-04T17:30:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4592\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-npjm0upt5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085850-0xcpuga9a\"}]","start":"2026-04-22T15:15:00.000Z","end":"2026-04-22T15:30:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8837\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-xwpvk4rw6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085888-wcsmp0dtg\"}]","start":"2026-06-08T17:15:00.000Z","end":"2026-06-08T17:30:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1785\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-mrd2aiu2g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085827-15eoqpgxt\"}]","start":"2026-03-26T13:00:00.000Z","end":"2026-03-26T13:15:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4767\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086487-4i6ik745o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085760-5r9b0qg93\"}]","start":"2026-01-05T20:15:00.000Z","end":"2026-01-05T20:30:00.000Z","created":"2025-12-12T05:24:46.487Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2710\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-1sfgjajry","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085889-9ai0bpdum\"}]","start":"2026-06-09T16:00:00.000Z","end":"2026-06-09T16:15:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-1142\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-tazobz6nn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085770-nrioe3lhf\"}]","start":"2026-01-16T15:00:00.000Z","end":"2026-01-16T15:15:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6475\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-4lchqsjrn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085820-zm7dh64fn\"}]","start":"2026-03-17T17:30:00.000Z","end":"2026-03-17T17:45:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5066\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-xx4wl8qry","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085769-8317mawfd\"}]","start":"2026-01-15T14:00:00.000Z","end":"2026-01-15T14:15:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2632\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-c5orne7w0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085741-pytvkzix0\"}]","start":"2025-12-15T14:45:00.000Z","end":"2025-12-15T15:00:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3661\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-wx9wqc0j8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085834-hiubrxogt\"}]","start":"2026-04-03T13:00:00.000Z","end":"2026-04-03T13:15:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-7579\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-j0tr81s8n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085807-9ru5al9mm\"}]","start":"2026-03-03T15:45:00.000Z","end":"2026-03-03T16:00:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-3101\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-gzn3q0tg8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085757-2v4njnpmy\"}]","start":"2026-01-01T15:30:00.000Z","end":"2026-01-01T15:45:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9065\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-pnoozwtli","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085889-hihpnft35\"}]","start":"2026-06-09T16:45:00.000Z","end":"2026-06-09T17:00:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-4268\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-os47qx64z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085777-vbufg4nij\"}]","start":"2026-01-23T16:30:00.000Z","end":"2026-01-23T16:45:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8611\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-d2mwudglx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085854-43zpvxh1f\"}]","start":"2026-04-29T12:00:00.000Z","end":"2026-04-29T12:15:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3046\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086488-4yezmxkow","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085810-wghediuw2\"}]","start":"2026-03-06T17:30:00.000Z","end":"2026-03-06T17:45:00.000Z","created":"2025-12-12T05:24:46.488Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4937\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-sz6jz3fqv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085802-ygvfjqsln\"}]","start":"2026-02-25T15:30:00.000Z","end":"2026-02-25T15:45:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-8128\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-2az4y2ulj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085788-g6oj6h5u9\"}]","start":"2026-02-06T15:30:00.000Z","end":"2026-02-06T15:45:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5962\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-5crvgv4dr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085778-f386qzw82\"}]","start":"2026-01-27T13:15:00.000Z","end":"2026-01-27T13:30:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-2998\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-tucrpd13b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085888-ckrki8p8b\"}]","start":"2026-06-05T19:15:00.000Z","end":"2026-06-05T19:30:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8748\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-8dchak5ot","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085873-9p6s48yzu\"}]","start":"2026-05-20T18:00:00.000Z","end":"2026-05-20T18:15:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9406\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-et6hfll81","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085878-lh4t935kk\"}]","start":"2026-05-26T15:00:00.000Z","end":"2026-05-26T15:15:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3920\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-74n1ds86r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085793-7uxdv6x50\"}]","start":"2026-02-13T15:15:00.000Z","end":"2026-02-13T15:30:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3420\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-z7fbhzebl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085786-o9b1k8jtq\"}]","start":"2026-02-05T15:45:00.000Z","end":"2026-02-05T16:00:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-1532\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-irvr0odgg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085820-bvhx1wpb0\"}]","start":"2026-03-17T19:30:00.000Z","end":"2026-03-17T19:45:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-2635\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-gu4rjjsu2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085815-1zttryhbv\"}]","start":"2026-03-12T12:00:00.000Z","end":"2026-03-12T12:15:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9983\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-o3yj1oyvw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085886-fvaejzi4c\"}]","start":"2026-06-04T18:30:00.000Z","end":"2026-06-04T18:45:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-6873\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086489-nnqs96ei9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085826-6mvtsv8p6\"}]","start":"2026-03-25T12:00:00.000Z","end":"2026-03-25T12:15:00.000Z","created":"2025-12-12T05:24:46.489Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6352\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-9s4r078ja","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085766-zj7ed6i6c\"}]","start":"2026-01-13T18:45:00.000Z","end":"2026-01-13T19:00:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9843\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-jajp2235v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085878-7q8qww22v\"}]","start":"2026-05-26T16:30:00.000Z","end":"2026-05-26T16:45:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4233\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-m83okzw7c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085857-z1nu5gaq3\"}]","start":"2026-04-30T13:00:00.000Z","end":"2026-04-30T13:15:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3542\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-wjo2y7upl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085873-odwu7bjhh\"}]","start":"2026-05-20T14:30:00.000Z","end":"2026-05-20T14:45:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4216\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-8gbg94nxs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085883-2d42xbz4t\"}]","start":"2026-06-01T18:45:00.000Z","end":"2026-06-01T19:00:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2940\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-xeh96bj5v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085877-ozfdg8fxq\"}]","start":"2026-05-25T15:00:00.000Z","end":"2026-05-25T15:15:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4778\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-xilanjgdo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085885-q4h742i3e\"}]","start":"2026-06-04T15:30:00.000Z","end":"2026-06-04T15:45:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8321\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-0y8gr7adb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085805-p1p6k3j7m\"}]","start":"2026-02-27T19:45:00.000Z","end":"2026-02-27T20:00:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5408\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-5z287ze0u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085820-to1op0wxq\"}]","start":"2026-03-18T15:00:00.000Z","end":"2026-03-18T15:15:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2234\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-sff2z9awn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085851-0valk6jmr\"}]","start":"2026-04-23T17:45:00.000Z","end":"2026-04-23T18:00:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7284\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086490-zmrkdpa7n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085757-dczt78wba\"}]","start":"2026-01-01T14:00:00.000Z","end":"2026-01-01T14:15:00.000Z","created":"2025-12-12T05:24:46.490Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9905\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-7fcwqv55e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085852-zuyjgb1js\"}]","start":"2026-04-24T12:15:00.000Z","end":"2026-04-24T12:30:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7584\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-ddh30vv02","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085807-g3fqhvw3t\"}]","start":"2026-03-03T14:45:00.000Z","end":"2026-03-03T15:00:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9947\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-mn4m6k6co","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085861-qe3zva0z8\"}]","start":"2026-05-05T16:30:00.000Z","end":"2026-05-05T16:45:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2360\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-hwyzzzcye","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085786-mau0ntgpe\"}]","start":"2026-02-05T14:15:00.000Z","end":"2026-02-05T14:30:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2546\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-4a5lyf59b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085833-ukl4e1s6h\"}]","start":"2026-04-02T17:00:00.000Z","end":"2026-04-02T17:15:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7408\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-79pvq8s17","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085838-cvlrj1mds\"}]","start":"2026-04-08T13:15:00.000Z","end":"2026-04-08T13:30:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-5545\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-tu3iqqzq8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085821-wmt65v5l2\"}]","start":"2026-03-19T12:30:00.000Z","end":"2026-03-19T12:45:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-8923\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-x55g5cnqf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085845-cg80p9nv3\"}]","start":"2026-04-17T14:45:00.000Z","end":"2026-04-17T15:00:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2270\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-ng2u0l7qu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085757-df0knd879\"}]","start":"2026-01-01T17:00:00.000Z","end":"2026-01-01T17:15:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4003\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-on2k56cte","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085757-2bdw5kmlx\"}]","start":"2026-01-01T13:45:00.000Z","end":"2026-01-01T14:00:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2186\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-235jklfl4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085785-xpe5hwhhb\"}]","start":"2026-02-03T20:15:00.000Z","end":"2026-02-03T20:30:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6510\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-jf9vx9zsb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085780-7gpf73tuh\"}]","start":"2026-01-29T15:30:00.000Z","end":"2026-01-29T15:45:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9128\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086491-na1xap63s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085888-qk7s49pcl\"}]","start":"2026-06-08T12:30:00.000Z","end":"2026-06-08T12:45:00.000Z","created":"2025-12-12T05:24:46.491Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2257\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-iwhlu81ps","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085834-q3myfaw7v\"}]","start":"2026-04-03T12:15:00.000Z","end":"2026-04-03T12:30:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-1874\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-m17k6wqo3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-hs356f86i\"}]","start":"2026-04-06T18:30:00.000Z","end":"2026-04-06T18:45:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-1933\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-3lh2xrvd1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085839-wkuen0vaa\"}]","start":"2026-04-09T17:45:00.000Z","end":"2026-04-09T18:00:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3544\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-c5j3mpb92","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-82b6cfkm5\"}]","start":"2026-01-02T17:15:00.000Z","end":"2026-01-02T17:30:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1233\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-yv40gsiu3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085822-aqwzxtyyq\"}]","start":"2026-03-20T16:00:00.000Z","end":"2026-03-20T16:15:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1090\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-755rsklcu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085839-4f08ysbp7\"}]","start":"2026-04-09T18:00:00.000Z","end":"2026-04-09T18:15:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-9943\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-wpxnfltv8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085830-teacg47hw\"}]","start":"2026-03-31T13:30:00.000Z","end":"2026-03-31T13:45:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6448\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-fs5ef1gpl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085780-h7ht0lq8w\"}]","start":"2026-01-28T20:30:00.000Z","end":"2026-01-28T20:45:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-6307\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-0ud5uty4e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085860-lbefembf6\"}]","start":"2026-05-05T14:45:00.000Z","end":"2026-05-05T15:00:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2944\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-2bduz8x54","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085853-klicdrgee\"}]","start":"2026-04-24T19:30:00.000Z","end":"2026-04-24T19:45:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4467\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-wt3ad286s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085815-pv89dwlb6\"}]","start":"2026-03-12T16:30:00.000Z","end":"2026-03-12T16:45:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7924\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-ll60ynxq8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085835-dwh0mvxyy\"}]","start":"2026-04-06T13:00:00.000Z","end":"2026-04-06T13:15:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6973\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086492-qzy447upw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085747-v3e58yi0f\"}]","start":"2025-12-19T18:45:00.000Z","end":"2025-12-19T19:00:00.000Z","created":"2025-12-12T05:24:46.492Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9106\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-bmrov3bxt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085852-28sgw7r83\"}]","start":"2026-04-24T16:15:00.000Z","end":"2026-04-24T16:30:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6878\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-3f71f97ib","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085839-4ivhp9wwi\"}]","start":"2026-04-09T13:15:00.000Z","end":"2026-04-09T13:30:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4561\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-27lkepozv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085805-za17qlxnq\"}]","start":"2026-02-27T20:45:00.000Z","end":"2026-02-27T21:00:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2577\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-hwgeemnkn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085755-lv6hpz7b5\"}]","start":"2025-12-31T13:30:00.000Z","end":"2025-12-31T13:45:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9544\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-8thxiqdq6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085874-uyrfod1x9\"}]","start":"2026-05-21T12:30:00.000Z","end":"2026-05-21T12:45:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4570\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-iknhn41yo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085802-uy0tyswva\"}]","start":"2026-02-25T16:00:00.000Z","end":"2026-02-25T16:15:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-7392\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-h4p2zhs07","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085763-7vu3xygue\"}]","start":"2026-01-08T17:00:00.000Z","end":"2026-01-08T17:15:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-5367\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-6l1394htp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085809-9yaa6u47f\"}]","start":"2026-03-05T17:45:00.000Z","end":"2026-03-05T18:00:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4831\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-xjfoutaw0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085879-95a4v99ea\"}]","start":"2026-05-27T13:45:00.000Z","end":"2026-05-27T14:00:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6320\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-tdqc1us5n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085884-v2x98gx4b\"}]","start":"2026-06-02T19:00:00.000Z","end":"2026-06-02T19:15:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7745\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-0aeflly5a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085882-gqd8odvxm\"}]","start":"2026-05-29T15:00:00.000Z","end":"2026-05-29T15:15:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8234\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-ugzsnl0w7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085867-vi8oqxelo\"}]","start":"2026-05-13T19:00:00.000Z","end":"2026-05-13T19:15:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-8885\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086493-57gao3sjb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085833-w450aqmd4\"}]","start":"2026-04-02T12:00:00.000Z","end":"2026-04-02T12:15:00.000Z","created":"2025-12-12T05:24:46.493Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2241\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086494-hq66h2pv0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085813-bx42v55z4\"}]","start":"2026-03-10T14:30:00.000Z","end":"2026-03-10T14:45:00.000Z","created":"2025-12-12T05:24:46.494Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2288\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.494Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-sdvfaz3gf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085750-gm5zns5vk\"}]","start":"2025-12-24T16:30:00.000Z","end":"2025-12-24T16:45:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-4672\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-8j3aofyej","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085851-el4vf54lb\"}]","start":"2026-04-23T17:30:00.000Z","end":"2026-04-23T17:45:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-6702\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-3gmib1cts","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085829-sop9letgx\"}]","start":"2026-03-30T15:45:00.000Z","end":"2026-03-30T16:00:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8568\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-hsnpcwslq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085773-ywa948qed\"}]","start":"2026-01-21T17:15:00.000Z","end":"2026-01-21T17:30:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-8096\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-krw9kk0ph","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085753-tf3rg9bj4\"}]","start":"2025-12-29T17:30:00.000Z","end":"2025-12-29T17:45:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7088\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-23zqynb1n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085753-n5ngx7q8j\"}]","start":"2025-12-29T18:30:00.000Z","end":"2025-12-29T18:45:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7566\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-6hnr62tpo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085759-d888jssex\"}]","start":"2026-01-05T14:15:00.000Z","end":"2026-01-05T14:30:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2150\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-htos65jaz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085747-uzetlpmbz\"}]","start":"2025-12-22T16:45:00.000Z","end":"2025-12-22T17:00:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7907\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-wt6sou2zu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085835-43r9b72rx\"}]","start":"2026-04-06T17:00:00.000Z","end":"2026-04-06T17:15:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1494\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-zgb4ofxbf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085857-rvxta2y1n\"}]","start":"2026-04-30T16:15:00.000Z","end":"2026-04-30T16:30:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-4066\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-y5gu8jeht","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085838-3nn0boao5\"}]","start":"2026-04-08T18:15:00.000Z","end":"2026-04-08T18:30:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-6386\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086496-ryo3zcmid","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085850-0i1if17qf\"}]","start":"2026-04-22T14:45:00.000Z","end":"2026-04-22T15:00:00.000Z","created":"2025-12-12T05:24:46.496Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7507\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-g0eiowyad","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085754-n32mhq353\"}]","start":"2025-12-30T18:00:00.000Z","end":"2025-12-30T18:15:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2838\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-5j6mdle93","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085772-sbzuaugz9\"}]","start":"2026-01-20T14:30:00.000Z","end":"2026-01-20T14:45:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4179\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-9sm6aex34","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085775-5d02jqw63\"}]","start":"2026-01-22T16:45:00.000Z","end":"2026-01-22T17:00:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7030\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-hxoi1cek4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085831-suixegy23\"}]","start":"2026-03-31T16:45:00.000Z","end":"2026-03-31T17:00:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-5119\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-xzvw42kex","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085874-7w8mmaaht\"}]","start":"2026-05-21T13:00:00.000Z","end":"2026-05-21T13:15:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7676\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-32zlmc3v8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085864-6dgagxm74\"}]","start":"2026-05-08T15:45:00.000Z","end":"2026-05-08T16:00:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4351\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-oxfl2xs81","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085791-ubkl207qe\"}]","start":"2026-02-11T14:45:00.000Z","end":"2026-02-11T15:00:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6531\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-9m0dtnxbk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085860-qs1thn70m\"}]","start":"2026-05-05T14:30:00.000Z","end":"2026-05-05T14:45:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9478\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-q5diylo9s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085829-k64qax7b9\"}]","start":"2026-03-30T15:30:00.000Z","end":"2026-03-30T15:45:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4379\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-87w95z3ig","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085871-9polr6ss5\"}]","start":"2026-05-18T19:00:00.000Z","end":"2026-05-18T19:15:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1782\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-6scfhv31l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085823-mr7acs20n\"}]","start":"2026-03-20T19:45:00.000Z","end":"2026-03-20T20:00:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7174\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086497-2p1ny4jjj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085769-mm9j92mcx\"}]","start":"2026-01-15T15:30:00.000Z","end":"2026-01-15T15:45:00.000Z","created":"2025-12-12T05:24:46.497Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5231\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-p4p1scaek","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085813-62vfqzz3w\"}]","start":"2026-03-10T13:00:00.000Z","end":"2026-03-10T13:15:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4697\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-njp72e7uv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085854-vw1o4pg8u\"}]","start":"2026-04-28T19:00:00.000Z","end":"2026-04-28T19:15:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3258\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-ago275kze","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085813-0y8qfvyjj\"}]","start":"2026-03-10T17:00:00.000Z","end":"2026-03-10T17:15:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9240\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-vyuqayj20","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085839-26a6eqtn4\"}]","start":"2026-04-09T15:45:00.000Z","end":"2026-04-09T16:00:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-3216\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-u9g2yxlpc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085757-iumcl9pql\"}]","start":"2025-12-31T18:30:00.000Z","end":"2025-12-31T18:45:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3120\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-9pd2qyr20","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085814-d60qjcaqz\"}]","start":"2026-03-11T17:15:00.000Z","end":"2026-03-11T17:30:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7073\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-2efam6dgu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085830-iipu03dhf\"}]","start":"2026-03-31T14:15:00.000Z","end":"2026-03-31T14:30:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-1595\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-l2lhp7am9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085802-k9ykkqgh5\"}]","start":"2026-02-24T17:00:00.000Z","end":"2026-02-24T17:15:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-1582\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-edq7760pc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085788-9b9gcfgv4\"}]","start":"2026-02-06T14:30:00.000Z","end":"2026-02-06T14:45:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8790\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-ybhq0dd4h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085869-toydjy2md\"}]","start":"2026-05-14T14:00:00.000Z","end":"2026-05-14T14:15:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-8717\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-op1pp10cu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085761-xm39ycdal\"}]","start":"2026-01-07T13:30:00.000Z","end":"2026-01-07T13:45:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4321\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-ou1398ph5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085758-wmixa9t93\"}]","start":"2026-01-01T19:45:00.000Z","end":"2026-01-01T20:00:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3968\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086498-s8dl0cbnp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085747-ys0owqslm\"}]","start":"2025-12-22T15:15:00.000Z","end":"2025-12-22T15:30:00.000Z","created":"2025-12-12T05:24:46.498Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5566\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-pha4efjuc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085773-h9swvmvrh\"}]","start":"2026-01-21T20:45:00.000Z","end":"2026-01-21T21:00:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5766\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-m3u8d7hix","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-lvj6fzaks\"}]","start":"2026-01-14T19:45:00.000Z","end":"2026-01-14T20:00:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9816\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-og9fu3dph","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085796-kuzm71wk8\"}]","start":"2026-02-17T19:15:00.000Z","end":"2026-02-17T19:30:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2558\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-hgr82jm6l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085829-b3t1svg1p\"}]","start":"2026-03-30T12:00:00.000Z","end":"2026-03-30T12:15:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3436\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-45nijn1tl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085813-3a0zc7hsd\"}]","start":"2026-03-10T12:15:00.000Z","end":"2026-03-10T12:30:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-7223\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-nbfp2rpqy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085870-vnuh6z1hi\"}]","start":"2026-05-15T12:00:00.000Z","end":"2026-05-15T12:15:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9651\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-gvtrh3t0s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085807-ikug90675\"}]","start":"2026-03-03T13:45:00.000Z","end":"2026-03-03T14:00:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5198\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-ycvu0izm0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085779-5zx10acic\"}]","start":"2026-01-28T15:15:00.000Z","end":"2026-01-28T15:30:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-4632\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-l5tkuz0ww","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-x69l77cu3\"}]","start":"2026-01-09T13:15:00.000Z","end":"2026-01-09T13:30:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-7363\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-ffk8mt3kq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085752-ppfyb0dyf\"}]","start":"2025-12-25T18:30:00.000Z","end":"2025-12-25T18:45:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-3236\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-5ogqurfir","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085838-2hgcpr4qi\"}]","start":"2026-04-08T13:30:00.000Z","end":"2026-04-08T13:45:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5431\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-3o8q22pu8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085822-d7lj733p4\"}]","start":"2026-03-20T13:45:00.000Z","end":"2026-03-20T14:00:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4437\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086499-k9cdbtle4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085809-tcyog5zds\"}]","start":"2026-03-05T16:45:00.000Z","end":"2026-03-05T17:00:00.000Z","created":"2025-12-12T05:24:46.499Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3104\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-myn58qhks","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085869-2u6xwp0bf\"}]","start":"2026-05-14T14:15:00.000Z","end":"2026-05-14T14:30:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-6001\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-0z22d72be","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085798-om7bp4bf2\"}]","start":"2026-02-20T13:15:00.000Z","end":"2026-02-20T13:30:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9844\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-akwp53zw7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085822-p7e94el0z\"}]","start":"2026-03-20T14:30:00.000Z","end":"2026-03-20T14:45:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7131\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-pfw48oodw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085748-zujfv1ahf\"}]","start":"2025-12-22T20:45:00.000Z","end":"2025-12-22T21:00:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1754\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-vqaab2e2m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085782-bkjzxf6i4\"}]","start":"2026-01-30T16:45:00.000Z","end":"2026-01-30T17:00:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3508\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-uwqu5j2dv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085755-lzl941c9k\"}]","start":"2025-12-31T13:15:00.000Z","end":"2025-12-31T13:30:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2716\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-2sjvmslbr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085833-0zzd73edn\"}]","start":"2026-04-02T12:45:00.000Z","end":"2026-04-02T13:00:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4540\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-sfaguoi6e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085876-m23m5mzc1\"}]","start":"2026-05-22T18:00:00.000Z","end":"2026-05-22T18:15:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2522\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-m4g6ec0mv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-qspd0desf\"}]","start":"2026-01-08T19:45:00.000Z","end":"2026-01-08T20:00:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8533\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-3f38hhg14","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085830-aesrcfrtl\"}]","start":"2026-03-31T12:45:00.000Z","end":"2026-03-31T13:00:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4751\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-2s0ybnscp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085884-t0urhkc4f\"}]","start":"2026-06-02T17:00:00.000Z","end":"2026-06-02T17:15:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8594\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086500-griy2qjkk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085815-0i5952u62\"}]","start":"2026-03-12T16:45:00.000Z","end":"2026-03-12T17:00:00.000Z","created":"2025-12-12T05:24:46.500Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-6167\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-2x7i3vqyn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085855-xxybure1t\"}]","start":"2026-04-29T13:30:00.000Z","end":"2026-04-29T13:45:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4217\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-vzsi83ppb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085845-57yw49uun\"}]","start":"2026-04-17T12:00:00.000Z","end":"2026-04-17T12:15:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5031\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-q7x0s540b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085785-3onvvcczx\"}]","start":"2026-02-04T13:15:00.000Z","end":"2026-02-04T13:30:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3381\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-rpvuqukyz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085847-l67abtmtj\"}]","start":"2026-04-20T16:00:00.000Z","end":"2026-04-20T16:15:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4056\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-bpvydfqtt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085752-2x8jiq55s\"}]","start":"2025-12-26T16:45:00.000Z","end":"2025-12-26T17:00:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6073\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-v33dv3s27","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085857-n4sqidf38\"}]","start":"2026-04-30T16:00:00.000Z","end":"2026-04-30T16:15:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-5610\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-xcnnfnf5c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085861-dx8f0w5r6\"}]","start":"2026-05-05T17:15:00.000Z","end":"2026-05-05T17:30:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9191\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-rpjlibstp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085817-4h8wzbp85\"}]","start":"2026-03-13T18:15:00.000Z","end":"2026-03-13T18:30:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9827\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-jnk0iaf85","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085778-fnphh5r7v\"}]","start":"2026-01-26T18:45:00.000Z","end":"2026-01-26T19:00:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3970\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-uaztwq923","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085766-xfl6jq3od\"}]","start":"2026-01-13T13:15:00.000Z","end":"2026-01-13T13:30:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-1627\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086501-5b8k43kuf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085760-pyouiqz5z\"}]","start":"2026-01-05T19:30:00.000Z","end":"2026-01-05T19:45:00.000Z","created":"2025-12-12T05:24:46.501Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5211\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-n2mtysm05","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085748-1zkw2r0m7\"}]","start":"2025-12-22T20:30:00.000Z","end":"2025-12-22T20:45:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2423\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-wy259buxb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085837-zfccwhdxt\"}]","start":"2026-04-07T18:00:00.000Z","end":"2026-04-07T18:15:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2038\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-juj8hfovh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-ue3vaj2f5\"}]","start":"2026-01-02T14:45:00.000Z","end":"2026-01-02T15:00:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9452\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-x379uwwkc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085881-a23dok356\"}]","start":"2026-05-29T13:15:00.000Z","end":"2026-05-29T13:30:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9886\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-a8pbztqnh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085846-klx5aoji4\"}]","start":"2026-04-17T17:45:00.000Z","end":"2026-04-17T18:00:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8261\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-y44h2vjrk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085844-n5rqphhqk\"}]","start":"2026-04-15T19:00:00.000Z","end":"2026-04-15T19:15:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2757\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-9cc5qs8ig","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085811-87n51nqhl\"}]","start":"2026-03-09T12:00:00.000Z","end":"2026-03-09T12:15:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9336\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-j5bubngj3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085809-39jdhj2xd\"}]","start":"2026-03-04T19:45:00.000Z","end":"2026-03-04T20:00:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-8953\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-0i64thj9e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085792-yvz29ybar\"}]","start":"2026-02-12T18:00:00.000Z","end":"2026-02-12T18:15:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1151\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-5v8yxneq4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085880-yp9g6zfoj\"}]","start":"2026-05-28T17:30:00.000Z","end":"2026-05-28T17:45:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1373\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-2ivsgcu9k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085860-hz7nqkxw0\"}]","start":"2026-05-04T17:30:00.000Z","end":"2026-05-04T17:45:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4573\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-zhd6qudik","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085783-mn8tgd6i3\"}]","start":"2026-02-02T14:45:00.000Z","end":"2026-02-02T15:00:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-8822\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086502-cunm9cas7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-801stuu6n\"}]","start":"2026-04-06T15:30:00.000Z","end":"2026-04-06T15:45:00.000Z","created":"2025-12-12T05:24:46.502Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-9017\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-i7js2yoet","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085854-el5jza7yn\"}]","start":"2026-04-28T16:00:00.000Z","end":"2026-04-28T16:15:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9516\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-e9uy53ocq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085795-6u7127y3w\"}]","start":"2026-02-16T15:45:00.000Z","end":"2026-02-16T16:00:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5512\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-e8694yuix","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085884-kirh6cojq\"}]","start":"2026-06-03T14:30:00.000Z","end":"2026-06-03T14:45:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1087\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-lto9piwsy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085793-vi4owu1ho\"}]","start":"2026-02-13T15:00:00.000Z","end":"2026-02-13T15:15:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-5510\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-21xubu1u6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085795-hx36oaelm\"}]","start":"2026-02-16T19:00:00.000Z","end":"2026-02-16T19:15:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-7019\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-b156emcnc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085888-252v6meia\"}]","start":"2026-06-08T14:15:00.000Z","end":"2026-06-08T14:30:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4003\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-z1ra6viwa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085751-vl8dux5r6\"}]","start":"2025-12-24T18:00:00.000Z","end":"2025-12-24T18:15:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-2185\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-jav2nqy3g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085850-30cxfyo2x\"}]","start":"2026-04-22T14:15:00.000Z","end":"2026-04-22T14:30:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7079\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-8g84wzhgk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085857-3q36eran0\"}]","start":"2026-04-30T19:15:00.000Z","end":"2026-04-30T19:30:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5447\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-58pqvt8zn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085840-r8aht8qb\"}]","start":"2026-04-10T14:45:00.000Z","end":"2026-04-10T15:00:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-1317\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-3tkdunwi8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085861-vx10qer9s\"}]","start":"2026-05-05T16:45:00.000Z","end":"2026-05-05T17:00:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-8467\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-ttavp5nhd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085746-joz9h989j\"}]","start":"2025-12-18T19:45:00.000Z","end":"2025-12-18T20:00:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3745\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086503-i5l92t3r4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085803-27qbukjq5\"}]","start":"2026-02-26T14:30:00.000Z","end":"2026-02-26T14:45:00.000Z","created":"2025-12-12T05:24:46.503Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5538\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-ln9ss2jrb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085772-1qj57h3n1\"}]","start":"2026-01-20T17:15:00.000Z","end":"2026-01-20T17:30:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-4704\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-fiws3vok4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085787-s4b7wmwjv\"}]","start":"2026-02-06T13:15:00.000Z","end":"2026-02-06T13:30:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3603\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-ilj34hugk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085841-v9zfh6eg0\"}]","start":"2026-04-14T12:30:00.000Z","end":"2026-04-14T12:45:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4398\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-an56wszu2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085772-sqw1qqz7u\"}]","start":"2026-01-20T20:00:00.000Z","end":"2026-01-20T20:15:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-7141\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-6s11xath5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085810-mrz7bdxtj\"}]","start":"2026-03-05T19:30:00.000Z","end":"2026-03-05T19:45:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-9791\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-mfro2mqx1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085848-4doao7rh6\"}]","start":"2026-04-21T16:45:00.000Z","end":"2026-04-21T17:00:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1170\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-qlywryyf2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085788-gb29ff73n\"}]","start":"2026-02-06T17:00:00.000Z","end":"2026-02-06T17:15:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7694\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-vn7tit7wc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085829-an171rmva\"}]","start":"2026-03-30T16:45:00.000Z","end":"2026-03-30T17:00:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8522\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086504-srswip0ie","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085758-weughrwyr\"}]","start":"2026-01-01T20:30:00.000Z","end":"2026-01-01T20:45:00.000Z","created":"2025-12-12T05:24:46.504Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3593\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086506-8rdkw9ypg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085830-7ybw8e6yc\"}]","start":"2026-03-30T19:15:00.000Z","end":"2026-03-30T19:30:00.000Z","created":"2025-12-12T05:24:46.506Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3184\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.506Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086506-du55lzu7x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085753-7byv8qdbt\"}]","start":"2025-12-26T18:15:00.000Z","end":"2025-12-26T18:30:00.000Z","created":"2025-12-12T05:24:46.506Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7915\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.506Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-usw5r7ewu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085870-p6c1wmeu8\"}]","start":"2026-05-15T12:45:00.000Z","end":"2026-05-15T13:00:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9161\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-6qsiefy3m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085767-qbsbzv8lw\"}]","start":"2026-01-14T16:30:00.000Z","end":"2026-01-14T16:45:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1264\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-io4fo9oko","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085806-gj3pfw8we\"}]","start":"2026-03-02T13:00:00.000Z","end":"2026-03-02T13:15:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2195\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-kn07tdhlq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085823-mb8v2imjy\"}]","start":"2026-03-23T13:30:00.000Z","end":"2026-03-23T13:45:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4600\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-toj677xha","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085846-apmv0ek9p\"}]","start":"2026-04-17T18:15:00.000Z","end":"2026-04-17T18:30:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9811\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-azka4gw7y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085748-edzdd2o4b\"}]","start":"2025-12-22T18:45:00.000Z","end":"2025-12-22T19:00:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8686\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-dpro55gok","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085839-4nf3q2n6o\"}]","start":"2026-04-09T14:00:00.000Z","end":"2026-04-09T14:15:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1618\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-5egolg3qq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085835-9hbl8qvyx\"}]","start":"2026-04-06T17:30:00.000Z","end":"2026-04-06T17:45:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3041\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-m0deli2qr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085833-mfkf3mpb7\"}]","start":"2026-04-02T18:15:00.000Z","end":"2026-04-02T18:30:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9406\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-pu0rwexhm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085820-fges1wsw1\"}]","start":"2026-03-18T12:00:00.000Z","end":"2026-03-18T12:15:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2561\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-8q85ome0o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085790-970ru4glh\"}]","start":"2026-02-10T13:15:00.000Z","end":"2026-02-10T13:30:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4314\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-ohevgrhql","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085838-5mbi2p2gn\"}]","start":"2026-04-08T17:45:00.000Z","end":"2026-04-08T18:00:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4425\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086507-0jkjf07xf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085771-l091rk74j\"}]","start":"2026-01-20T13:15:00.000Z","end":"2026-01-20T13:30:00.000Z","created":"2025-12-12T05:24:46.507Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-9163\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-d5numer2d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085860-bsiygvi0c\"}]","start":"2026-05-05T13:00:00.000Z","end":"2026-05-05T13:15:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-2089\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-ojd7ij1mj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085790-qsqjt6erq\"}]","start":"2026-02-10T15:15:00.000Z","end":"2026-02-10T15:30:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5057\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-sk74uvmr4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085845-xywdvxqyp\"}]","start":"2026-04-17T13:15:00.000Z","end":"2026-04-17T13:30:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7889\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-g50bzdlqx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085872-s5x4kcxlz\"}]","start":"2026-05-19T13:45:00.000Z","end":"2026-05-19T14:00:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4401\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-2ftdwp7d6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085817-byxwxtgzc\"}]","start":"2026-03-13T17:15:00.000Z","end":"2026-03-13T17:30:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5822\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-hdkqsn0bz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-kv0n8p7fl\"}]","start":"2026-01-09T13:45:00.000Z","end":"2026-01-09T14:00:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9579\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-vn8ixzfy1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085779-eo898939y\"}]","start":"2026-01-28T15:00:00.000Z","end":"2026-01-28T15:15:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5804\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-e9vqqvyg2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085888-pe0kt54f3\"}]","start":"2026-06-08T13:00:00.000Z","end":"2026-06-08T13:15:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2618\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-xbqqahe19","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085889-is8un4295\"}]","start":"2026-06-09T14:00:00.000Z","end":"2026-06-09T14:15:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4834\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-x1puvgh71","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085792-8wzcojcfm\"}]","start":"2026-02-12T14:00:00.000Z","end":"2026-02-12T14:15:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4721\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-gcklu4hci","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085766-1nk4rmi97\"}]","start":"2026-01-13T17:00:00.000Z","end":"2026-01-13T17:15:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-3278\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-g1i9sjbg4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085809-c16hccf22\"}]","start":"2026-03-05T16:30:00.000Z","end":"2026-03-05T16:45:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6685\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086508-9bafs47em","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085767-ei9v7rnl8\"}]","start":"2026-01-14T15:00:00.000Z","end":"2026-01-14T15:15:00.000Z","created":"2025-12-12T05:24:46.508Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-5644\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-b0y8os6ik","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085790-ydfgr75ny\"}]","start":"2026-02-10T19:45:00.000Z","end":"2026-02-10T20:00:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8055\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-vmsdjbeif","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085761-zfbxvn67z\"}]","start":"2026-01-07T17:15:00.000Z","end":"2026-01-07T17:30:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1518\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-gcj0w7uru","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085862-tydi6uoov\"}]","start":"2026-05-06T16:15:00.000Z","end":"2026-05-06T16:30:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-6100\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-fmyaiou4l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085809-7rtipifdj\"}]","start":"2026-03-05T14:45:00.000Z","end":"2026-03-05T15:00:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-5966\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-9ag1pvrrz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085747-oissfcshh\"}]","start":"2025-12-22T13:00:00.000Z","end":"2025-12-22T13:15:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1555\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-hz9y5ihum","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085885-1yl299tn4\"}]","start":"2026-06-03T19:00:00.000Z","end":"2026-06-03T19:15:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9987\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-rgyeegbaq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085755-tukk6w2yw\"}]","start":"2025-12-31T14:15:00.000Z","end":"2025-12-31T14:30:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7300\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-z5ar3u4t4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085816-6rhwtwfqv\"}]","start":"2026-03-13T14:00:00.000Z","end":"2026-03-13T14:15:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3700\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-9amlhzikg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085876-xwjzq9cvf\"}]","start":"2026-05-22T17:15:00.000Z","end":"2026-05-22T17:30:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7702\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-hkkl3w0dx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085791-7cvg03poe\"}]","start":"2026-02-11T20:15:00.000Z","end":"2026-02-11T20:30:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-2146\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-eimeoj5s2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085882-p2orjfu8n\"}]","start":"2026-06-01T12:00:00.000Z","end":"2026-06-01T12:15:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-9229\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-751b5pm7t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085748-0u2739nq3\"}]","start":"2025-12-23T16:30:00.000Z","end":"2025-12-23T16:45:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7382\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086509-adztss791","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085747-512kxljgo\"}]","start":"2025-12-19T20:45:00.000Z","end":"2025-12-19T21:00:00.000Z","created":"2025-12-12T05:24:46.509Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9631\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-n1n7n2phy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085866-gbx8qfmo3\"}]","start":"2026-05-11T18:00:00.000Z","end":"2026-05-11T18:15:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2713\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-zks8vq87g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085854-t49wk9lls\"}]","start":"2026-04-28T16:15:00.000Z","end":"2026-04-28T16:30:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7229\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-ajz09vzp7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085784-1ffp0n8rv\"}]","start":"2026-02-03T15:30:00.000Z","end":"2026-02-03T15:45:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4802\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-ijd00pb2c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085804-5gaefw8r8\"}]","start":"2026-02-27T18:00:00.000Z","end":"2026-02-27T18:15:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4300\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-1fyx9qmmz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085838-kms8nho4f\"}]","start":"2026-04-08T19:15:00.000Z","end":"2026-04-08T19:30:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5205\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-b7v2631ks","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085768-sojfnm761\"}]","start":"2026-01-15T13:45:00.000Z","end":"2026-01-15T14:00:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4385\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-zfr4bztyk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085838-w2ibfuurt\"}]","start":"2026-04-08T14:15:00.000Z","end":"2026-04-08T14:30:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-9133\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-vmgmxqdya","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085777-bmdqch8j9\"}]","start":"2026-01-23T17:30:00.000Z","end":"2026-01-23T17:45:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2621\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-x51hohavc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085808-eyhlwrh3u\"}]","start":"2026-03-04T14:45:00.000Z","end":"2026-03-04T15:00:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-9237\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-qqfv6dni7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085803-q6t5pzfb5\"}]","start":"2026-02-26T17:30:00.000Z","end":"2026-02-26T17:45:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-4265\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-k7756qvtr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085878-x23qxsq90\"}]","start":"2026-05-26T13:00:00.000Z","end":"2026-05-26T13:15:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9233\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086510-z3z6h6b8b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085803-g40vxeygw\"}]","start":"2026-02-26T14:15:00.000Z","end":"2026-02-26T14:30:00.000Z","created":"2025-12-12T05:24:46.510Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3589\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-9qnwlo89n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085825-rmrnsvkzc\"}]","start":"2026-03-24T12:45:00.000Z","end":"2026-03-24T13:00:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5296\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-yrzdkui4s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085769-vs0q1010p\"}]","start":"2026-01-15T19:45:00.000Z","end":"2026-01-15T20:00:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8421\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-b1yig927a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085839-vjea61na0\"}]","start":"2026-04-09T17:15:00.000Z","end":"2026-04-09T17:30:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7636\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-91l9ubrue","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085873-54alm32ub\"}]","start":"2026-05-20T15:45:00.000Z","end":"2026-05-20T16:00:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8698\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-hsx6n6z9t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085882-2g2n0mysd\"}]","start":"2026-06-01T14:00:00.000Z","end":"2026-06-01T14:15:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-9859\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-o5aq2s8a0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-wj7lau50m\"}]","start":"2026-01-05T13:30:00.000Z","end":"2026-01-05T13:45:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-1998\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-k5zkyitsp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085741-xm38denrv\"}]","start":"2025-12-15T13:45:00.000Z","end":"2025-12-15T14:00:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5410\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-1q01owklv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085841-3bsymnt4c\"}]","start":"2026-04-13T19:15:00.000Z","end":"2026-04-13T19:30:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-9467\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-gkbxou351","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085755-m1wtv08tx\"}]","start":"2025-12-31T16:15:00.000Z","end":"2025-12-31T16:30:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9765\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-9b4unnjs5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085855-ac5wse61d\"}]","start":"2026-04-29T13:45:00.000Z","end":"2026-04-29T14:00:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9367\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-s5wc4aa16","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085813-tgel59r03\"}]","start":"2026-03-10T18:45:00.000Z","end":"2026-03-10T19:00:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8368\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-81edufvtl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085793-4pdct9nug\"}]","start":"2026-02-13T15:45:00.000Z","end":"2026-02-13T16:00:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-6207\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086511-fhrpzwpye","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-wyc46zodw\"}]","start":"2026-04-06T19:00:00.000Z","end":"2026-04-06T19:15:00.000Z","created":"2025-12-12T05:24:46.511Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2978\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-x5nknaoca","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085872-zw4ys67r8\"}]","start":"2026-05-19T18:45:00.000Z","end":"2026-05-19T19:00:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2960\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-tz9h8mb50","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085784-fgnel0mj4\"}]","start":"2026-02-03T15:00:00.000Z","end":"2026-02-03T15:15:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-2866\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-qr7lrcw50","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085827-47uvvxy7n\"}]","start":"2026-03-26T14:45:00.000Z","end":"2026-03-26T15:00:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-8506\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-wjlxyvcgb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085797-m6d7xus69\"}]","start":"2026-02-18T20:15:00.000Z","end":"2026-02-18T20:30:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3351\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-7ryg7d5e3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085866-swa8sg4dk\"}]","start":"2026-05-12T12:45:00.000Z","end":"2026-05-12T13:00:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-3549\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-utqzl0tbw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085852-9uioylgfp\"}]","start":"2026-04-24T15:00:00.000Z","end":"2026-04-24T15:15:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8717\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-fyb17ga3s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085842-4o890f1xe\"}]","start":"2026-04-14T19:00:00.000Z","end":"2026-04-14T19:15:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2553\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-a78kkiw2k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085825-j8k89fnof\"}]","start":"2026-03-24T14:45:00.000Z","end":"2026-03-24T15:00:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-3552\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-qt8rfm5ha","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085863-d9bo19ob2\"}]","start":"2026-05-06T19:15:00.000Z","end":"2026-05-06T19:30:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6136\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-xxw9q6ahc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085885-nro856cna\"}]","start":"2026-06-03T18:30:00.000Z","end":"2026-06-03T18:45:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5067\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-t5e6tz3cf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085746-jrgjzlkvq\"}]","start":"2025-12-18T18:30:00.000Z","end":"2025-12-18T18:45:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-6114\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086512-oqxq6mdip","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085847-kucrexq1f\"}]","start":"2026-04-21T12:00:00.000Z","end":"2026-04-21T12:15:00.000Z","created":"2025-12-12T05:24:46.512Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3270\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-3pg8ma7ll","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-pb8ks8lek\"}]","start":"2026-05-08T18:45:00.000Z","end":"2026-05-08T19:00:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-7525\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-lonix6q8u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085873-18ihktvqt\"}]","start":"2026-05-20T15:15:00.000Z","end":"2026-05-20T15:30:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5227\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-ujmndy7r1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085870-2iwwmk0ua\"}]","start":"2026-05-15T15:00:00.000Z","end":"2026-05-15T15:15:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6583\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-jpwbo53ws","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085796-8p12amh54\"}]","start":"2026-02-17T15:00:00.000Z","end":"2026-02-17T15:15:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8317\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-hh6uih08p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085796-nl7qswoec\"}]","start":"2026-02-17T17:15:00.000Z","end":"2026-02-17T17:30:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8639\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-axemutins","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085851-vkegbelma\"}]","start":"2026-04-23T16:00:00.000Z","end":"2026-04-23T16:15:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-1096\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-majll2lyu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085836-kl9e3frkf\"}]","start":"2026-04-07T14:00:00.000Z","end":"2026-04-07T14:15:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7749\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-gu17lv0nn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085760-a0oxv6had\"}]","start":"2026-01-05T20:30:00.000Z","end":"2026-01-05T20:45:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-8343\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-3u0mial6j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085780-stxv2egq4\"}]","start":"2026-01-29T16:00:00.000Z","end":"2026-01-29T16:15:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8164\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-uhspzrm18","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085841-1c0oug75d\"}]","start":"2026-04-13T18:30:00.000Z","end":"2026-04-13T18:45:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3247\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-n860ss7qc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085827-933wb28na\"}]","start":"2026-03-25T19:45:00.000Z","end":"2026-03-25T20:00:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5146\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086513-2ikhp4qxy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085741-61hqcf4za\"}]","start":"2025-12-12T17:30:00.000Z","end":"2025-12-12T17:45:00.000Z","created":"2025-12-12T05:24:46.513Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8555\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-crthxd4l0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085790-rv4d36kl6\"}]","start":"2026-02-10T17:30:00.000Z","end":"2026-02-10T17:45:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1808\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-kqqlsviha","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085759-r26bl1de8\"}]","start":"2026-01-05T17:30:00.000Z","end":"2026-01-05T17:45:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1778\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-5ou1t1t91","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085783-up4zahpe6\"}]","start":"2026-02-02T14:30:00.000Z","end":"2026-02-02T14:45:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5098\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-6uro6xni2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085885-69fskrwo3\"}]","start":"2026-06-03T16:30:00.000Z","end":"2026-06-03T16:45:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1098\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-0map3z9th","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085747-p7ti9t0jc\"}]","start":"2025-12-19T19:00:00.000Z","end":"2025-12-19T19:15:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6496\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-ffhd84fzc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085797-g0nb4logs\"}]","start":"2026-02-18T17:30:00.000Z","end":"2026-02-18T17:45:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2169\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-gzuhj877g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085859-6qya6c8ds\"}]","start":"2026-05-04T15:15:00.000Z","end":"2026-05-04T15:30:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1581\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-7cwph3hgv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085844-udns0uukm\"}]","start":"2026-04-15T19:15:00.000Z","end":"2026-04-15T19:30:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1811\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-hg1sfs6pz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085851-e5yemg8a0\"}]","start":"2026-04-22T18:30:00.000Z","end":"2026-04-22T18:45:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7213\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-mbvrqkgwg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085776-iyarjt453\"}]","start":"2026-01-22T17:45:00.000Z","end":"2026-01-22T18:00:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2889\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-1bts2o2v8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085864-2j3avzuvm\"}]","start":"2026-05-08T12:15:00.000Z","end":"2026-05-08T12:30:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2975\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-mqqb1snd7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-khvxpduqd\"}]","start":"2026-01-01T19:15:00.000Z","end":"2026-01-01T19:30:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9546\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086514-75i2lmd3e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085845-v09lli46k\"}]","start":"2026-04-17T13:45:00.000Z","end":"2026-04-17T14:00:00.000Z","created":"2025-12-12T05:24:46.514Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9750\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086515-2wqpvla0g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085803-gctsvxnjj\"}]","start":"2026-02-26T17:15:00.000Z","end":"2026-02-26T17:30:00.000Z","created":"2025-12-12T05:24:46.515Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6751\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.515Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086515-a3wbl482v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085841-vnutpfa7k\"}]","start":"2026-04-13T15:30:00.000Z","end":"2026-04-13T15:45:00.000Z","created":"2025-12-12T05:24:46.515Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1707\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.515Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086515-m0l9he4eg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085835-squn2bal5\"}]","start":"2026-04-06T19:30:00.000Z","end":"2026-04-06T19:45:00.000Z","created":"2025-12-12T05:24:46.515Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5238\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.515Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086515-iz5b72lv4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085857-58msuj09c\"}]","start":"2026-04-30T17:15:00.000Z","end":"2026-04-30T17:30:00.000Z","created":"2025-12-12T05:24:46.515Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6742\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.515Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086517-9kmx5b9ck","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085777-dhl1jm8u7\"}]","start":"2026-01-23T16:00:00.000Z","end":"2026-01-23T16:15:00.000Z","created":"2025-12-12T05:24:46.517Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4346\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086517-070h1xfp3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085842-n6v6u8jka\"}]","start":"2026-04-14T15:30:00.000Z","end":"2026-04-14T15:45:00.000Z","created":"2025-12-12T05:24:46.517Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-7668\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086517-6wcr48mxh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085801-77ymedv2j\"}]","start":"2026-02-23T20:30:00.000Z","end":"2026-02-23T20:45:00.000Z","created":"2025-12-12T05:24:46.517Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7132\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086517-cl24zfd31","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085790-k24x5oqnc\"}]","start":"2026-02-10T20:00:00.000Z","end":"2026-02-10T20:15:00.000Z","created":"2025-12-12T05:24:46.517Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-8574\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086517-nw76fdh13","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085838-1iy9v7xpw\"}]","start":"2026-04-08T19:45:00.000Z","end":"2026-04-08T20:00:00.000Z","created":"2025-12-12T05:24:46.517Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8767\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086517-4r9r1zghw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085820-7mjljg6ca\"}]","start":"2026-03-17T14:30:00.000Z","end":"2026-03-17T14:45:00.000Z","created":"2025-12-12T05:24:46.517Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9052\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086517-rqmze2nfy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085783-q34n9mnjz\"}]","start":"2026-02-02T13:00:00.000Z","end":"2026-02-02T13:15:00.000Z","created":"2025-12-12T05:24:46.517Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7250\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-p5cwmqnu8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085800-gy2pop9de\"}]","start":"2026-02-23T14:15:00.000Z","end":"2026-02-23T14:30:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8063\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-uedl0ab70","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085794-0p4kq9b30\"}]","start":"2026-02-13T19:15:00.000Z","end":"2026-02-13T19:30:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-1767\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-dudsonrdi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085811-6e1lz3cg9\"}]","start":"2026-03-09T12:15:00.000Z","end":"2026-03-09T12:30:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9476\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-z27x18m4a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085808-lvmhac3k2\"}]","start":"2026-03-04T16:15:00.000Z","end":"2026-03-04T16:30:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2014\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-ucb45iefc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085801-lk9x0393i\"}]","start":"2026-02-23T16:15:00.000Z","end":"2026-02-23T16:30:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-1321\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-7c35t5cyr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085814-9ncra19ki\"}]","start":"2026-03-11T17:45:00.000Z","end":"2026-03-11T18:00:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2875\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-6q91qwlwh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085741-b8u1x00px\"}]","start":"2025-12-15T14:00:00.000Z","end":"2025-12-15T14:15:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4573\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-rha0p8jcb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085771-blz41cuwu\"}]","start":"2026-01-19T16:15:00.000Z","end":"2026-01-19T16:30:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5268\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-2xzv3mv2f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085849-669n5mhm1\"}]","start":"2026-04-22T12:30:00.000Z","end":"2026-04-22T12:45:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-8979\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-xhlqxwi9g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085821-pdwj1eeh8\"}]","start":"2026-03-19T14:00:00.000Z","end":"2026-03-19T14:15:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1589\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-r8c3yahbe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085871-7zrezikjt\"}]","start":"2026-05-18T16:15:00.000Z","end":"2026-05-18T16:30:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8122\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-pxxzu44oo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085772-515sb3nsf\"}]","start":"2026-01-20T20:30:00.000Z","end":"2026-01-20T20:45:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7583\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086518-jm2d94nl7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085748-inuria61r\"}]","start":"2025-12-23T13:30:00.000Z","end":"2025-12-23T13:45:00.000Z","created":"2025-12-12T05:24:46.518Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2948\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-nlshot8cb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085821-q1wd5q9bt\"}]","start":"2026-03-18T19:15:00.000Z","end":"2026-03-18T19:30:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3148\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-u9wz2ajej","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085777-m5o29967l\"}]","start":"2026-01-23T19:15:00.000Z","end":"2026-01-23T19:30:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-3248\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-8phj5o1do","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085788-5uynlj7ky\"}]","start":"2026-02-06T14:45:00.000Z","end":"2026-02-06T15:00:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5869\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-rrmbxkqks","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085748-dbbhirdl5\"}]","start":"2025-12-22T19:15:00.000Z","end":"2025-12-22T19:30:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7338\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-k3je5bo9e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085803-5k2qg8uvo\"}]","start":"2026-02-26T15:00:00.000Z","end":"2026-02-26T15:15:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5843\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-or3dzlixw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085785-p9r0s6zz2\"}]","start":"2026-02-03T20:30:00.000Z","end":"2026-02-03T20:45:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-7551\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-db5wrxd33","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085746-1ipxo6fl8\"}]","start":"2025-12-19T16:30:00.000Z","end":"2025-12-19T16:45:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7276\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-25e1ikpcy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085867-w77bwx95m\"}]","start":"2026-05-12T19:45:00.000Z","end":"2026-05-12T20:00:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6588\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-rdswidi17","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085816-4kvbbozyl\"}]","start":"2026-03-12T19:30:00.000Z","end":"2026-03-12T19:45:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-7417\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-5dkh2ptb3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085850-tv77b1u2q\"}]","start":"2026-04-22T16:30:00.000Z","end":"2026-04-22T16:45:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-6555\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-225vadayz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085844-swne9lscr\"}]","start":"2026-04-16T13:30:00.000Z","end":"2026-04-16T13:45:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-6308\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-43h9t3p0k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085854-w3la00kml\"}]","start":"2026-04-28T19:15:00.000Z","end":"2026-04-28T19:30:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4476\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086519-tsz9xqd4r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085873-gweesfajp\"}]","start":"2026-05-20T14:00:00.000Z","end":"2026-05-20T14:15:00.000Z","created":"2025-12-12T05:24:46.519Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2604\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-mrbi7rqti","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085799-tt62f5ud2\"}]","start":"2026-02-20T18:45:00.000Z","end":"2026-02-20T19:00:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7607\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-j7biho2fn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085840-z9eo29adl\"}]","start":"2026-04-10T13:15:00.000Z","end":"2026-04-10T13:30:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4995\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-a2wzyepnn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085803-x6m88ytxc\"}]","start":"2026-02-25T19:45:00.000Z","end":"2026-02-25T20:00:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6968\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-2r4haf95a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085855-378lhrx7b\"}]","start":"2026-04-29T15:15:00.000Z","end":"2026-04-29T15:30:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6316\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-os0o48heo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085852-bhrrvnyin\"}]","start":"2026-04-23T19:00:00.000Z","end":"2026-04-23T19:15:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1540\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-kcei5hrze","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085780-jpsjpwa11\"}]","start":"2026-01-28T17:45:00.000Z","end":"2026-01-28T18:00:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2784\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-szzyu34ch","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085845-lkftkfas8\"}]","start":"2026-04-16T17:15:00.000Z","end":"2026-04-16T17:30:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1329\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-2mvwq0ar1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085771-es95uda85\"}]","start":"2026-01-19T15:45:00.000Z","end":"2026-01-19T16:00:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4911\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-ykmm8r6l1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085788-zalw3hmiw\"}]","start":"2026-02-06T15:15:00.000Z","end":"2026-02-06T15:30:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-3432\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-5efizstpg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085847-n9w3ua5n7\"}]","start":"2026-04-21T12:15:00.000Z","end":"2026-04-21T12:30:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5590\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-llnjux5e0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085796-wro1xqw8q\"}]","start":"2026-02-17T16:30:00.000Z","end":"2026-02-17T16:45:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1734\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-l5coxiuz1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085749-6urri94hn\"}]","start":"2025-12-24T13:15:00.000Z","end":"2025-12-24T13:30:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4821\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086520-s7iqwebn1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085744-cdczawcdd\"}]","start":"2025-12-17T13:30:00.000Z","end":"2025-12-17T13:45:00.000Z","created":"2025-12-12T05:24:46.520Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-2317\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-k37ttlfga","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085778-pawe0b6pt\"}]","start":"2026-01-27T14:45:00.000Z","end":"2026-01-27T15:00:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5217\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-lv8cyh5rm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085861-82bvcpswu\"}]","start":"2026-05-06T15:00:00.000Z","end":"2026-05-06T15:15:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6929\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-9toi9z821","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085806-lcg5zqpqx\"}]","start":"2026-03-02T16:15:00.000Z","end":"2026-03-02T16:30:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3908\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-rzs2qndc2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085797-7l8by8lyg\"}]","start":"2026-02-19T14:15:00.000Z","end":"2026-02-19T14:30:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-4465\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-4zhuoo4fg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085813-s21pz5i8v\"}]","start":"2026-03-10T15:15:00.000Z","end":"2026-03-10T15:30:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-9194\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-4ke7r3pgy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085840-duw2xpseg\"}]","start":"2026-04-10T16:45:00.000Z","end":"2026-04-10T17:00:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-2426\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-rkm10emzp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085802-wj03mw5nv\"}]","start":"2026-02-24T20:30:00.000Z","end":"2026-02-24T20:45:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9005\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-af9gjaom8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085794-m00vvrnfg\"}]","start":"2026-02-13T18:00:00.000Z","end":"2026-02-13T18:15:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-7027\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-hw1ahow2c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085795-rt1zmfp4k\"}]","start":"2026-02-16T19:30:00.000Z","end":"2026-02-16T19:45:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4522\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-yet86sxmd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085838-thqq9e0lm\"}]","start":"2026-04-08T19:00:00.000Z","end":"2026-04-08T19:15:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4013\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-ssycgp0uc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085870-g5dztw5u8\"}]","start":"2026-05-15T19:00:00.000Z","end":"2026-05-15T19:15:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-6443\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-6vn6zcyyo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085816-s4zt8ngto\"}]","start":"2026-03-12T19:45:00.000Z","end":"2026-03-12T20:00:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6181\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086521-c255n2ur1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085788-1bs97bwgu\"}]","start":"2026-02-06T17:15:00.000Z","end":"2026-02-06T17:30:00.000Z","created":"2025-12-12T05:24:46.521Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4833\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-dhex5hxk6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085795-cu7xdb0p0\"}]","start":"2026-02-16T17:00:00.000Z","end":"2026-02-16T17:15:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4296\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-rzkylcja2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085816-w9oqs909l\"}]","start":"2026-03-13T13:15:00.000Z","end":"2026-03-13T13:30:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9376\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-skb6ky858","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085834-6veev41hi\"}]","start":"2026-04-03T17:45:00.000Z","end":"2026-04-03T18:00:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-3383\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-0jfs6ewmd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085820-uj4nua43i\"}]","start":"2026-03-17T18:30:00.000Z","end":"2026-03-17T18:45:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2671\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-42rre9q49","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085799-jhfzptal5\"}]","start":"2026-02-20T17:00:00.000Z","end":"2026-02-20T17:15:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1884\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-6cewkij29","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085847-q9cvnwgak\"}]","start":"2026-04-20T18:30:00.000Z","end":"2026-04-20T18:45:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1062\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-0t0zrv9j8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085773-phl7ycj1n\"}]","start":"2026-01-21T19:30:00.000Z","end":"2026-01-21T19:45:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4178\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-i15yhdgd5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085827-d1h7o907d\"}]","start":"2026-03-25T18:30:00.000Z","end":"2026-03-25T18:45:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-4040\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-1vnlgu14o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085865-ut5lp7708\"}]","start":"2026-05-11T17:00:00.000Z","end":"2026-05-11T17:15:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1145\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-lii7t6m6o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085767-zf8hlyian\"}]","start":"2026-01-15T13:30:00.000Z","end":"2026-01-15T13:45:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5343\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-qoin83nkz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085759-1l2ug6rhn\"}]","start":"2026-01-05T13:15:00.000Z","end":"2026-01-05T13:30:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-6851\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086522-3l2x1uymq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085888-9plzb0gaj\"}]","start":"2026-06-08T17:45:00.000Z","end":"2026-06-08T18:00:00.000Z","created":"2025-12-12T05:24:46.522Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5818\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-p7tsisl35","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085822-turku1eav\"}]","start":"2026-03-19T18:30:00.000Z","end":"2026-03-19T18:45:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5157\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-fw66bntx2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085827-sfraqooxg\"}]","start":"2026-03-26T15:45:00.000Z","end":"2026-03-26T16:00:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7421\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-kqc5dbwxh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085822-j38wlgugn\"}]","start":"2026-03-20T13:00:00.000Z","end":"2026-03-20T13:15:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-6007\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-tp2yvdhnn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085828-5mh7gtfaj\"}]","start":"2026-03-26T19:30:00.000Z","end":"2026-03-26T19:45:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3867\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-1qr5ojm4h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085884-pbue02weg\"}]","start":"2026-06-03T12:00:00.000Z","end":"2026-06-03T12:15:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2342\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-zs1yfv4ew","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085887-g3qbh6fg4\"}]","start":"2026-06-05T14:45:00.000Z","end":"2026-06-05T15:00:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9183\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-csnf5lb5n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085815-rx7s88tbw\"}]","start":"2026-03-12T15:00:00.000Z","end":"2026-03-12T15:15:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4790\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-w4vaykihp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085840-guuouoi1h\"}]","start":"2026-04-10T14:15:00.000Z","end":"2026-04-10T14:30:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-9684\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-lglqn5ayv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085796-r7225exyx\"}]","start":"2026-02-17T17:45:00.000Z","end":"2026-02-17T18:00:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7842\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086523-f2k5lgmfz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085797-xxjxf7q0y\"}]","start":"2026-02-18T17:15:00.000Z","end":"2026-02-18T17:30:00.000Z","created":"2025-12-12T05:24:46.523Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-3555\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-7d9kmu3di","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085785-l1qj7pf8f\"}]","start":"2026-02-04T17:15:00.000Z","end":"2026-02-04T17:30:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5934\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-583j8uq0h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085745-wxlty07h4\"}]","start":"2025-12-18T16:00:00.000Z","end":"2025-12-18T16:15:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-7382\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-7r0k9kfua","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085826-ykjucthbu\"}]","start":"2026-03-25T12:45:00.000Z","end":"2026-03-25T13:00:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2578\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-w1gtmu7df","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085796-299l919a9\"}]","start":"2026-02-17T20:15:00.000Z","end":"2026-02-17T20:30:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-8290\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-xll3to59g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085767-rsuvw1ndn\"}]","start":"2026-01-14T14:15:00.000Z","end":"2026-01-14T14:30:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9826\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-pfuem733p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085760-71w2fm5gw\"}]","start":"2026-01-05T19:45:00.000Z","end":"2026-01-05T20:00:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2728\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-qo38mmrv8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085764-13yzli8qn\"}]","start":"2026-01-09T19:15:00.000Z","end":"2026-01-09T19:30:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2854\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-169cr89mc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085798-9jrpduaww\"}]","start":"2026-02-19T19:30:00.000Z","end":"2026-02-19T19:45:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5854\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-b09re5p70","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085872-v5wdd0g48\"}]","start":"2026-05-20T12:15:00.000Z","end":"2026-05-20T12:30:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1377\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-ux3bv8y52","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085858-2j86s0chf\"}]","start":"2026-05-01T18:15:00.000Z","end":"2026-05-01T18:30:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-5854\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-3sz5fisu3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085754-q5psqj43h\"}]","start":"2025-12-30T13:15:00.000Z","end":"2025-12-30T13:30:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8971\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086524-y5d9ca8lk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085834-z7npp7s6o\"}]","start":"2026-04-03T14:45:00.000Z","end":"2026-04-03T15:00:00.000Z","created":"2025-12-12T05:24:46.524Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-5990\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-0if9wjjq3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085854-u0c4p1vkj\"}]","start":"2026-04-29T12:15:00.000Z","end":"2026-04-29T12:30:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8389\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-ogdao98v0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085823-178koqbff\"}]","start":"2026-03-23T15:15:00.000Z","end":"2026-03-23T15:30:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9853\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-125xdwltg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085814-jfyr8jey1\"}]","start":"2026-03-11T18:00:00.000Z","end":"2026-03-11T18:15:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3685\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-qgcht4qfn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085825-lyflw4afw\"}]","start":"2026-03-24T15:00:00.000Z","end":"2026-03-24T15:15:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2128\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-cjbrhp9zn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085889-k6miu5e1v\"}]","start":"2026-06-09T18:00:00.000Z","end":"2026-06-09T18:15:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4238\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-gsw0sx569","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085809-96ay9q2a6\"}]","start":"2026-03-05T17:15:00.000Z","end":"2026-03-05T17:30:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1705\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-hewygyvev","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085827-3dfwd37yd\"}]","start":"2026-03-25T17:45:00.000Z","end":"2026-03-25T18:00:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5889\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-wzx9ngfa4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-6spg08zw1\"}]","start":"2026-05-11T13:30:00.000Z","end":"2026-05-11T13:45:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-9358\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-p15kbyk9v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085887-zlhcc5pqn\"}]","start":"2026-06-05T15:30:00.000Z","end":"2026-06-05T15:45:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8123\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-seprgq4b5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085863-8oaco3url\"}]","start":"2026-05-06T19:00:00.000Z","end":"2026-05-06T19:15:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-1312\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-hi8d1b87y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085875-e290w0dh7\"}]","start":"2026-05-21T19:00:00.000Z","end":"2026-05-21T19:15:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8765\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-0w12mdmh8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085754-2n3rc7j1t\"}]","start":"2025-12-29T20:45:00.000Z","end":"2025-12-29T21:00:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5069\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086525-6t4o97xr5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085817-cvplux3ki\"}]","start":"2026-03-13T15:15:00.000Z","end":"2026-03-13T15:30:00.000Z","created":"2025-12-12T05:24:46.525Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-6597\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086526-brinbltrv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085838-ke6taz35e\"}]","start":"2026-04-08T17:00:00.000Z","end":"2026-04-08T17:15:00.000Z","created":"2025-12-12T05:24:46.526Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-7372\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086526-9dzjsco9v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085746-6d0uhuwwx\"}]","start":"2025-12-18T19:30:00.000Z","end":"2025-12-18T19:45:00.000Z","created":"2025-12-12T05:24:46.526Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-3060\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086526-v4cfonxgh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085882-2kt8adxjb\"}]","start":"2026-05-29T14:30:00.000Z","end":"2026-05-29T14:45:00.000Z","created":"2025-12-12T05:24:46.526Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9427\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086526-xhbf766fp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085780-6atvoim72\"}]","start":"2026-01-28T19:00:00.000Z","end":"2026-01-28T19:15:00.000Z","created":"2025-12-12T05:24:46.526Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3419\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086526-nvde2pak2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085872-k6t2qs2g7\"}]","start":"2026-05-19T16:30:00.000Z","end":"2026-05-19T16:45:00.000Z","created":"2025-12-12T05:24:46.526Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1045\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086526-ryeys1g1z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085811-85v66qsuv\"}]","start":"2026-03-09T12:30:00.000Z","end":"2026-03-09T12:45:00.000Z","created":"2025-12-12T05:24:46.526Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2461\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086526-yskflkxbf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085755-b2in4qp0i\"}]","start":"2025-12-31T15:45:00.000Z","end":"2025-12-31T16:00:00.000Z","created":"2025-12-12T05:24:46.526Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3766\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086528-zranqpz74","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085827-06qjafcky\"}]","start":"2026-03-26T15:15:00.000Z","end":"2026-03-26T15:30:00.000Z","created":"2025-12-12T05:24:46.528Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7818\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.528Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086528-dkz0g6lnl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085865-s7ji4v628\"}]","start":"2026-05-08T19:15:00.000Z","end":"2026-05-08T19:30:00.000Z","created":"2025-12-12T05:24:46.528Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5587\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.528Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086528-3u6f47kkw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085758-sn70brf7s\"}]","start":"2026-01-02T14:15:00.000Z","end":"2026-01-02T14:30:00.000Z","created":"2025-12-12T05:24:46.528Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-2648\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.528Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086528-q91sp37rx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085772-1un5a85no\"}]","start":"2026-01-21T14:00:00.000Z","end":"2026-01-21T14:15:00.000Z","created":"2025-12-12T05:24:46.528Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3182\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.528Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-bujvm9sdb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085841-7oh8b5hq5\"}]","start":"2026-04-13T16:00:00.000Z","end":"2026-04-13T16:15:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-3727\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-n9zp2fz7h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085873-4lngu69y9\"}]","start":"2026-05-20T17:45:00.000Z","end":"2026-05-20T18:00:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3621\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-fz8tajjbj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085766-rxopygkyr\"}]","start":"2026-01-14T13:15:00.000Z","end":"2026-01-14T13:30:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1608\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-8wn2vmypp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085804-po9infxqr\"}]","start":"2026-02-26T20:30:00.000Z","end":"2026-02-26T20:45:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9854\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-pelbroubf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085870-t8zix3aje\"}]","start":"2026-05-15T15:30:00.000Z","end":"2026-05-15T15:45:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-7927\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-ktwr17k4t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085797-7bdo9fqvo\"}]","start":"2026-02-18T18:15:00.000Z","end":"2026-02-18T18:30:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-8877\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-xvtz2ziu2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085844-s46hhvacr\"}]","start":"2026-04-15T17:30:00.000Z","end":"2026-04-15T17:45:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8391\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-hzkqtbr1u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085749-yjw7ta4j7\"}]","start":"2025-12-24T14:15:00.000Z","end":"2025-12-24T14:30:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-9120\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-ejpj5ut2c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085878-pr9wejazd\"}]","start":"2026-05-27T12:15:00.000Z","end":"2026-05-27T12:30:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5632\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-rymerdakv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085827-800jrmuuu\"}]","start":"2026-03-26T13:30:00.000Z","end":"2026-03-26T13:45:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2420\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-5kfmkxv4f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085766-0f3hzrr3f\"}]","start":"2026-01-13T16:45:00.000Z","end":"2026-01-13T17:00:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7586\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086529-jwhxljhva","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085882-o6cpukfet\"}]","start":"2026-05-29T19:15:00.000Z","end":"2026-05-29T19:30:00.000Z","created":"2025-12-12T05:24:46.529Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3038\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-3990qubzc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085799-70kq24495\"}]","start":"2026-02-20T17:45:00.000Z","end":"2026-02-20T18:00:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9931\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-815y4tugo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085839-jm0wxvfky\"}]","start":"2026-04-09T16:30:00.000Z","end":"2026-04-09T16:45:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9328\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-kss9lav5a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085836-a0mjeaf3g\"}]","start":"2026-04-07T13:45:00.000Z","end":"2026-04-07T14:00:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9061\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-8nsd0j98m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085770-cp7ezyjdr\"}]","start":"2026-01-19T13:45:00.000Z","end":"2026-01-19T14:00:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8686\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-e6fljsoux","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085771-5y6r0q2qz\"}]","start":"2026-01-19T20:00:00.000Z","end":"2026-01-19T20:15:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4063\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-hbu4ofys5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085828-rjnwnqekf\"}]","start":"2026-03-26T17:45:00.000Z","end":"2026-03-26T18:00:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-7898\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-vfi6maqm2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085821-nrzdz6fab\"}]","start":"2026-03-18T18:30:00.000Z","end":"2026-03-18T18:45:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-9443\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-k0m3w6wmh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085788-25vvnxf5o\"}]","start":"2026-02-06T20:45:00.000Z","end":"2026-02-06T21:00:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3077\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-wjhdv4q85","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085853-aaxv0i1rh\"}]","start":"2026-04-27T15:45:00.000Z","end":"2026-04-27T16:00:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7656\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-4sud81vvx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-zc6gzh4x1\"}]","start":"2025-12-25T18:15:00.000Z","end":"2025-12-25T18:30:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8459\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-7fg2ancxy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085827-t5ix0a14j\"}]","start":"2026-03-26T12:45:00.000Z","end":"2026-03-26T13:00:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1802\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086530-a1z6fbwve","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085882-ra1yyzge0\"}]","start":"2026-05-29T19:45:00.000Z","end":"2026-05-29T20:00:00.000Z","created":"2025-12-12T05:24:46.530Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-4222\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-w590p1ydb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085885-wxokja7vg\"}]","start":"2026-06-04T12:15:00.000Z","end":"2026-06-04T12:30:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8639\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-wl9dg3cp6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085807-xeo7lc4g4\"}]","start":"2026-03-02T19:45:00.000Z","end":"2026-03-02T20:00:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-5401\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-rhfugge8p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085878-xf8x7zr61\"}]","start":"2026-05-26T17:00:00.000Z","end":"2026-05-26T17:15:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7297\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-q46lr2s19","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085769-7vf2bxhil\"}]","start":"2026-01-15T16:00:00.000Z","end":"2026-01-15T16:15:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5476\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-k9mg0nfc6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085792-o8ibnx4oh\"}]","start":"2026-02-12T18:30:00.000Z","end":"2026-02-12T18:45:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5033\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-1jgie2vgu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085748-zurr51b5t\"}]","start":"2025-12-22T17:00:00.000Z","end":"2025-12-22T17:15:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1959\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-gejcmoewx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085798-xnxz4kayv\"}]","start":"2026-02-19T16:30:00.000Z","end":"2026-02-19T16:45:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-9796\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-fbj860178","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085786-yhvwai8ve\"}]","start":"2026-02-05T14:00:00.000Z","end":"2026-02-05T14:15:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-5781\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-z89nfq3vv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085802-zxedmgfcj\"}]","start":"2026-02-25T15:45:00.000Z","end":"2026-02-25T16:00:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5338\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-gdzvr8j9n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085838-9fnvqnh7z\"}]","start":"2026-04-08T15:15:00.000Z","end":"2026-04-08T15:30:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3705\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-r1ke1a0d0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085773-i8i2t5fr5\"}]","start":"2026-01-21T18:45:00.000Z","end":"2026-01-21T19:00:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5572\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086531-hnuzhkzkj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085817-e01t2f8hu\"}]","start":"2026-03-16T12:15:00.000Z","end":"2026-03-16T12:30:00.000Z","created":"2025-12-12T05:24:46.531Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4766\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-w8o8m2dk3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085850-g810kckbs\"}]","start":"2026-04-22T15:00:00.000Z","end":"2026-04-22T15:15:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4337\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-0ycecq69s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085790-5baxpi3ez\"}]","start":"2026-02-10T20:15:00.000Z","end":"2026-02-10T20:30:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4628\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-v1d4zbdej","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085848-zad9c46ct\"}]","start":"2026-04-21T15:15:00.000Z","end":"2026-04-21T15:30:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6861\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-mf5tb4zfi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-j9kcgn64p\"}]","start":"2026-01-05T16:15:00.000Z","end":"2026-01-05T16:30:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-9193\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-uogepansl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085885-ssxg3qprl\"}]","start":"2026-06-03T18:45:00.000Z","end":"2026-06-03T19:00:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8434\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-mo786x5qn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085851-oz4xu3t3a\"}]","start":"2026-04-22T18:15:00.000Z","end":"2026-04-22T18:30:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-3114\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-oxxsxwj2w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085769-q1t0933au\"}]","start":"2026-01-15T17:15:00.000Z","end":"2026-01-15T17:30:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4922\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-mp5ydyesb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085828-59uxf3q22\"}]","start":"2026-03-26T19:15:00.000Z","end":"2026-03-26T19:30:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3979\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-ptpep1hr1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-og7cv9uu0\"}]","start":"2026-01-02T16:30:00.000Z","end":"2026-01-02T16:45:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-3398\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-kw2vebd7x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085821-sd1tcceqt\"}]","start":"2026-03-19T13:15:00.000Z","end":"2026-03-19T13:30:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-2258\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-flcs60dr3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085817-vl2pd9ywt\"}]","start":"2026-03-16T13:00:00.000Z","end":"2026-03-16T13:15:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9514\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086532-4vl2gs98v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-uhxt04ri8\"}]","start":"2026-01-14T16:45:00.000Z","end":"2026-01-14T17:00:00.000Z","created":"2025-12-12T05:24:46.532Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-5048\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-v27vu4vd1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085744-pwslw0vsy\"}]","start":"2025-12-17T15:00:00.000Z","end":"2025-12-17T15:15:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4748\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-92hbp79es","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085869-o7x6mgxc7\"}]","start":"2026-05-14T17:45:00.000Z","end":"2026-05-14T18:00:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2893\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-1aav9zdi3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085783-1sfr0o4py\"}]","start":"2026-02-02T15:30:00.000Z","end":"2026-02-02T15:45:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-2260\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-quozxjhwg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085835-00k0mjcde\"}]","start":"2026-04-06T19:15:00.000Z","end":"2026-04-06T19:30:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1241\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-ai3w52p8u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-76on9km1h\"}]","start":"2026-01-09T14:45:00.000Z","end":"2026-01-09T15:00:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-2946\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-rmkqkmoyz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085805-3ann4ym23\"}]","start":"2026-02-27T20:00:00.000Z","end":"2026-02-27T20:15:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-1827\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-ibk01fsen","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085741-gr8exkjou\"}]","start":"2025-12-15T14:15:00.000Z","end":"2025-12-15T14:30:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-2998\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-scposuamw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085754-1exdcoawj\"}]","start":"2025-12-30T17:30:00.000Z","end":"2025-12-30T17:45:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-9308\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-evssv90my","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085801-pllkuq2v6\"}]","start":"2026-02-24T15:30:00.000Z","end":"2026-02-24T15:45:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-6081\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-nvgcpsgtz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085880-85en7nvab\"}]","start":"2026-05-28T15:00:00.000Z","end":"2026-05-28T15:15:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5347\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-gsorweth9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085753-iabvtjf3j\"}]","start":"2025-12-26T18:30:00.000Z","end":"2025-12-26T18:45:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3447\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086533-f1ai09zbt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085770-ppkv5s1q9\"}]","start":"2026-01-16T18:45:00.000Z","end":"2026-01-16T19:00:00.000Z","created":"2025-12-12T05:24:46.533Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7036\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-8dvhlln11","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085786-lv4qerbh1\"}]","start":"2026-02-05T19:45:00.000Z","end":"2026-02-05T20:00:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-9871\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-varu6h1oe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085889-7ycnzeqv6\"}]","start":"2026-06-09T13:30:00.000Z","end":"2026-06-09T13:45:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9328\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-jdutnbilz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085864-fkplq557f\"}]","start":"2026-05-08T16:15:00.000Z","end":"2026-05-08T16:30:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8777\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-fmb7wirah","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085792-xmqdrsjya\"}]","start":"2026-02-12T16:45:00.000Z","end":"2026-02-12T17:00:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7452\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-l8y6h5mzs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085753-zvlqv49k6\"}]","start":"2025-12-26T19:30:00.000Z","end":"2025-12-26T19:45:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4786\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-kv3uva8ol","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085887-2pbfj6nvv\"}]","start":"2026-06-05T12:30:00.000Z","end":"2026-06-05T12:45:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3391\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-ho5yhf8xh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085867-rkr519lc8\"}]","start":"2026-05-13T16:30:00.000Z","end":"2026-05-13T16:45:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4778\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-1brrt5qq4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085742-lgzavsutd\"}]","start":"2025-12-15T19:15:00.000Z","end":"2025-12-15T19:30:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3385\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-tbqoh5iwc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085871-9fd1lh8nv\"}]","start":"2026-05-18T19:45:00.000Z","end":"2026-05-18T20:00:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4894\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-i0k9m49rx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085802-t27vkivoh\"}]","start":"2026-02-24T18:15:00.000Z","end":"2026-02-24T18:30:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-1155\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-4x7eoovc4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085817-1nw8f8a53\"}]","start":"2026-03-16T14:00:00.000Z","end":"2026-03-16T14:15:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6795\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086534-et5u1mq4p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085796-zwm7cqzl0\"}]","start":"2026-02-18T13:00:00.000Z","end":"2026-02-18T13:15:00.000Z","created":"2025-12-12T05:24:46.534Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9782\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-eif95m1wz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085844-n56pa5r9x\"}]","start":"2026-04-15T16:15:00.000Z","end":"2026-04-15T16:30:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-6686\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-2t3y0tvdf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085862-wzes07xpw\"}]","start":"2026-05-06T16:00:00.000Z","end":"2026-05-06T16:15:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7032\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-j73p02lnx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085854-1mbhz3575\"}]","start":"2026-04-28T16:30:00.000Z","end":"2026-04-28T16:45:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6747\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-tcsq2pemm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085748-tp7y6vjxo\"}]","start":"2025-12-23T16:00:00.000Z","end":"2025-12-23T16:15:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8493\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-3krw1l05s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085744-x6q1wvo2n\"}]","start":"2025-12-17T15:30:00.000Z","end":"2025-12-17T15:45:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9152\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-pb1nfmd64","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085873-iit0tn7nw\"}]","start":"2026-05-20T16:00:00.000Z","end":"2026-05-20T16:15:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6530\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-ksw0yhg8v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085747-s4z01lhaw\"}]","start":"2025-12-22T16:30:00.000Z","end":"2025-12-22T16:45:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1198\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-r2g2cbzum","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085764-stetxd1ge\"}]","start":"2026-01-09T13:00:00.000Z","end":"2026-01-09T13:15:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7269\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-dkincllcy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085789-k717jy4or\"}]","start":"2026-02-09T13:15:00.000Z","end":"2026-02-09T13:30:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6567\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-df13l1858","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085741-adtfh7nz7\"}]","start":"2025-12-12T18:30:00.000Z","end":"2025-12-12T18:45:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8821\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086535-h127gjerr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085785-jwh1jxmqn\"}]","start":"2026-02-04T13:30:00.000Z","end":"2026-02-04T13:45:00.000Z","created":"2025-12-12T05:24:46.535Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5978\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-r3yxjk3fm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-oxdb2o9of\"}]","start":"2026-01-14T14:00:00.000Z","end":"2026-01-14T14:15:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-4884\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-p55mw40dx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085855-mlbe4q54c\"}]","start":"2026-04-29T15:45:00.000Z","end":"2026-04-29T16:00:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7947\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-0xyuc0wcm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085795-ynplilyya\"}]","start":"2026-02-16T20:45:00.000Z","end":"2026-02-16T21:00:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-2142\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-ywjt1nneo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085770-voxxecppz\"}]","start":"2026-01-16T19:00:00.000Z","end":"2026-01-16T19:15:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8967\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-ksar7umpq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085828-nur1szb05\"}]","start":"2026-03-26T16:30:00.000Z","end":"2026-03-26T16:45:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-5646\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-e0ke00fec","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085857-n5z1i09xh\"}]","start":"2026-04-30T18:30:00.000Z","end":"2026-04-30T18:45:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8993\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-nazd5842k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085883-0fwkdlna3\"}]","start":"2026-06-01T19:30:00.000Z","end":"2026-06-01T19:45:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6343\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-0xzlni3i3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085792-7wbmcgd58\"}]","start":"2026-02-12T18:45:00.000Z","end":"2026-02-12T19:00:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2508\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-ay2nnuskb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085810-x97vj7wdf\"}]","start":"2026-03-06T14:00:00.000Z","end":"2026-03-06T14:15:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2272\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-rpbmyomkp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085876-taaqnjabz\"}]","start":"2026-05-22T13:45:00.000Z","end":"2026-05-22T14:00:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7402\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086536-2c6l7ri0o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085854-yyxcy8vbe\"}]","start":"2026-04-28T18:00:00.000Z","end":"2026-04-28T18:15:00.000Z","created":"2025-12-12T05:24:46.536Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1192\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-7v3iermkb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085804-3hscdgfgr\"}]","start":"2026-02-26T20:45:00.000Z","end":"2026-02-26T21:00:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9240\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-i1j6tfg75","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085865-rvpvk9zzq\"}]","start":"2026-05-11T17:15:00.000Z","end":"2026-05-11T17:30:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-5705\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-2mzl3v8xq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085804-xc60a9tp7\"}]","start":"2026-02-27T15:00:00.000Z","end":"2026-02-27T15:15:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3782\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-3ig92y10l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085795-7w0t17m2t\"}]","start":"2026-02-16T18:15:00.000Z","end":"2026-02-16T18:30:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-1518\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-0hjgkumav","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085819-3t6vapnj5\"}]","start":"2026-03-16T18:15:00.000Z","end":"2026-03-16T18:30:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5048\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-ecddz4twf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085761-5r36mg9hg\"}]","start":"2026-01-07T19:45:00.000Z","end":"2026-01-07T20:00:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-1043\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-i7n0qvdrp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085876-sonabnas2\"}]","start":"2026-05-22T14:00:00.000Z","end":"2026-05-22T14:15:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4886\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-j7slfj4mw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085855-sfivwks93\"}]","start":"2026-04-29T14:45:00.000Z","end":"2026-04-29T15:00:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2306\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086537-vgh4sb83r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085886-13fnrddob\"}]","start":"2026-06-04T17:45:00.000Z","end":"2026-06-04T18:00:00.000Z","created":"2025-12-12T05:24:46.537Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3565\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086539-syhyp2f7b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085889-3x4gacns0\"}]","start":"2026-06-09T13:00:00.000Z","end":"2026-06-09T13:15:00.000Z","created":"2025-12-12T05:24:46.539Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3217\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.539Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086540-bl2b2n5gd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085811-8rgg56676\"}]","start":"2026-03-09T14:00:00.000Z","end":"2026-03-09T14:15:00.000Z","created":"2025-12-12T05:24:46.540Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-3065\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086540-18ci142ya","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085865-9gzo50frf\"}]","start":"2026-05-11T12:30:00.000Z","end":"2026-05-11T12:45:00.000Z","created":"2025-12-12T05:24:46.540Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7286\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086540-3y1ihhw5r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085770-t9xy7rsn5\"}]","start":"2026-01-16T17:00:00.000Z","end":"2026-01-16T17:15:00.000Z","created":"2025-12-12T05:24:46.540Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9376\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086540-w6lh5c2ya","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085845-c4nt04q43\"}]","start":"2026-04-16T17:30:00.000Z","end":"2026-04-16T17:45:00.000Z","created":"2025-12-12T05:24:46.540Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8185\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086540-ujt1kl8l7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085795-81snnj785\"}]","start":"2026-02-16T20:15:00.000Z","end":"2026-02-16T20:30:00.000Z","created":"2025-12-12T05:24:46.540Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-5160\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086540-wuofw9fgv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085878-kxng3iwqo\"}]","start":"2026-05-26T17:30:00.000Z","end":"2026-05-26T17:45:00.000Z","created":"2025-12-12T05:24:46.540Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-6667\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086540-kklx3zifr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085852-agox797d6\"}]","start":"2026-04-24T15:45:00.000Z","end":"2026-04-24T16:00:00.000Z","created":"2025-12-12T05:24:46.540Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-8249\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086540-3tem7nw4h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085864-tvqnpizo8\"}]","start":"2026-05-08T16:00:00.000Z","end":"2026-05-08T16:15:00.000Z","created":"2025-12-12T05:24:46.540Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-7620\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-n738xnsex","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085828-ck8nlz0qn\"}]","start":"2026-03-26T18:00:00.000Z","end":"2026-03-26T18:15:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-4525\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-2cm7j5dsp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085887-yzbazl566\"}]","start":"2026-06-05T12:45:00.000Z","end":"2026-06-05T13:00:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7681\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-l1rklz1fj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085786-33u3gzt7z\"}]","start":"2026-02-05T17:00:00.000Z","end":"2026-02-05T17:15:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4197\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-vhnk7hlpt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085881-ke7m19urb\"}]","start":"2026-05-28T19:00:00.000Z","end":"2026-05-28T19:15:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2733\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-g3757qq46","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085778-a795xby4l\"}]","start":"2026-01-27T15:00:00.000Z","end":"2026-01-27T15:15:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-7015\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-dr2o10oeo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085847-ct4khha77\"}]","start":"2026-04-20T18:15:00.000Z","end":"2026-04-20T18:30:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-1662\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-oe0jq74x6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085882-bbns2in3t\"}]","start":"2026-06-01T14:15:00.000Z","end":"2026-06-01T14:30:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-8892\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-7m256lrhm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085790-2pdexp22v\"}]","start":"2026-02-10T14:30:00.000Z","end":"2026-02-10T14:45:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-3161\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-js3avnz4l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085852-31cbq4vpt\"}]","start":"2026-04-24T12:30:00.000Z","end":"2026-04-24T12:45:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-1311\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-n60cnox3o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085857-i8sy2rxyk\"}]","start":"2026-04-30T14:45:00.000Z","end":"2026-04-30T15:00:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1114\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086541-4oex066nu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085795-jl6dy3eb3\"}]","start":"2026-02-16T17:45:00.000Z","end":"2026-02-16T18:00:00.000Z","created":"2025-12-12T05:24:46.541Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3188\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-rd4hgp1i2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085801-kvpl2qno8\"}]","start":"2026-02-23T19:45:00.000Z","end":"2026-02-23T20:00:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5684\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-upydhsdpq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085759-pf4c8shbq\"}]","start":"2026-01-05T16:45:00.000Z","end":"2026-01-05T17:00:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-8469\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-k3bln8hvg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085804-vvq37qjt0\"}]","start":"2026-02-26T19:30:00.000Z","end":"2026-02-26T19:45:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7718\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-kgmu72oef","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085880-3qi1bn27p\"}]","start":"2026-05-28T16:00:00.000Z","end":"2026-05-28T16:15:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6580\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-b3gvxmrlq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085794-j175m9r74\"}]","start":"2026-02-13T20:00:00.000Z","end":"2026-02-13T20:15:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-8644\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-lqpa7j4bu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085810-ocx7za20n\"}]","start":"2026-03-06T14:30:00.000Z","end":"2026-03-06T14:45:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8945\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-n7bdmz30y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085757-16fx5esf0\"}]","start":"2026-01-01T15:45:00.000Z","end":"2026-01-01T16:00:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2691\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-3yk5cs8o4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085757-8okpk6w82\"}]","start":"2025-12-31T18:00:00.000Z","end":"2025-12-31T18:15:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1519\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-evyj828if","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085766-4nzt238o6\"}]","start":"2026-01-13T16:15:00.000Z","end":"2026-01-13T16:30:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-5089\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-059obx31p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085878-4xk5j1pmy\"}]","start":"2026-05-26T15:15:00.000Z","end":"2026-05-26T15:30:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-4483\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-n8k0yunew","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085789-ktz882nsh\"}]","start":"2026-02-09T16:30:00.000Z","end":"2026-02-09T16:45:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2638\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-xwokeada2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085874-pljygv382\"}]","start":"2026-05-21T13:45:00.000Z","end":"2026-05-21T14:00:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8541\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086542-pgt2p1eq1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085864-vof7cxky8\"}]","start":"2026-05-08T13:45:00.000Z","end":"2026-05-08T14:00:00.000Z","created":"2025-12-12T05:24:46.542Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-5228\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-nrslz12kb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085772-4ykak9eji\"}]","start":"2026-01-20T15:15:00.000Z","end":"2026-01-20T15:30:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6513\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-n3kbexxfs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085803-8jh265zij\"}]","start":"2026-02-26T17:00:00.000Z","end":"2026-02-26T17:15:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-8489\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-m0c6g1d5s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085889-biwhiwu95\"}]","start":"2026-06-09T12:45:00.000Z","end":"2026-06-09T13:00:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-1769\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-wii7bkb0f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085814-oqgupjomp\"}]","start":"2026-03-11T14:00:00.000Z","end":"2026-03-11T14:15:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-2997\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-gq0xdi3hz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085782-w973vbfyq\"}]","start":"2026-01-29T20:00:00.000Z","end":"2026-01-29T20:15:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6960\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-8nmyubh02","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085786-4gcx5h2da\"}]","start":"2026-02-05T13:15:00.000Z","end":"2026-02-05T13:30:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2288\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-vlroce7vr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085803-8n9uq7xu8\"}]","start":"2026-02-25T19:30:00.000Z","end":"2026-02-25T19:45:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1750\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-5v1zj4bs0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085779-63buettry\"}]","start":"2026-01-28T16:00:00.000Z","end":"2026-01-28T16:15:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7992\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-hqalgliua","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085741-czlr6sz3a\"}]","start":"2025-12-15T14:30:00.000Z","end":"2025-12-15T14:45:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8985\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-lirm085wj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085767-fy25g93cg\"}]","start":"2026-01-14T20:00:00.000Z","end":"2026-01-14T20:15:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8730\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-y2mfbpwos","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085825-sp3ldm9e5\"}]","start":"2026-03-24T13:30:00.000Z","end":"2026-03-24T13:45:00.000Z","created":"2025-12-12T05:24:46.543Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3143\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086543-nrkm2szv9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085798-apf7x0846\"}]","start":"2026-02-20T16:00:00.000Z","end":"2026-02-20T16:15:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-7521\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-ml84r1eos","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085819-f9ypc1qlw\"}]","start":"2026-03-16T18:45:00.000Z","end":"2026-03-16T19:00:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-4149\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-3qtcj05jg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085851-046i2r5c5\"}]","start":"2026-04-23T17:00:00.000Z","end":"2026-04-23T17:15:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-6243\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-ui6wyuymn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085827-3owdm6cqj\"}]","start":"2026-03-26T13:45:00.000Z","end":"2026-03-26T14:00:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-3055\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-6wg35o8pg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085855-u9h6yien0\"}]","start":"2026-04-29T13:00:00.000Z","end":"2026-04-29T13:15:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9148\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-gjvt5qr2q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085885-uzltufeot\"}]","start":"2026-06-03T18:00:00.000Z","end":"2026-06-03T18:15:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4913\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-fgzrwubc5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085839-kh7rfyi1n\"}]","start":"2026-04-09T19:00:00.000Z","end":"2026-04-09T19:15:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2846\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-qv36wnj2s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085883-d3zvlkazt\"}]","start":"2026-06-01T15:15:00.000Z","end":"2026-06-01T15:30:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4896\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-4d8rzm55z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085848-r736zq29s\"}]","start":"2026-04-21T18:00:00.000Z","end":"2026-04-21T18:15:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5463\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-xntr3jnbl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085868-uqtre3i68\"}]","start":"2026-05-14T13:00:00.000Z","end":"2026-05-14T13:15:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-8873\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-5am2nwmrz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085748-5czcjtt7t\"}]","start":"2025-12-23T13:45:00.000Z","end":"2025-12-23T14:00:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3010\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-wftbhfnja","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085853-mscohmqqq\"}]","start":"2026-04-24T18:30:00.000Z","end":"2026-04-24T18:45:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8859\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086544-x6rzvoxn3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085820-wn4ydffq0\"}]","start":"2026-03-18T15:15:00.000Z","end":"2026-03-18T15:30:00.000Z","created":"2025-12-12T05:24:46.544Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9274\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-uaokwcln3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085753-h6rdm9ih7\"}]","start":"2025-12-29T13:30:00.000Z","end":"2025-12-29T13:45:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3181\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-kezxt96ll","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085743-3xpyw7g55\"}]","start":"2025-12-16T18:30:00.000Z","end":"2025-12-16T18:45:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4475\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-nkp10p8rm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085810-u4oo822ny\"}]","start":"2026-03-05T20:00:00.000Z","end":"2026-03-05T20:15:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-4463\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-dpgzzu20c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085797-4g3da6u81\"}]","start":"2026-02-19T14:30:00.000Z","end":"2026-02-19T14:45:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2613\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-h4v0s95lc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085807-sotolrvi2\"}]","start":"2026-03-02T20:00:00.000Z","end":"2026-03-02T20:15:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3303\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-g50sufugl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085742-g6oqe6lkg\"}]","start":"2025-12-16T14:30:00.000Z","end":"2025-12-16T14:45:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-7291\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-nosxd9u8a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085760-a5q8y5m7z\"}]","start":"2026-01-05T20:00:00.000Z","end":"2026-01-05T20:15:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-9136\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-klkfnqmdo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085853-zfwxoodsv\"}]","start":"2026-04-24T19:45:00.000Z","end":"2026-04-24T20:00:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4830\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-5ux5y1gdu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085805-r53lo77ns\"}]","start":"2026-02-27T19:00:00.000Z","end":"2026-02-27T19:15:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8287\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-gd4z8w5zg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085846-29596x8b3\"}]","start":"2026-04-17T15:45:00.000Z","end":"2026-04-17T16:00:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5955\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-nd054sfw3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085877-qkpxgds10\"}]","start":"2026-05-25T17:30:00.000Z","end":"2026-05-25T17:45:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-5480\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086545-3ny8lzlr2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085814-z0bnlj9nm\"}]","start":"2026-03-10T19:15:00.000Z","end":"2026-03-10T19:30:00.000Z","created":"2025-12-12T05:24:46.545Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-6683\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-pkguy3fka","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085751-8zn87k9c6\"}]","start":"2025-12-25T13:45:00.000Z","end":"2025-12-25T14:00:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4595\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-8kez9f192","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085793-5mjz44glf\"}]","start":"2026-02-13T14:30:00.000Z","end":"2026-02-13T14:45:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2969\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-si3xfonep","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085877-79v1spfzb\"}]","start":"2026-05-25T14:00:00.000Z","end":"2026-05-25T14:15:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-6181\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-a1ytkvctj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085786-0a437otnj\"}]","start":"2026-02-05T18:00:00.000Z","end":"2026-02-05T18:15:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7015\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-e2wpxpouj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085871-rkx8t7o22\"}]","start":"2026-05-18T14:15:00.000Z","end":"2026-05-18T14:30:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1117\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-me9vyqgds","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085797-7hthn5csg\"}]","start":"2026-02-18T15:30:00.000Z","end":"2026-02-18T15:45:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-2129\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-dctfqnmvy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-lp1mmf2bi\"}]","start":"2026-01-05T15:45:00.000Z","end":"2026-01-05T16:00:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6068\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-3nau8vsjo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085794-fw49109i1\"}]","start":"2026-02-13T19:45:00.000Z","end":"2026-02-13T20:00:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-5389\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-i2zjyl2en","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085761-k9yz4q7o8\"}]","start":"2026-01-07T18:30:00.000Z","end":"2026-01-07T18:45:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4944\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-khbrmlsmm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085766-m315z28bd\"}]","start":"2026-01-14T13:30:00.000Z","end":"2026-01-14T13:45:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1496\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-7x98fe1xz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085791-cx62njkkt\"}]","start":"2026-02-11T17:00:00.000Z","end":"2026-02-11T17:15:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-6321\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086546-c3553n8rc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085871-4at0i7jhj\"}]","start":"2026-05-15T19:45:00.000Z","end":"2026-05-15T20:00:00.000Z","created":"2025-12-12T05:24:46.546Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6242\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-0nv54o6a1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-fppy3ru60\"}]","start":"2026-01-14T19:00:00.000Z","end":"2026-01-14T19:15:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-1141\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-fdtgtqba7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085748-s2ghle8nu\"}]","start":"2025-12-23T15:30:00.000Z","end":"2025-12-23T15:45:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-2805\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-dqc4p0kra","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085864-uand1vgjc\"}]","start":"2026-05-08T15:00:00.000Z","end":"2026-05-08T15:15:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7737\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-atnxuhp44","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085841-dbetymmw7\"}]","start":"2026-04-13T19:45:00.000Z","end":"2026-04-13T20:00:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-7073\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-4i81yv1fi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-ut4pia7dd\"}]","start":"2026-01-14T20:45:00.000Z","end":"2026-01-14T21:00:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-2872\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-f1r7r81j1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085834-7b552ywr1\"}]","start":"2026-04-03T12:00:00.000Z","end":"2026-04-03T12:15:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8978\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-z8ajhlrjh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085887-eafthcm1u\"}]","start":"2026-06-05T13:00:00.000Z","end":"2026-06-05T13:15:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3931\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-3z24jzvdz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085876-sb2c2y8s6\"}]","start":"2026-05-22T18:15:00.000Z","end":"2026-05-22T18:30:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-6977\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-9ppkvvdgj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085882-s29591hzw\"}]","start":"2026-05-29T19:00:00.000Z","end":"2026-05-29T19:15:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-1893\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-vg9x3ygwa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085778-o1dhkc7yd\"}]","start":"2026-01-26T16:30:00.000Z","end":"2026-01-26T16:45:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-7575\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-jcamp8wet","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085763-ozxk8aohq\"}]","start":"2026-01-07T20:30:00.000Z","end":"2026-01-07T20:45:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7872\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086547-dv410vu84","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085879-uazlsn8z5\"}]","start":"2026-05-27T18:30:00.000Z","end":"2026-05-27T18:45:00.000Z","created":"2025-12-12T05:24:46.547Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-2197\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-3nr0k1rx4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085762-868t98pv5\"}]","start":"2026-01-07T20:00:00.000Z","end":"2026-01-07T20:15:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-3745\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-is7sy4kex","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085767-plxgwtv3w\"}]","start":"2026-01-14T18:00:00.000Z","end":"2026-01-14T18:15:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9346\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-l8lau5v8p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085857-jsa5c7qpn\"}]","start":"2026-04-30T12:30:00.000Z","end":"2026-04-30T12:45:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4379\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-athybb0lo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085802-5oqgov197\"}]","start":"2026-02-24T18:00:00.000Z","end":"2026-02-24T18:15:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1204\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-r4o47d5er","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085791-9vm089odb\"}]","start":"2026-02-11T18:00:00.000Z","end":"2026-02-11T18:15:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3034\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-gl0op5zt9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085775-8lobjhtum\"}]","start":"2026-01-22T16:30:00.000Z","end":"2026-01-22T16:45:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5272\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-qk416shko","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085867-6254nxkk9\"}]","start":"2026-05-12T19:30:00.000Z","end":"2026-05-12T19:45:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3710\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-gejalolgk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085807-r456u5i0p\"}]","start":"2026-03-03T17:15:00.000Z","end":"2026-03-03T17:30:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7104\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-z5qhbsx9w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085885-httuzivrl\"}]","start":"2026-06-04T15:00:00.000Z","end":"2026-06-04T15:15:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1947\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-5w75s4je3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085785-cp9blzwjo\"}]","start":"2026-02-03T19:45:00.000Z","end":"2026-02-03T20:00:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8235\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-eqx1kfiww","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085881-tfrlnt3ev\"}]","start":"2026-05-29T12:45:00.000Z","end":"2026-05-29T13:00:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1926\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086548-7qhqe1nbh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085872-m4tbwma7w\"}]","start":"2026-05-19T13:30:00.000Z","end":"2026-05-19T13:45:00.000Z","created":"2025-12-12T05:24:46.548Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4258\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-sj9kpge7w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085808-bx2vslmay\"}]","start":"2026-03-04T14:30:00.000Z","end":"2026-03-04T14:45:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5608\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-rzb0vnljz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085754-aatojkrnt\"}]","start":"2025-12-29T20:30:00.000Z","end":"2025-12-29T20:45:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5267\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-miqz4wcub","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085844-rx6hvauvh\"}]","start":"2026-04-15T14:30:00.000Z","end":"2026-04-15T14:45:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7204\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-029g6n95d","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085875-eolrkhebc\"}]","start":"2026-05-21T15:45:00.000Z","end":"2026-05-21T16:00:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-9764\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-tely51zfw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085747-dqfhb1n34\"}]","start":"2025-12-22T13:15:00.000Z","end":"2025-12-22T13:30:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8297\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-ocncpu90j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085769-jypyipqe1\"}]","start":"2026-01-16T13:30:00.000Z","end":"2026-01-16T13:45:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6786\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-b80vrgk1t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-0l0xrpx18\"}]","start":"2026-01-09T18:45:00.000Z","end":"2026-01-09T19:00:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-6654\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-f5rclosv0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085769-adniowe4j\"}]","start":"2026-01-16T13:45:00.000Z","end":"2026-01-16T14:00:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3167\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086549-2gcdo3a1m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085783-lrl9nrh3x\"}]","start":"2026-01-30T17:30:00.000Z","end":"2026-01-30T17:45:00.000Z","created":"2025-12-12T05:24:46.549Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8005\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-a72sc1qi5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085770-ihj1vru8r\"}]","start":"2026-01-19T14:00:00.000Z","end":"2026-01-19T14:15:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8619\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-yyyztpoms","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085868-xmmjzyw1z\"}]","start":"2026-05-13T19:30:00.000Z","end":"2026-05-13T19:45:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7550\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-cqq5pn506","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085827-zf1f59wr2\"}]","start":"2026-03-25T18:45:00.000Z","end":"2026-03-25T19:00:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7626\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-dfjekq1k1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085752-0xtzf3cew\"}]","start":"2025-12-26T16:00:00.000Z","end":"2025-12-26T16:15:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5906\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-uoto1hpgu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085875-85wfb4hec\"}]","start":"2026-05-21T15:30:00.000Z","end":"2026-05-21T15:45:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5800\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-5djvsdy74","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085784-w2a1lpejm\"}]","start":"2026-02-02T18:45:00.000Z","end":"2026-02-02T19:00:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9993\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-67apu33uz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085860-is6gpynwo\"}]","start":"2026-05-04T16:30:00.000Z","end":"2026-05-04T16:45:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-9151\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-det0akayx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085826-51ue4e2ik\"}]","start":"2026-03-25T14:45:00.000Z","end":"2026-03-25T15:00:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1783\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-wq16xuoyh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085797-13ab31fo5\"}]","start":"2026-02-19T13:15:00.000Z","end":"2026-02-19T13:30:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6382\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-9en8ygzsg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085807-cjwpp8oiq\"}]","start":"2026-03-03T15:15:00.000Z","end":"2026-03-03T15:30:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-5895\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-5orfwogxq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085748-54lg2axnk\"}]","start":"2025-12-22T19:30:00.000Z","end":"2025-12-22T19:45:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-2231\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086552-p0rosj0dn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085840-1k1xy3ook\"}]","start":"2026-04-10T12:45:00.000Z","end":"2026-04-10T13:00:00.000Z","created":"2025-12-12T05:24:46.552Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-9063\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-zk48opwv6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085786-fxd9zc5h8\"}]","start":"2026-02-05T16:30:00.000Z","end":"2026-02-05T16:45:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-1703\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-ro3kue63g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085770-o1pgprson\"}]","start":"2026-01-16T14:00:00.000Z","end":"2026-01-16T14:15:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-4095\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-9hj6xpuvb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-6bb262w3x\"}]","start":"2026-05-11T16:30:00.000Z","end":"2026-05-11T16:45:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7075\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-5eclwg5r6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085854-z8ae4vkwm\"}]","start":"2026-04-28T15:15:00.000Z","end":"2026-04-28T15:30:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6758\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-2wo2ucto5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085773-pdacjslzu\"}]","start":"2026-01-21T15:15:00.000Z","end":"2026-01-21T15:30:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8880\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-r4tqtvuhn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085803-rhafiws69\"}]","start":"2026-02-26T15:45:00.000Z","end":"2026-02-26T16:00:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6528\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-ouoihrjsb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085838-853xxmf7t\"}]","start":"2026-04-09T12:15:00.000Z","end":"2026-04-09T12:30:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4265\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-cank1hkgy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085840-vn2tavjr2\"}]","start":"2026-04-10T13:45:00.000Z","end":"2026-04-10T14:00:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-5744\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-c6wom1wzg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085882-m1205lvdj\"}]","start":"2026-05-29T15:30:00.000Z","end":"2026-05-29T15:45:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8583\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-y3axvetah","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085754-66dce95kr\"}]","start":"2025-12-30T16:00:00.000Z","end":"2025-12-30T16:15:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6926\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-gkaswhvyb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085742-jtbgwizh0\"}]","start":"2025-12-15T18:45:00.000Z","end":"2025-12-15T19:00:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-4699\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-7of7u93p4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085861-10yfm3zqq\"}]","start":"2026-05-06T15:30:00.000Z","end":"2026-05-06T15:45:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9299\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086553-9agwcl8g7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085809-p50ztx8rd\"}]","start":"2026-03-04T19:30:00.000Z","end":"2026-03-04T19:45:00.000Z","created":"2025-12-12T05:24:46.553Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-5219\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-9c427jhoz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085790-l38rs5epx\"}]","start":"2026-02-10T15:30:00.000Z","end":"2026-02-10T15:45:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-2154\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-0agbes0jl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085879-1xkv6kgjr\"}]","start":"2026-05-27T18:00:00.000Z","end":"2026-05-27T18:15:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-7245\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-ogsjwlnlm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085769-51ciunwxp\"}]","start":"2026-01-15T20:30:00.000Z","end":"2026-01-15T20:45:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-9439\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-8pv6ochyl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085807-pmcruzvk0\"}]","start":"2026-03-02T20:45:00.000Z","end":"2026-03-02T21:00:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-4097\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-ngzq7ilnp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085826-eios1qrwy\"}]","start":"2026-03-24T16:30:00.000Z","end":"2026-03-24T16:45:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-4310\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-nkdtf5m0n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085838-9jwzx2axx\"}]","start":"2026-04-08T17:30:00.000Z","end":"2026-04-08T17:45:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-9233\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-a75ta8npz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085873-qov6a05rt\"}]","start":"2026-05-20T18:45:00.000Z","end":"2026-05-20T19:00:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-1490\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-elvhicey2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085770-xtzi2ng0c\"}]","start":"2026-01-16T19:45:00.000Z","end":"2026-01-16T20:00:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3657\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-8xvgq6fb2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085860-bj1rup1la\"}]","start":"2026-05-04T18:15:00.000Z","end":"2026-05-04T18:30:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-3619\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-1m40vwsye","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085811-52b94qqhx\"}]","start":"2026-03-09T12:45:00.000Z","end":"2026-03-09T13:00:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9934\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-q0eaqavg2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085798-29e0tv19j\"}]","start":"2026-02-19T20:00:00.000Z","end":"2026-02-19T20:15:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8612\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086554-20bbs5u6m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085748-yabiwe4o1\"}]","start":"2025-12-23T13:15:00.000Z","end":"2025-12-23T13:30:00.000Z","created":"2025-12-12T05:24:46.554Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9933\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-lf85ub4tv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085828-pcbu19yv6\"}]","start":"2026-03-27T13:15:00.000Z","end":"2026-03-27T13:30:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8405\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-yfnz4pmke","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085748-b88vqnfw5\"}]","start":"2025-12-22T19:45:00.000Z","end":"2025-12-22T20:00:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2399\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-e6ddtubee","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085822-s6962sk60\"}]","start":"2026-03-20T15:00:00.000Z","end":"2026-03-20T15:15:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5787\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-ujj8pf6l5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085790-8hst9joj4\"}]","start":"2026-02-10T13:30:00.000Z","end":"2026-02-10T13:45:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8795\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-7rblota0p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085853-pd1rijatm\"}]","start":"2026-04-27T13:45:00.000Z","end":"2026-04-27T14:00:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3460\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-q5dsq09qv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085769-44vg7krek\"}]","start":"2026-01-15T16:15:00.000Z","end":"2026-01-15T16:30:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-9745\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-xilj0juv8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085755-wwv6xrz9r\"}]","start":"2025-12-31T13:45:00.000Z","end":"2025-12-31T14:00:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9800\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-qxl5wtqvv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085752-hry99bo94\"}]","start":"2025-12-26T17:30:00.000Z","end":"2025-12-26T17:45:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3128\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-in1ta4m7b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085806-ys14pr9qu\"}]","start":"2026-03-02T15:30:00.000Z","end":"2026-03-02T15:45:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2057\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-snvfak9bx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085884-8s7v24hqa\"}]","start":"2026-06-03T15:30:00.000Z","end":"2026-06-03T15:45:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-4331\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-s5q1vkb9j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085828-hmlp13vtm\"}]","start":"2026-03-26T19:00:00.000Z","end":"2026-03-26T19:15:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4884\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086555-i67lo6pri","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085804-nh0m1w894\"}]","start":"2026-02-27T14:30:00.000Z","end":"2026-02-27T14:45:00.000Z","created":"2025-12-12T05:24:46.555Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-9765\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-pdm6gcm05","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085767-q4zkt6npl\"}]","start":"2026-01-14T16:00:00.000Z","end":"2026-01-14T16:15:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2470\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-u6lfkax9b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085845-bbchp1zuf\"}]","start":"2026-04-16T15:00:00.000Z","end":"2026-04-16T15:15:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6449\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-9hc4wf0hm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085853-7k3tfvktw\"}]","start":"2026-04-27T14:30:00.000Z","end":"2026-04-27T14:45:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5830\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-m88qvzv3p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085883-1aj1953wh\"}]","start":"2026-06-02T12:45:00.000Z","end":"2026-06-02T13:00:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-6565\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-1xkid4fym","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085826-sromzfbxx\"}]","start":"2026-03-25T14:15:00.000Z","end":"2026-03-25T14:30:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3875\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-8e4y7enjx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085865-7ivz3q0ji\"}]","start":"2026-05-11T16:15:00.000Z","end":"2026-05-11T16:30:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-3844\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-sqbmxf8ei","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085741-wszbp93z9\"}]","start":"2025-12-12T17:45:00.000Z","end":"2025-12-12T18:00:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3171\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-lmt5avkny","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085809-jrz7yh8xo\"}]","start":"2026-03-05T13:15:00.000Z","end":"2026-03-05T13:30:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6321\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-kqubva9dd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-rgsow037o\"}]","start":"2026-01-05T14:30:00.000Z","end":"2026-01-05T14:45:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3526\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086556-qbaing4p2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085840-egyjcd6m8\"}]","start":"2026-04-13T12:15:00.000Z","end":"2026-04-13T12:30:00.000Z","created":"2025-12-12T05:24:46.556Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3470\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-z314fti39","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085779-kzt8hh188\"}]","start":"2026-01-27T18:30:00.000Z","end":"2026-01-27T18:45:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2383\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-9y5asswx5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085755-tcjkmqrrq\"}]","start":"2025-12-30T18:45:00.000Z","end":"2025-12-30T19:00:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3787\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-iqtvuc83x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085840-d90aj2a1i\"}]","start":"2026-04-10T12:30:00.000Z","end":"2026-04-10T12:45:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-8256\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-cfeicpo75","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085746-ir57nqnth\"}]","start":"2025-12-18T18:00:00.000Z","end":"2025-12-18T18:15:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4949\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-yk2gv4r9r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085838-13e1vflwk\"}]","start":"2026-04-09T12:45:00.000Z","end":"2026-04-09T13:00:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6283\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-niv1bub5m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085821-w6yq0bfcp\"}]","start":"2026-03-19T15:30:00.000Z","end":"2026-03-19T15:45:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2555\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-i7dusn2ww","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085878-u0vrk2mt9\"}]","start":"2026-05-26T16:00:00.000Z","end":"2026-05-26T16:15:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9890\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-m73zw1477","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085849-q36d54o73\"}]","start":"2026-04-22T12:15:00.000Z","end":"2026-04-22T12:30:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-2553\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-ohyax68yq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085827-5se8p6zgf\"}]","start":"2026-03-26T15:00:00.000Z","end":"2026-03-26T15:15:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-1014\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-rv5ntl1td","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085785-jdmrkszxc\"}]","start":"2026-02-04T15:45:00.000Z","end":"2026-02-04T16:00:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7263\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-6v36n49uk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085871-1ze0oksks\"}]","start":"2026-05-18T18:30:00.000Z","end":"2026-05-18T18:45:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1067\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086557-u8mek76ga","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085867-dhqb8qkdp\"}]","start":"2026-05-13T12:45:00.000Z","end":"2026-05-13T13:00:00.000Z","created":"2025-12-12T05:24:46.557Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8374\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-2rr5fvbdu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085797-ncwipyzfs\"}]","start":"2026-02-18T20:45:00.000Z","end":"2026-02-18T21:00:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9582\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-spdoqz3t0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-z43htxxxg\"}]","start":"2026-05-08T19:00:00.000Z","end":"2026-05-08T19:15:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-7256\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-hb7331oaw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085828-7x5ndwns2\"}]","start":"2026-03-27T14:00:00.000Z","end":"2026-03-27T14:15:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9074\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-yxipafjus","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085820-nedgfnv61\"}]","start":"2026-03-17T15:30:00.000Z","end":"2026-03-17T15:45:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-4351\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-fn5289an9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085840-0j89ys22z\"}]","start":"2026-04-13T12:45:00.000Z","end":"2026-04-13T13:00:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2568\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-3wt5smk7f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085772-mm4ahz30u\"}]","start":"2026-01-20T20:45:00.000Z","end":"2026-01-20T21:00:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4445\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-14tf8vcsn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085742-5tz6zduoo\"}]","start":"2025-12-15T18:00:00.000Z","end":"2025-12-15T18:15:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5129\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-v2p8au7u5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085818-l46oo1ks9\"}]","start":"2026-03-16T16:30:00.000Z","end":"2026-03-16T16:45:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3366\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-fmxr7cs99","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085801-1quvqndeo\"}]","start":"2026-02-24T15:15:00.000Z","end":"2026-02-24T15:30:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-6037\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-zpxgqyneo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085821-6ul0zpg7a\"}]","start":"2026-03-18T18:45:00.000Z","end":"2026-03-18T19:00:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-2672\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-3zw81k8d3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085826-pum7187bv\"}]","start":"2026-03-25T16:30:00.000Z","end":"2026-03-25T16:45:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4459\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086558-i6hnsndhz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085801-fa8pizk36\"}]","start":"2026-02-23T18:00:00.000Z","end":"2026-02-23T18:15:00.000Z","created":"2025-12-12T05:24:46.558Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4492\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-9v4iqaetq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085860-go0kv0csz\"}]","start":"2026-05-05T14:15:00.000Z","end":"2026-05-05T14:30:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5710\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-xoss3fcrv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085819-gudj4d6k4\"}]","start":"2026-03-16T17:15:00.000Z","end":"2026-03-16T17:30:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8132\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-r25d9pn9j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085792-6ontuoma4\"}]","start":"2026-02-12T19:30:00.000Z","end":"2026-02-12T19:45:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1425\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-u6lnj2n6f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085814-2mr3wwc5g\"}]","start":"2026-03-11T15:15:00.000Z","end":"2026-03-11T15:30:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6684\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-l9jjpj5h6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085767-4e1x4mqu7\"}]","start":"2026-01-14T17:00:00.000Z","end":"2026-01-14T17:15:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8030\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-e1j4wpyke","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085885-nnq8b6fn3\"}]","start":"2026-06-04T14:45:00.000Z","end":"2026-06-04T15:00:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-4745\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-zq0oooc9e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085786-rqa73to7m\"}]","start":"2026-02-05T13:30:00.000Z","end":"2026-02-05T13:45:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-8603\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-yara9otze","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085813-avhebd9bi\"}]","start":"2026-03-10T16:45:00.000Z","end":"2026-03-10T17:00:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-6384\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-ekntt0i7q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085877-yn4zk2xpq\"}]","start":"2026-05-25T13:00:00.000Z","end":"2026-05-25T13:15:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8124\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-ould06r6v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085889-m1i4yf177\"}]","start":"2026-06-09T15:30:00.000Z","end":"2026-06-09T15:45:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-2083\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-pu62b89qq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085858-pks7jc6ss\"}]","start":"2026-05-01T14:15:00.000Z","end":"2026-05-01T14:30:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-3734\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086559-jhm0ti8cm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085884-3znvuoc3w\"}]","start":"2026-06-03T13:15:00.000Z","end":"2026-06-03T13:30:00.000Z","created":"2025-12-12T05:24:46.559Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-4987\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-iipw050e6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085767-rl2y104wa\"}]","start":"2026-01-14T17:30:00.000Z","end":"2026-01-14T17:45:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-8326\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-l27sxux3t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085854-ci1c3hhbn\"}]","start":"2026-04-28T14:30:00.000Z","end":"2026-04-28T14:45:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3008\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-tsu91mc4z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085888-m09njr9zd\"}]","start":"2026-06-08T16:00:00.000Z","end":"2026-06-08T16:15:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5732\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-jm1qv4uql","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085844-ae41netkk\"}]","start":"2026-04-16T12:00:00.000Z","end":"2026-04-16T12:15:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1065\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-oec3dw9og","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085766-zhm2bbaiu\"}]","start":"2026-01-13T15:00:00.000Z","end":"2026-01-13T15:15:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-7998\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-irdcalyip","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085758-c42aixaat\"}]","start":"2026-01-02T15:00:00.000Z","end":"2026-01-02T15:15:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6822\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-t77ilbm5o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085861-tnhjlf5av\"}]","start":"2026-05-06T12:00:00.000Z","end":"2026-05-06T12:15:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8544\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-0742zprk5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085758-7b6i3fzz1\"}]","start":"2026-01-01T19:00:00.000Z","end":"2026-01-01T19:15:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4919\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-4dam95uqk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085778-6rre2jyxt\"}]","start":"2026-01-27T15:15:00.000Z","end":"2026-01-27T15:30:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9359\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-f96pyzffv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085769-53pd9aeff\"}]","start":"2026-01-15T15:15:00.000Z","end":"2026-01-15T15:30:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3092\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-57yxpm4vg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085856-170b6m9dh\"}]","start":"2026-04-29T18:15:00.000Z","end":"2026-04-29T18:30:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-6676\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086560-1u2z1vvox","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085776-bcnmofkt0\"}]","start":"2026-01-22T17:30:00.000Z","end":"2026-01-22T17:45:00.000Z","created":"2025-12-12T05:24:46.560Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-6672\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086561-49zrck6o9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085876-9hhokdc5b\"}]","start":"2026-05-22T19:15:00.000Z","end":"2026-05-22T19:30:00.000Z","created":"2025-12-12T05:24:46.561Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-1515\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086561-vtz390gej","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085870-98w55lsuz\"}]","start":"2026-05-15T18:00:00.000Z","end":"2026-05-15T18:15:00.000Z","created":"2025-12-12T05:24:46.561Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7680\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086561-ijso0djdr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085854-alpfzmdbl\"}]","start":"2026-04-28T17:30:00.000Z","end":"2026-04-28T17:45:00.000Z","created":"2025-12-12T05:24:46.561Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-4492\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086561-ff6i7mnva","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085766-gu0baaarl\"}]","start":"2026-01-13T15:30:00.000Z","end":"2026-01-13T15:45:00.000Z","created":"2025-12-12T05:24:46.561Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4029\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086561-l2otxibzc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085871-gov53890c\"}]","start":"2026-05-18T17:30:00.000Z","end":"2026-05-18T17:45:00.000Z","created":"2025-12-12T05:24:46.561Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-9023\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086561-glih09fle","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085755-j4vrn14tf\"}]","start":"2025-12-31T15:30:00.000Z","end":"2025-12-31T15:45:00.000Z","created":"2025-12-12T05:24:46.561Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3754\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086563-b0mpw73cj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085877-98gycltvs\"}]","start":"2026-05-25T12:45:00.000Z","end":"2026-05-25T13:00:00.000Z","created":"2025-12-12T05:24:46.563Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1395\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086563-d63stwwvp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085887-s1kmsip33\"}]","start":"2026-06-05T13:15:00.000Z","end":"2026-06-05T13:30:00.000Z","created":"2025-12-12T05:24:46.563Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-6780\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086563-oxgu7z110","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085743-wder4zdha\"}]","start":"2025-12-16T19:15:00.000Z","end":"2025-12-16T19:30:00.000Z","created":"2025-12-12T05:24:46.563Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2233\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086563-a1j4a5es3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085778-cdcnq8e67\"}]","start":"2026-01-26T15:45:00.000Z","end":"2026-01-26T16:00:00.000Z","created":"2025-12-12T05:24:46.563Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3113\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-j67fjmw05","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085744-u0a1alvs6\"}]","start":"2025-12-17T16:00:00.000Z","end":"2025-12-17T16:15:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6723\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-iufvm1yr0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085821-54lrpr8n2\"}]","start":"2026-03-19T12:15:00.000Z","end":"2026-03-19T12:30:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-2260\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-d0kx56784","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085747-sho3f72xl\"}]","start":"2025-12-22T16:15:00.000Z","end":"2025-12-22T16:30:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8404\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-0d3eclgul","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085752-ok1919lz5\"}]","start":"2025-12-26T13:15:00.000Z","end":"2025-12-26T13:30:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6771\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-kqm7ixz3z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085790-ij0jthf7a\"}]","start":"2026-02-09T20:00:00.000Z","end":"2026-02-09T20:15:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-3591\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-8ntos6ql9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085771-mvuj37ne9\"}]","start":"2026-01-19T19:00:00.000Z","end":"2026-01-19T19:15:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4803\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-0djanh6y5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085787-a6xlul12z\"}]","start":"2026-02-06T14:15:00.000Z","end":"2026-02-06T14:30:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6690\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-es5hni98p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085821-0quy3mntg\"}]","start":"2026-03-18T16:15:00.000Z","end":"2026-03-18T16:30:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2098\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-cyiuve2tm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085856-uhwj8o7zo\"}]","start":"2026-04-29T16:45:00.000Z","end":"2026-04-29T17:00:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3030\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-oe6t1o80b","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085828-2raxqb3n3\"}]","start":"2026-03-27T12:30:00.000Z","end":"2026-03-27T12:45:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-9291\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-ll8s75hjl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085816-0mq45ox5p\"}]","start":"2026-03-12T18:00:00.000Z","end":"2026-03-12T18:15:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8463\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086564-p56lonz58","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085814-j5e580l28\"}]","start":"2026-03-11T15:45:00.000Z","end":"2026-03-11T16:00:00.000Z","created":"2025-12-12T05:24:46.564Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7133\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-4p74li9fs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085827-nhh8rthbi\"}]","start":"2026-03-26T15:30:00.000Z","end":"2026-03-26T15:45:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-6836\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-wqo8nrbg8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085838-vaqym3kcb\"}]","start":"2026-04-08T12:00:00.000Z","end":"2026-04-08T12:15:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1923\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-62vg1q4tl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085819-jprjj43aa\"}]","start":"2026-03-17T13:30:00.000Z","end":"2026-03-17T13:45:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7852\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-5x6tsb9za","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085854-7u2iav6k3\"}]","start":"2026-04-28T12:00:00.000Z","end":"2026-04-28T12:15:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-9776\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-ehtsmkbg6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085828-7ni58ddx4\"}]","start":"2026-03-27T16:45:00.000Z","end":"2026-03-27T17:00:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3147\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-17pb73x48","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085849-v00zlxye4\"}]","start":"2026-04-22T12:00:00.000Z","end":"2026-04-22T12:15:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-6584\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-jqk4lishy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085839-cg0eieq32\"}]","start":"2026-04-10T12:00:00.000Z","end":"2026-04-10T12:15:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-1320\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-9ukwexcb3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085769-kl15jwlk8\"}]","start":"2026-01-15T15:00:00.000Z","end":"2026-01-15T15:15:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-5276\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-0wnzazf0c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085817-lh31m22yz\"}]","start":"2026-03-16T12:45:00.000Z","end":"2026-03-16T13:00:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2611\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-30crnthy2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085785-qh2cygo9r\"}]","start":"2026-02-04T13:45:00.000Z","end":"2026-02-04T14:00:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-2426\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-zeqwdggra","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085757-z7u4jk0rw\"}]","start":"2025-12-31T19:45:00.000Z","end":"2025-12-31T20:00:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4012\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086565-svry9n0fp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085878-kbyk8gv4y\"}]","start":"2026-05-26T18:30:00.000Z","end":"2026-05-26T18:45:00.000Z","created":"2025-12-12T05:24:46.565Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-4352\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-4xuw6k4uo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085846-tepxjtklg\"}]","start":"2026-04-20T12:30:00.000Z","end":"2026-04-20T12:45:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5847\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-k9285vyqe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085785-v75vghkhe\"}]","start":"2026-02-04T18:30:00.000Z","end":"2026-02-04T18:45:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-7797\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-hi3himx56","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085852-3ojde7yv8\"}]","start":"2026-04-24T17:00:00.000Z","end":"2026-04-24T17:15:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-2371\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-ilwz5qvkq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085846-g5js0pt9t\"}]","start":"2026-04-17T16:45:00.000Z","end":"2026-04-17T17:00:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5840\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-m0u1b3z31","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085790-ykbmkku3i\"}]","start":"2026-02-10T15:00:00.000Z","end":"2026-02-10T15:15:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-8949\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-q5eq4w612","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085853-jsav16p05\"}]","start":"2026-04-27T17:45:00.000Z","end":"2026-04-27T18:00:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-4556\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-7wrucldkh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085841-qk5bn5x72\"}]","start":"2026-04-14T14:00:00.000Z","end":"2026-04-14T14:15:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-2408\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-9dnjz5vzr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085805-2jlkkzjp6\"}]","start":"2026-02-27T18:30:00.000Z","end":"2026-02-27T18:45:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6899\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-pubipz78h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085789-188ykn8i1\"}]","start":"2026-02-09T17:30:00.000Z","end":"2026-02-09T17:45:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-5894\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-ssg5qzh5o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085826-83itygkg0\"}]","start":"2026-03-24T19:45:00.000Z","end":"2026-03-24T20:00:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6585\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086566-bkb482bt2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085879-rmctdb9ym\"}]","start":"2026-05-27T19:15:00.000Z","end":"2026-05-27T19:30:00.000Z","created":"2025-12-12T05:24:46.566Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-9926\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-0xissn6s0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085882-xym3agf6j\"}]","start":"2026-06-01T13:15:00.000Z","end":"2026-06-01T13:30:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7460\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-3uqib9lsr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085741-yt65v6b4b\"}]","start":"2025-12-12T20:30:00.000Z","end":"2025-12-12T20:45:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-9601\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-ycnxdju3r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085758-6ty14ta8h\"}]","start":"2026-01-01T18:45:00.000Z","end":"2026-01-01T19:00:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-9641\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-w75adfgyu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085880-uryhv6y9k\"}]","start":"2026-05-28T17:00:00.000Z","end":"2026-05-28T17:15:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5404\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-yxn7b71h6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085754-k8x70d6ow\"}]","start":"2025-12-30T13:30:00.000Z","end":"2025-12-30T13:45:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4648\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-9th2em07y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085740-dpr35ydik\"}]","start":"2025-12-12T13:15:00.000Z","end":"2025-12-12T13:30:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2514\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-l25jm4kqq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085844-1blh6phuh\"}]","start":"2026-04-15T15:15:00.000Z","end":"2026-04-15T15:30:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1430\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-0vvw9y1gy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085780-tx86c188a\"}]","start":"2026-01-29T13:30:00.000Z","end":"2026-01-29T13:45:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-4841\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-50d9qw8j8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085822-4ru8xh585\"}]","start":"2026-03-20T13:15:00.000Z","end":"2026-03-20T13:30:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-7231\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-a9eemjan9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085845-be6xpp35y\"}]","start":"2026-04-16T17:45:00.000Z","end":"2026-04-16T18:00:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-2174\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-4c7wntdsz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085772-0el7oz7s9\"}]","start":"2026-01-21T15:00:00.000Z","end":"2026-01-21T15:15:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-6336\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086567-m0liqyz3w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085822-59oymoquq\"}]","start":"2026-03-19T19:45:00.000Z","end":"2026-03-19T20:00:00.000Z","created":"2025-12-12T05:24:46.567Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7662\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-64tn0qi8x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085784-dr38y89dt\"}]","start":"2026-02-02T20:15:00.000Z","end":"2026-02-02T20:30:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-1912\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-elnjju050","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085873-gu75ufp64\"}]","start":"2026-05-20T19:45:00.000Z","end":"2026-05-20T20:00:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7696\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-ym1idwsb5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085858-tt63qq8mp\"}]","start":"2026-05-04T12:15:00.000Z","end":"2026-05-04T12:30:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8990\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-hpdj2fzlo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085798-4z4s61kn4\"}]","start":"2026-02-20T15:45:00.000Z","end":"2026-02-20T16:00:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-3969\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-7iliuxe6v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085872-j8jzcrgom\"}]","start":"2026-05-19T15:45:00.000Z","end":"2026-05-19T16:00:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-7707\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-zjyliriqq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085835-2ucf785e6\"}]","start":"2026-04-06T13:45:00.000Z","end":"2026-04-06T14:00:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-5736\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-cyn7sltiz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085819-x9mu1g47b\"}]","start":"2026-03-17T12:00:00.000Z","end":"2026-03-17T12:15:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-5294\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-o00upqeu0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085767-9aoxy662q\"}]","start":"2026-01-14T19:30:00.000Z","end":"2026-01-14T19:45:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-7844\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-egv3dwarn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085749-elfdk81gg\"}]","start":"2025-12-23T19:15:00.000Z","end":"2025-12-23T19:30:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-7119\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-lt1x2jcb9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085847-tnj428v9p\"}]","start":"2026-04-20T19:15:00.000Z","end":"2026-04-20T19:30:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5893\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-7krkjqnbo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085828-f36zxfnnd\"}]","start":"2026-03-27T14:15:00.000Z","end":"2026-03-27T14:30:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-2040\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086568-xwh8d76ei","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085861-ruk597nb5\"}]","start":"2026-05-06T15:15:00.000Z","end":"2026-05-06T15:30:00.000Z","created":"2025-12-12T05:24:46.568Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4005\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-8yypwzg77","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085877-jr8e89ln7\"}]","start":"2026-05-25T19:30:00.000Z","end":"2026-05-25T19:45:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9284\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-j9j3553cy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085844-w8ixe439l\"}]","start":"2026-04-15T18:30:00.000Z","end":"2026-04-15T18:45:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3735\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-5xbws7nxw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085767-pgzz2yia9\"}]","start":"2026-01-14T19:15:00.000Z","end":"2026-01-14T19:30:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2653\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-ippu5hz80","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085876-1wew8mian\"}]","start":"2026-05-22T16:45:00.000Z","end":"2026-05-22T17:00:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1155\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-lgngpxhm7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085810-7aydm53k2\"}]","start":"2026-03-06T15:00:00.000Z","end":"2026-03-06T15:15:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-3915\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-ynj8jf6sl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085844-3iuuvp3vb\"}]","start":"2026-04-16T13:00:00.000Z","end":"2026-04-16T13:15:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4784\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-b77tvl4xq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085750-zzo6lmfry\"}]","start":"2025-12-24T16:15:00.000Z","end":"2025-12-24T16:30:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-8108\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-gw3nh03r6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085850-95iamku8y\"}]","start":"2026-04-22T13:00:00.000Z","end":"2026-04-22T13:15:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2970\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-2dvrw6oil","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085788-lfhiik5gp\"}]","start":"2026-02-06T17:45:00.000Z","end":"2026-02-06T18:00:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3014\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-9sju871gj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085888-9i32wsdoy\"}]","start":"2026-06-08T17:00:00.000Z","end":"2026-06-08T17:15:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2824\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-stukrnd8f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085867-04464jobb\"}]","start":"2026-05-13T17:30:00.000Z","end":"2026-05-13T17:45:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-2351\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-9e8nee5cg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085842-94zykx76a\"}]","start":"2026-04-14T17:15:00.000Z","end":"2026-04-14T17:30:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-9366\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086569-x0nggukuw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085742-65u6stbiq\"}]","start":"2025-12-15T17:15:00.000Z","end":"2025-12-15T17:30:00.000Z","created":"2025-12-12T05:24:46.569Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6068\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-a996fv31j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085825-pgpe9okxs\"}]","start":"2026-03-24T13:45:00.000Z","end":"2026-03-24T14:00:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-8668\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-ecops3t3o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085852-ha7lru7bu\"}]","start":"2026-04-24T16:45:00.000Z","end":"2026-04-24T17:00:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5117\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-jnvdgc93u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085798-wlcgzn9b3\"}]","start":"2026-02-19T16:00:00.000Z","end":"2026-02-19T16:15:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-6817\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-7m7i6ri6o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085745-asgpu4q51\"}]","start":"2025-12-17T17:00:00.000Z","end":"2025-12-17T17:15:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-5815\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-ryha8yktt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085842-7lolouc90\"}]","start":"2026-04-14T15:15:00.000Z","end":"2026-04-14T15:30:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-9350\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-t3zkrpclj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085890-7le4ujpeh\"}]","start":"2026-06-09T19:30:00.000Z","end":"2026-06-09T19:45:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-8994\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-5ersz23bn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085750-1uc1m41qb\"}]","start":"2025-12-24T16:00:00.000Z","end":"2025-12-24T16:15:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5030\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-ly00ybq6o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085763-bzspfctkb\"}]","start":"2026-01-07T20:15:00.000Z","end":"2026-01-07T20:30:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5138\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-nikp09o55","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085860-03sl68nb8\"}]","start":"2026-05-04T18:45:00.000Z","end":"2026-05-04T19:00:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-4382\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-kiuw1dnaw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085753-sm0ij1iq3\"}]","start":"2025-12-29T13:15:00.000Z","end":"2025-12-29T13:30:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-4552\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-eioibr32i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085882-7luy1nj5o\"}]","start":"2026-05-29T16:15:00.000Z","end":"2026-05-29T16:30:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-9633\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086570-82swhyzef","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085789-n58szddaf\"}]","start":"2026-02-09T13:00:00.000Z","end":"2026-02-09T13:15:00.000Z","created":"2025-12-12T05:24:46.570Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-6793\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086571-kgjopz27l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085845-b681gm80l\"}]","start":"2026-04-16T14:15:00.000Z","end":"2026-04-16T14:30:00.000Z","created":"2025-12-12T05:24:46.571Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-5283\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086571-culus8cns","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085845-wngh2u7af\"}]","start":"2026-04-16T19:15:00.000Z","end":"2026-04-16T19:30:00.000Z","created":"2025-12-12T05:24:46.571Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-1793\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086571-8oziaku1t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085889-9z95kqto3\"}]","start":"2026-06-09T16:15:00.000Z","end":"2026-06-09T16:30:00.000Z","created":"2025-12-12T05:24:46.571Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6001\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086571-vubslbmb0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-2v2ab2jhr\"}]","start":"2026-05-11T15:45:00.000Z","end":"2026-05-11T16:00:00.000Z","created":"2025-12-12T05:24:46.571Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5347\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086571-0j0vvqmm0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085853-dyxnj8fus\"}]","start":"2026-04-27T15:30:00.000Z","end":"2026-04-27T15:45:00.000Z","created":"2025-12-12T05:24:46.571Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-9070\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086571-tuq4t286f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085882-nes30ouo7\"}]","start":"2026-06-01T13:45:00.000Z","end":"2026-06-01T14:00:00.000Z","created":"2025-12-12T05:24:46.571Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4276\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086572-i2x761qp6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085884-8af8q5riq\"}]","start":"2026-06-03T15:45:00.000Z","end":"2026-06-03T16:00:00.000Z","created":"2025-12-12T05:24:46.572Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8032\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.572Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086572-ro2jp3ylt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085761-yq84qtned\"}]","start":"2026-01-07T18:00:00.000Z","end":"2026-01-07T18:15:00.000Z","created":"2025-12-12T05:24:46.572Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-4145\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.572Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086573-79jvnhekt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085863-198famftx\"}]","start":"2026-05-07T13:15:00.000Z","end":"2026-05-07T13:30:00.000Z","created":"2025-12-12T05:24:46.573Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-4844\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086573-2cmi6zhf6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085838-o3jpag82y\"}]","start":"2026-04-08T16:30:00.000Z","end":"2026-04-08T16:45:00.000Z","created":"2025-12-12T05:24:46.573Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-3271\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086573-kfdswoxtt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085847-ikw7br57f\"}]","start":"2026-04-20T17:45:00.000Z","end":"2026-04-20T18:00:00.000Z","created":"2025-12-12T05:24:46.573Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6384\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086573-epwcpsj6j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085802-ir8wtfmwz\"}]","start":"2026-02-25T13:00:00.000Z","end":"2026-02-25T13:15:00.000Z","created":"2025-12-12T05:24:46.573Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7068\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086573-cinwmx6vf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-gd67odmar\"}]","start":"2025-12-26T13:30:00.000Z","end":"2025-12-26T13:45:00.000Z","created":"2025-12-12T05:24:46.573Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1826\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086573-56hb6zskr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085844-erae7minv\"}]","start":"2026-04-15T14:15:00.000Z","end":"2026-04-15T14:30:00.000Z","created":"2025-12-12T05:24:46.573Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-3052\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086573-dvi9a4u5l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085803-loyca8gns\"}]","start":"2026-02-25T18:30:00.000Z","end":"2026-02-25T18:45:00.000Z","created":"2025-12-12T05:24:46.573Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-4751\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086573-7fxznqh7l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085757-89y140z4d\"}]","start":"2026-01-01T17:30:00.000Z","end":"2026-01-01T17:45:00.000Z","created":"2025-12-12T05:24:46.573Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2465\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086574-6m1mfb3py","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085868-km3fh7ufc\"}]","start":"2026-05-14T13:15:00.000Z","end":"2026-05-14T13:30:00.000Z","created":"2025-12-12T05:24:46.574Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5281\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086574-tokxheu37","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085812-l6h4rwsah\"}]","start":"2026-03-09T18:15:00.000Z","end":"2026-03-09T18:30:00.000Z","created":"2025-12-12T05:24:46.574Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6749\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086574-6tquhsvke","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085764-qtt467jcu\"}]","start":"2026-01-09T14:00:00.000Z","end":"2026-01-09T14:15:00.000Z","created":"2025-12-12T05:24:46.574Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8135\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086574-i724zc131","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085840-24neaz8lf\"}]","start":"2026-04-10T19:45:00.000Z","end":"2026-04-10T20:00:00.000Z","created":"2025-12-12T05:24:46.574Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-9319\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086574-3ijwwmmc8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085871-w2237vj5b\"}]","start":"2026-05-18T16:00:00.000Z","end":"2026-05-18T16:15:00.000Z","created":"2025-12-12T05:24:46.574Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1003\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086576-7m7jbrobu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085872-dy9o7xkx4\"}]","start":"2026-05-20T12:30:00.000Z","end":"2026-05-20T12:45:00.000Z","created":"2025-12-12T05:24:46.576Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-3026\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.576Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086576-7oh431npp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085758-pjjb6xxfv\"}]","start":"2026-01-01T20:15:00.000Z","end":"2026-01-01T20:30:00.000Z","created":"2025-12-12T05:24:46.576Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1514\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.576Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086576-nd42495pt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085766-rxw108ums\"}]","start":"2026-01-13T13:45:00.000Z","end":"2026-01-13T14:00:00.000Z","created":"2025-12-12T05:24:46.576Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7276\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.576Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086576-5pa1m2s9x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085839-sfm1dargt\"}]","start":"2026-04-09T16:45:00.000Z","end":"2026-04-09T17:00:00.000Z","created":"2025-12-12T05:24:46.576Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-9547\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.576Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-abcuzinjf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085792-hcq2d3bbr\"}]","start":"2026-02-12T19:00:00.000Z","end":"2026-02-12T19:15:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4245\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-3d7l7dmxq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085789-njgbai05r\"}]","start":"2026-02-09T18:00:00.000Z","end":"2026-02-09T18:15:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-9833\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-owdkb9mtu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085786-9sfl07lp3\"}]","start":"2026-02-05T19:15:00.000Z","end":"2026-02-05T19:30:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5606\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-xizj47nv9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085770-9w27hziu5\"}]","start":"2026-01-16T17:30:00.000Z","end":"2026-01-16T17:45:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8433\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-nwcuyw3p1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085810-n9yjkithy\"}]","start":"2026-03-06T14:45:00.000Z","end":"2026-03-06T15:00:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-6145\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-2a7pittbr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-8145wpyib\"}]","start":"2025-12-26T14:30:00.000Z","end":"2025-12-26T14:45:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-7237\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-dhemy74b4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085854-8jjaulh8i\"}]","start":"2026-04-28T12:30:00.000Z","end":"2026-04-28T12:45:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5033\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-cvw6jzen3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085759-v52cdb172\"}]","start":"2026-01-05T17:45:00.000Z","end":"2026-01-05T18:00:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9152\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-q8bkv2wge","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085867-kerwmwd3t\"}]","start":"2026-05-12T18:45:00.000Z","end":"2026-05-12T19:00:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-6048\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-u91s8cg1y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085744-nek3d3cno\"}]","start":"2025-12-17T14:00:00.000Z","end":"2025-12-17T14:15:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-6230\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-nr4t2av8c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085844-yaoqvmhoc\"}]","start":"2026-04-16T12:45:00.000Z","end":"2026-04-16T13:00:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4862\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-vtp2ewj84","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085871-2sm18l9rt\"}]","start":"2026-05-18T12:15:00.000Z","end":"2026-05-18T12:30:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-9449\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086577-9mcrf06vf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085878-0wnv3mgji\"}]","start":"2026-05-26T13:30:00.000Z","end":"2026-05-26T13:45:00.000Z","created":"2025-12-12T05:24:46.577Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-3157\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-xv8swjf2p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085757-kktvf9fkf\"}]","start":"2026-01-01T15:15:00.000Z","end":"2026-01-01T15:30:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-3635\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-4z8cth0aw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085846-1xjbbm1pv\"}]","start":"2026-04-17T15:30:00.000Z","end":"2026-04-17T15:45:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-1425\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-7rch22jsv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085885-5m562x78e\"}]","start":"2026-06-03T19:15:00.000Z","end":"2026-06-03T19:30:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5038\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-fhetx4hgp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085747-rj9f5lc1u\"}]","start":"2025-12-22T14:45:00.000Z","end":"2025-12-22T15:00:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1026\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-lx27lpcld","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085769-40nfkxzhj\"}]","start":"2026-01-15T19:30:00.000Z","end":"2026-01-15T19:45:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1901\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-mkh2wkvge","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085748-lkz09wcj9\"}]","start":"2025-12-23T15:00:00.000Z","end":"2025-12-23T15:15:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-8329\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-mo2hwm3yg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085779-1jkk22oev\"}]","start":"2026-01-28T14:15:00.000Z","end":"2026-01-28T14:30:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8382\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-3gvh2a3r0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085883-7havpjgrq\"}]","start":"2026-06-01T15:45:00.000Z","end":"2026-06-01T16:00:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-6241\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-ljq1g0oqg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085838-awt06iw2k\"}]","start":"2026-04-08T13:45:00.000Z","end":"2026-04-08T14:00:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-6133\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-mu3zhqd7k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085823-bs4v3xftq\"}]","start":"2026-03-23T15:30:00.000Z","end":"2026-03-23T15:45:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-2409\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-el0x245a0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085801-368qojpbn\"}]","start":"2026-02-23T16:00:00.000Z","end":"2026-02-23T16:15:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7866\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-n2aw2aa0q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085774-ge8pxd6za\"}]","start":"2026-01-22T14:30:00.000Z","end":"2026-01-22T14:45:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-8402\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086578-y78arvgvn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085773-iqa24sipu\"}]","start":"2026-01-21T18:00:00.000Z","end":"2026-01-21T18:15:00.000Z","created":"2025-12-12T05:24:46.578Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-2443\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-rytl6l8dn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085801-et8zj505y\"}]","start":"2026-02-23T16:45:00.000Z","end":"2026-02-23T17:00:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-1071\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-sdhy5seni","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085820-ubtw6ydm1\"}]","start":"2026-03-18T12:15:00.000Z","end":"2026-03-18T12:30:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-1301\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-0o9tmio3p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085801-5nk2jrqpu\"}]","start":"2026-02-24T13:15:00.000Z","end":"2026-02-24T13:30:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-3473\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-h72745xlg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085785-41ra3x76m\"}]","start":"2026-02-03T20:45:00.000Z","end":"2026-02-03T21:00:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5548\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-13r4gbana","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085796-lzjur8zwv\"}]","start":"2026-02-18T13:30:00.000Z","end":"2026-02-18T13:45:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-7853\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-vwa29o0jv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085881-jzdl3vp2r\"}]","start":"2026-05-29T14:15:00.000Z","end":"2026-05-29T14:30:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1347\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-7rjp24q3u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085783-c8r9b3w11\"}]","start":"2026-01-30T20:00:00.000Z","end":"2026-01-30T20:15:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-4291\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-g22kjtwqb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085741-5pd2na6i3\"}]","start":"2025-12-12T16:15:00.000Z","end":"2025-12-12T16:30:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-7308\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-3c7nuvg9k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085798-uyxcs58wt\"}]","start":"2026-02-19T17:00:00.000Z","end":"2026-02-19T17:15:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7497\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-2lmw69dc4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085765-pzv5j2gwp\"}]","start":"2026-01-09T20:45:00.000Z","end":"2026-01-09T21:00:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-2004\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-3vv6269fp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085844-eanonxb03\"}]","start":"2026-04-15T15:00:00.000Z","end":"2026-04-15T15:15:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-6026\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086579-do4ay9exh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085826-09y102eb4\"}]","start":"2026-03-24T19:30:00.000Z","end":"2026-03-24T19:45:00.000Z","created":"2025-12-12T05:24:46.579Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1247\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-c4vc48w4n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085752-rprvhzyfn\"}]","start":"2025-12-26T13:45:00.000Z","end":"2025-12-26T14:00:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-3877\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-3ms4kt8e3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085847-qyjt7zlk3\"}]","start":"2026-04-21T13:45:00.000Z","end":"2026-04-21T14:00:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-8039\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-c8q7une86","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085871-d3a40rgr7\"}]","start":"2026-05-18T19:15:00.000Z","end":"2026-05-18T19:30:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-5033\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-6kt0sudwe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085851-un3shnn8u\"}]","start":"2026-04-22T17:45:00.000Z","end":"2026-04-22T18:00:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1571\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-va4ye9wnp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085800-2gmd033k8\"}]","start":"2026-02-23T13:45:00.000Z","end":"2026-02-23T14:00:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-1136\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-ahi8v6lrv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085774-2vjwf1aiq\"}]","start":"2026-01-22T13:15:00.000Z","end":"2026-01-22T13:30:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-4394\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-88jysiex0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085863-4gupdmqhc\"}]","start":"2026-05-07T13:30:00.000Z","end":"2026-05-07T13:45:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1783\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-0elo99uq6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085759-b97c5oz4i\"}]","start":"2026-01-05T18:00:00.000Z","end":"2026-01-05T18:15:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-7264\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-n7h204d9t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085853-8hnqvjii4\"}]","start":"2026-04-24T19:00:00.000Z","end":"2026-04-24T19:15:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8463\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-43q2xh8my","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085867-rx2d5xhbo\"}]","start":"2026-05-13T17:15:00.000Z","end":"2026-05-13T17:30:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-8099\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-f9dfue59y","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085803-z492ge830\"}]","start":"2026-02-26T14:00:00.000Z","end":"2026-02-26T14:15:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-2184\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-x7uuvf64f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085851-6x2i10mph\"}]","start":"2026-04-23T16:30:00.000Z","end":"2026-04-23T16:45:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-2427\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086580-s4hdfwgrk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085770-xxa8p29dl\"}]","start":"2026-01-16T20:15:00.000Z","end":"2026-01-16T20:30:00.000Z","created":"2025-12-12T05:24:46.580Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-8758\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-zdlsfjjvu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085858-zpqkdu07j\"}]","start":"2026-05-01T13:15:00.000Z","end":"2026-05-01T13:30:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1478\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-8x2rvp6q9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085797-rsw378vry\"}]","start":"2026-02-18T16:30:00.000Z","end":"2026-02-18T16:45:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-2053\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-ijp774h8k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085870-qcty36znn\"}]","start":"2026-05-15T16:30:00.000Z","end":"2026-05-15T16:45:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3227\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-6z5omyb2k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085885-9d9o6u1fd\"}]","start":"2026-06-03T16:45:00.000Z","end":"2026-06-03T17:00:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-8371\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-u3pcxc88u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085761-91ssifju5\"}]","start":"2026-01-07T15:15:00.000Z","end":"2026-01-07T15:30:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4211\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-5w1oyn3f1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085871-nemhcq9qh\"}]","start":"2026-05-18T18:15:00.000Z","end":"2026-05-18T18:30:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-4890\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-y5lfjkjt0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085783-hoxk20l5i\"}]","start":"2026-02-02T16:30:00.000Z","end":"2026-02-02T16:45:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1144\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-rhodvwfxg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085869-9fgf6mej1\"}]","start":"2026-05-14T15:00:00.000Z","end":"2026-05-14T15:15:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-2646\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-84u8xonoa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085850-yjavlubba\"}]","start":"2026-04-22T16:45:00.000Z","end":"2026-04-22T17:00:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7771\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-6avkp9vo1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085857-qm6vlspbj\"}]","start":"2026-04-30T14:00:00.000Z","end":"2026-04-30T14:15:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-5580\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-y8ufcr26i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085778-bcnfmpaet\"}]","start":"2026-01-26T20:30:00.000Z","end":"2026-01-26T20:45:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-7455\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-d4ib9runb","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085818-yreejs6eq\"}]","start":"2026-03-16T15:45:00.000Z","end":"2026-03-16T16:00:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-4608\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086581-d8ebvmev4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085851-rfzoyivwq\"}]","start":"2026-04-22T19:30:00.000Z","end":"2026-04-22T19:45:00.000Z","created":"2025-12-12T05:24:46.581Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4774\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-1ehzv7e13","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-38tmewfvp\"}]","start":"2026-01-09T17:00:00.000Z","end":"2026-01-09T17:15:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-3971\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-owv9dm97r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085824-4jgveabdw\"}]","start":"2026-03-23T16:45:00.000Z","end":"2026-03-23T17:00:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-9630\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-kkupxvht4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085789-178g45j59\"}]","start":"2026-02-09T17:00:00.000Z","end":"2026-02-09T17:15:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-8803\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-ic9vkleq7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085767-d5sds5vzf\"}]","start":"2026-01-14T14:30:00.000Z","end":"2026-01-14T14:45:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-8647\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-fp5kj6m9h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085867-nt7zvqsfc\"}]","start":"2026-05-13T12:30:00.000Z","end":"2026-05-13T12:45:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-9118\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-f8nm91yxo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085779-nbxyd4eho\"}]","start":"2026-01-27T18:45:00.000Z","end":"2026-01-27T19:00:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-6337\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-6r1945lsx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085789-npkzhpd3z\"}]","start":"2026-02-09T15:00:00.000Z","end":"2026-02-09T15:15:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-2682\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-9htrcszp0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085755-1tcin9v6b\"}]","start":"2025-12-31T16:30:00.000Z","end":"2025-12-31T16:45:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-4451\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-t82r50a49","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085826-movt7ektx\"}]","start":"2026-03-25T12:15:00.000Z","end":"2026-03-25T12:30:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4776\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-8qqb7q6hs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085869-ysvy1qix0\"}]","start":"2026-05-14T18:30:00.000Z","end":"2026-05-14T18:45:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-7266\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-xc7n4ki8v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085741-9w56uh520\"}]","start":"2025-12-12T16:30:00.000Z","end":"2025-12-12T16:45:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2328\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-y4axfe2ou","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085801-3s7nlqmtb\"}]","start":"2026-02-24T15:00:00.000Z","end":"2026-02-24T15:15:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-5705\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086582-qylpo1ufv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085807-hppimmm2p\"}]","start":"2026-03-03T17:30:00.000Z","end":"2026-03-03T17:45:00.000Z","created":"2025-12-12T05:24:46.582Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-4214\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-w7gw9r1nz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085796-zltebz147\"}]","start":"2026-02-18T13:15:00.000Z","end":"2026-02-18T13:30:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-2271\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-ffv42oxwl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085760-kqcdnl1mc\"}]","start":"2026-01-05T18:30:00.000Z","end":"2026-01-05T18:45:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-6548\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-66xygnk7k","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085867-affn1dxml\"}]","start":"2026-05-13T14:45:00.000Z","end":"2026-05-13T15:00:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1049\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-tlorlrn93","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085790-vslguc81h\"}]","start":"2026-02-10T17:45:00.000Z","end":"2026-02-10T18:00:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4932\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-cezegqe4s","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085752-k88aao17w\"}]","start":"2025-12-25T16:45:00.000Z","end":"2025-12-25T17:00:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2969\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-kztybkzdg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085834-d5i0efbwh\"}]","start":"2026-04-03T16:00:00.000Z","end":"2026-04-03T16:15:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-4384\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-rw2ipk3v7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085889-aelnc4n5a\"}]","start":"2026-06-09T12:30:00.000Z","end":"2026-06-09T12:45:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-1827\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-oozjryt5f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085754-n1koag2xc\"}]","start":"2025-12-29T19:00:00.000Z","end":"2025-12-29T19:15:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-1159\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-v3xw7cbdg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085802-5y9augs66\"}]","start":"2026-02-25T15:15:00.000Z","end":"2026-02-25T15:30:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-4985\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-p4bvoa4zx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085888-r4md6w6uy\"}]","start":"2026-06-05T18:45:00.000Z","end":"2026-06-05T19:00:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4930\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-7av89ojuf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085884-i1fnztawb\"}]","start":"2026-06-03T15:00:00.000Z","end":"2026-06-03T15:15:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8081\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086583-9rtpy67pe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085863-gpabhkoq4\"}]","start":"2026-05-06T17:45:00.000Z","end":"2026-05-06T18:00:00.000Z","created":"2025-12-12T05:24:46.583Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-2163\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-dzeg47bzn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085752-zeipuz1x9\"}]","start":"2025-12-26T14:00:00.000Z","end":"2025-12-26T14:15:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-1393\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-sldqfovlq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085774-ud7klzweq\"}]","start":"2026-01-22T15:00:00.000Z","end":"2026-01-22T15:15:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-7362\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-oupyx4w1q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085765-l6r7y2iec\"}]","start":"2026-01-09T20:15:00.000Z","end":"2026-01-09T20:30:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-5427\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-opr7b8mcz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085866-z7nwm04lb\"}]","start":"2026-05-12T17:00:00.000Z","end":"2026-05-12T17:15:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-7841\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-r1601ly7w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085860-g2ldaufxz\"}]","start":"2026-05-04T18:30:00.000Z","end":"2026-05-04T18:45:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7727\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-6zbwdqf51","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085858-m4dd3mqrz\"}]","start":"2026-05-01T14:45:00.000Z","end":"2026-05-01T15:00:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-9927\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-p2bwb81yq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085772-vmkz2v792\"}]","start":"2026-01-20T20:15:00.000Z","end":"2026-01-20T20:30:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7885\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-us4132c1t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085770-v4895auop\"}]","start":"2026-01-16T15:30:00.000Z","end":"2026-01-16T15:45:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-2262\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-ajnwnjoxz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085877-xc3ch9zy8\"}]","start":"2026-05-25T17:15:00.000Z","end":"2026-05-25T17:30:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-4459\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-rqtz0oefg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085764-67iaozx5d\"}]","start":"2026-01-09T17:45:00.000Z","end":"2026-01-09T18:00:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-8429\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-qw9f7lya3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085862-99jp20b3q\"}]","start":"2026-05-06T15:45:00.000Z","end":"2026-05-06T16:00:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-4751\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-pzl3twn7p","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085874-yr0iu8oeh\"}]","start":"2026-05-21T14:00:00.000Z","end":"2026-05-21T14:15:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6481\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086584-k0dbeijwi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085795-vr639u4dl\"}]","start":"2026-02-16T13:30:00.000Z","end":"2026-02-16T13:45:00.000Z","created":"2025-12-12T05:24:46.584Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6238\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086585-ojts7wr1o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085826-4kv5b7c94\"}]","start":"2026-03-25T13:30:00.000Z","end":"2026-03-25T13:45:00.000Z","created":"2025-12-12T05:24:46.585Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8037\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086585-fuj7nqsnj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085745-gme13uvmt\"}]","start":"2025-12-17T20:45:00.000Z","end":"2025-12-17T21:00:00.000Z","created":"2025-12-12T05:24:46.585Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-4075\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086585-dg10yw7an","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085789-jhwlljlla\"}]","start":"2026-02-09T14:30:00.000Z","end":"2026-02-09T14:45:00.000Z","created":"2025-12-12T05:24:46.585Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3462\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086585-jkdrulgu0","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085797-3204l8xdl\"}]","start":"2026-02-19T13:30:00.000Z","end":"2026-02-19T13:45:00.000Z","created":"2025-12-12T05:24:46.585Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-9887\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086585-tw60h6fnd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085766-j0dq7accq\"}]","start":"2026-01-13T17:45:00.000Z","end":"2026-01-13T18:00:00.000Z","created":"2025-12-12T05:24:46.585Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-carol-clark-1122\",\"display\":\"Carol Clark\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086585-flmy1ngf6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085808-jst1e309y\"}]","start":"2026-03-03T20:45:00.000Z","end":"2026-03-03T21:00:00.000Z","created":"2025-12-12T05:24:46.585Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-8467\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086585-62z76lfmh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085825-d7yr7knip\"}]","start":"2026-03-24T12:30:00.000Z","end":"2026-03-24T12:45:00.000Z","created":"2025-12-12T05:24:46.585Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-2623\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086587-dvlmvuhb1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085816-z5a6b9vb5\"}]","start":"2026-03-13T12:00:00.000Z","end":"2026-03-13T12:15:00.000Z","created":"2025-12-12T05:24:46.587Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5285\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.587Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086587-du7i6ez83","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085887-bg7ke5ror\"}]","start":"2026-06-05T14:15:00.000Z","end":"2026-06-05T14:30:00.000Z","created":"2025-12-12T05:24:46.587Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-8650\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.587Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086587-z0w3evn5a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085794-whhm21t18\"}]","start":"2026-02-13T20:15:00.000Z","end":"2026-02-13T20:30:00.000Z","created":"2025-12-12T05:24:46.587Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-7282\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.587Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086587-ftuotpq92","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085825-9eg6yv4xb\"}]","start":"2026-03-24T14:00:00.000Z","end":"2026-03-24T14:15:00.000Z","created":"2025-12-12T05:24:46.587Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-3038\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.587Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-y12ve4zwi","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085872-gif3xcaaq\"}]","start":"2026-05-19T14:15:00.000Z","end":"2026-05-19T14:30:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-5687\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-a5slzuknn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085802-q5l336lnu\"}]","start":"2026-02-25T14:15:00.000Z","end":"2026-02-25T14:30:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-9535\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-qew642ncf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085861-1moojnbqf\"}]","start":"2026-05-06T14:15:00.000Z","end":"2026-05-06T14:30:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-5454\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-pjvsw8d67","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085869-gaxjaq6vq\"}]","start":"2026-05-14T15:30:00.000Z","end":"2026-05-14T15:45:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-7595\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-ablgly1qx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085820-stqgnzugn\"}]","start":"2026-03-18T13:15:00.000Z","end":"2026-03-18T13:30:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8005\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-8epldjlt7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085807-wstrbabjs\"}]","start":"2026-03-03T17:45:00.000Z","end":"2026-03-03T18:00:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5498\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-9ebz1shnc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085772-nkp64m80q\"}]","start":"2026-01-20T16:45:00.000Z","end":"2026-01-20T17:00:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-8122\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-n05o9uu3w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085776-sqscp7zhc\"}]","start":"2026-01-23T14:30:00.000Z","end":"2026-01-23T14:45:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1720\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-nwpkrq2nd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085751-wxf1vjdhh\"}]","start":"2025-12-25T15:30:00.000Z","end":"2025-12-25T15:45:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-5339\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-y04j2dhwj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085853-ks221tl88\"}]","start":"2026-04-27T16:45:00.000Z","end":"2026-04-27T17:00:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-5101\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-8vf9oxxao","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085786-bxp88vo87\"}]","start":"2026-02-05T20:15:00.000Z","end":"2026-02-05T20:30:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2994\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086588-wu9dl56ei","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085879-m1i9ugmuh\"}]","start":"2026-05-28T13:30:00.000Z","end":"2026-05-28T13:45:00.000Z","created":"2025-12-12T05:24:46.588Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-7539\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-ijxq0ar8m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085764-wpxl8f80a\"}]","start":"2026-01-09T16:00:00.000Z","end":"2026-01-09T16:15:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7426\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-77rcvdn8r","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085846-bfvxqjh4h\"}]","start":"2026-04-17T17:15:00.000Z","end":"2026-04-17T17:30:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-5663\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-apy55z3ck","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085766-3paqqmwwd\"}]","start":"2026-01-13T18:15:00.000Z","end":"2026-01-13T18:30:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-6360\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-utk8a6hly","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085790-n331611cm\"}]","start":"2026-02-10T19:15:00.000Z","end":"2026-02-10T19:30:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-1877\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-9mk5jhev5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085847-djs3i5b36\"}]","start":"2026-04-20T18:45:00.000Z","end":"2026-04-20T19:00:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5571\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-uafe7i9oy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085889-mxq7gywgk\"}]","start":"2026-06-09T14:30:00.000Z","end":"2026-06-09T14:45:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8800\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-s9pdddksp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085837-go0utoyyx\"}]","start":"2026-04-07T17:15:00.000Z","end":"2026-04-07T17:30:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-1651\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-4krur1yqv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085792-42io02n5t\"}]","start":"2026-02-12T20:45:00.000Z","end":"2026-02-12T21:00:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7457\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-mdqf7fg73","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085759-9vi1rnlrk\"}]","start":"2026-01-05T15:15:00.000Z","end":"2026-01-05T15:30:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-4252\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-aqdw63r8t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085745-xk7i0d8e6\"}]","start":"2025-12-17T20:00:00.000Z","end":"2025-12-17T20:15:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-1262\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086589-tv1tns3xx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085780-xtqmeuh0z\"}]","start":"2026-01-28T18:00:00.000Z","end":"2026-01-28T18:15:00.000Z","created":"2025-12-12T05:24:46.589Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-5260\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-wdizarj1e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085752-32803wc5n\"}]","start":"2025-12-25T16:30:00.000Z","end":"2025-12-25T16:45:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-3430\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-6ebs0m2c6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085852-4e77322up\"}]","start":"2026-04-24T13:30:00.000Z","end":"2026-04-24T13:45:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-5535\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-a5cmmqbhh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085863-s8jyutgm2\"}]","start":"2026-05-07T14:15:00.000Z","end":"2026-05-07T14:30:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1155\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-e5e646j22","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085747-8nrsorvxk\"}]","start":"2025-12-19T17:45:00.000Z","end":"2025-12-19T18:00:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-5736\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-g0sb3at4v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085780-fyuhz8l52\"}]","start":"2026-01-29T15:15:00.000Z","end":"2026-01-29T15:30:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-2108\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-hqs0mjqo3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085876-rybbodihc\"}]","start":"2026-05-25T12:15:00.000Z","end":"2026-05-25T12:30:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-1683\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-bst3izdnn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085846-z40wntug4\"}]","start":"2026-04-20T12:15:00.000Z","end":"2026-04-20T12:30:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-8553\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-pyx1jk0tf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085809-ihme1z13l\"}]","start":"2026-03-05T15:15:00.000Z","end":"2026-03-05T15:30:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-8977\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-zwm9g2bqd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085879-wft9wk6pm\"}]","start":"2026-05-28T12:30:00.000Z","end":"2026-05-28T12:45:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-3851\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-5r1p7jmuy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085745-ldak3dcl5\"}]","start":"2025-12-18T17:30:00.000Z","end":"2025-12-18T17:45:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-2122\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086590-wament3a4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085840-u8ps0es92\"}]","start":"2026-04-10T17:30:00.000Z","end":"2026-04-10T17:45:00.000Z","created":"2025-12-12T05:24:46.590Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-2679\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-bemxl1pxp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085741-152dnnzuc\"}]","start":"2025-12-12T20:00:00.000Z","end":"2025-12-12T20:15:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-8903\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-p1p65aq2c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085885-wsrqm28sc\"}]","start":"2026-06-04T14:00:00.000Z","end":"2026-06-04T14:15:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-5165\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-95616m6n7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085784-018fmxk3r\"}]","start":"2026-02-03T14:15:00.000Z","end":"2026-02-03T14:30:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5158\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-k5ozuutih","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085877-ut4j06cg9\"}]","start":"2026-05-25T18:15:00.000Z","end":"2026-05-25T18:30:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2250\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-bahs29763","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085875-7wzacx79w\"}]","start":"2026-05-21T18:00:00.000Z","end":"2026-05-21T18:15:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-3040\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-rt1sujer7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085794-7k24u9h81\"}]","start":"2026-02-13T18:15:00.000Z","end":"2026-02-13T18:30:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-mia-moore-4869\",\"display\":\"Mia Moore\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-ngzcb420o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085889-phacci95r\"}]","start":"2026-06-09T17:15:00.000Z","end":"2026-06-09T17:30:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-1009\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-60139e0dv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085798-gc00s9mqh\"}]","start":"2026-02-19T17:45:00.000Z","end":"2026-02-19T18:00:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1597\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-4zsmc7gkq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085855-yfjy4qi6p\"}]","start":"2026-04-29T12:45:00.000Z","end":"2026-04-29T13:00:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-4118\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-up41htnnx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085889-mprh1bog1\"}]","start":"2026-06-08T19:30:00.000Z","end":"2026-06-08T19:45:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-6613\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-ti8y0fw72","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085764-81vb3914b\"}]","start":"2026-01-09T19:30:00.000Z","end":"2026-01-09T19:45:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-8252\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086591-zn2dkve4e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085784-dlgw4k4la\"}]","start":"2026-02-03T16:30:00.000Z","end":"2026-02-03T16:45:00.000Z","created":"2025-12-12T05:24:46.591Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-7717\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-wmy52q2kx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085851-3knvo60k0\"}]","start":"2026-04-23T16:15:00.000Z","end":"2026-04-23T16:30:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-1568\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-ifudwxjm1","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085843-cpxx2mc1b\"}]","start":"2026-04-15T13:00:00.000Z","end":"2026-04-15T13:15:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5916\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-6qodwvp0j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085868-dkc8tlb0l\"}]","start":"2026-05-14T12:15:00.000Z","end":"2026-05-14T12:30:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-7350\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-9gvl1tsl3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085876-cf9bxue3g\"}]","start":"2026-05-22T12:30:00.000Z","end":"2026-05-22T12:45:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-3994\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-o88t4s8m2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085854-y4voas3au\"}]","start":"2026-04-28T14:45:00.000Z","end":"2026-04-28T15:00:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-1464\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-53wv5g8jq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085855-wd3lxxp5y\"}]","start":"2026-04-29T15:00:00.000Z","end":"2026-04-29T15:15:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-victor-vincent-4805\",\"display\":\"Victor Vincent\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-8e28k6ayu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085784-ts6uen55r\"}]","start":"2026-02-03T17:00:00.000Z","end":"2026-02-03T17:15:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-6935\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-ngmzyagoy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085834-8726pzuck\"}]","start":"2026-04-03T15:00:00.000Z","end":"2026-04-03T15:15:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-6882\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-3jjjnbe9a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085847-fdtonm179\"}]","start":"2026-04-21T14:30:00.000Z","end":"2026-04-21T14:45:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4721\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-c65es7upx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085741-gbueb7n1u\"}]","start":"2025-12-15T16:15:00.000Z","end":"2025-12-15T16:30:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9523\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-8iut9vgen","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085821-009ebjda2\"}]","start":"2026-03-19T13:45:00.000Z","end":"2026-03-19T14:00:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quincy-quinn-6763\",\"display\":\"Quincy Quinn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086592-pspqdwpcw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085798-guc4bptlc\"}]","start":"2026-02-19T15:30:00.000Z","end":"2026-02-19T15:45:00.000Z","created":"2025-12-12T05:24:46.592Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-6974\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-cd1wepmfe","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085876-96f0oxgct\"}]","start":"2026-05-22T15:00:00.000Z","end":"2026-05-22T15:15:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-6437\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-wzqsqudzm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085748-mg2h0w3yd\"}]","start":"2025-12-23T14:00:00.000Z","end":"2025-12-23T14:15:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-6438\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-qhr9km94v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085779-5mxibmp1i\"}]","start":"2026-01-27T18:00:00.000Z","end":"2026-01-27T18:15:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-8044\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-2snzsti73","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085862-uebt6aude\"}]","start":"2026-05-06T17:15:00.000Z","end":"2026-05-06T17:30:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-5369\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-b9dwd161e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085823-n1wsivfhm\"}]","start":"2026-03-23T12:00:00.000Z","end":"2026-03-23T12:15:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-9075\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-aqn9egmdt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085826-um118z0xg\"}]","start":"2026-03-24T17:45:00.000Z","end":"2026-03-24T18:00:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-6358\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-ana2nk009","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085749-9eni7tugk\"}]","start":"2025-12-23T18:00:00.000Z","end":"2025-12-23T18:15:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zoe-zimmerman-3502\",\"display\":\"Zoe Zimmerman\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-5e04yl42e","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085776-bhus3wh4m\"}]","start":"2026-01-22T19:15:00.000Z","end":"2026-01-22T19:30:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-5920\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-64xmlg7gj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085839-9eeb9wczn\"}]","start":"2026-04-09T14:15:00.000Z","end":"2026-04-09T14:30:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-hugo-hughes-6471\",\"display\":\"Hugo Hughes\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-ghzyy0tgj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085804-sel3y27cl\"}]","start":"2026-02-27T15:30:00.000Z","end":"2026-02-27T15:45:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4369\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-h4sfd0c9i","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085826-l9yhm9wq1\"}]","start":"2026-03-25T13:00:00.000Z","end":"2026-03-25T13:15:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-3750\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086593-pznc0yp4h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085751-ol288yy11\"}]","start":"2025-12-24T19:00:00.000Z","end":"2025-12-24T19:15:00.000Z","created":"2025-12-12T05:24:46.593Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-4013\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-inuxx2abc","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085759-7a0jia8bm\"}]","start":"2026-01-05T14:00:00.000Z","end":"2026-01-05T14:15:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-1789\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-pd0v6nswj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085883-njrz14gdz\"}]","start":"2026-06-01T18:30:00.000Z","end":"2026-06-01T18:45:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5743\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-z2x6ijawh","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085798-wwabhnup6\"}]","start":"2026-02-20T14:15:00.000Z","end":"2026-02-20T14:30:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-1523\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-yfnql31j8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085834-uz80r53i0\"}]","start":"2026-04-03T13:15:00.000Z","end":"2026-04-03T13:30:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-1539\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-dk47tazy7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085874-78hj11s7e\"}]","start":"2026-05-21T12:15:00.000Z","end":"2026-05-21T12:30:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9255\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-kcyb6fp16","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085866-htgwr1sak\"}]","start":"2026-05-12T18:00:00.000Z","end":"2026-05-12T18:15:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-3871\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-5u9rll2m9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085854-aykh35m56\"}]","start":"2026-04-27T19:15:00.000Z","end":"2026-04-27T19:30:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-7530\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-sep0mszjx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085867-uga9h9fya\"}]","start":"2026-05-13T12:15:00.000Z","end":"2026-05-13T12:30:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-2713\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-p0840946l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085827-jrvgxy4js\"}]","start":"2026-03-26T16:00:00.000Z","end":"2026-03-26T16:15:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-6133\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-ncfor9n24","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085858-tcy0od61p\"}]","start":"2026-05-01T19:30:00.000Z","end":"2026-05-01T19:45:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-9986\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-1typhmtjq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085801-n1e26ex6a\"}]","start":"2026-02-23T16:30:00.000Z","end":"2026-02-23T16:45:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-3652\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086594-mhi6mxyz4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085747-ipezwb7lh\"}]","start":"2025-12-22T15:30:00.000Z","end":"2025-12-22T15:45:00.000Z","created":"2025-12-12T05:24:46.594Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6865\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-15s2an07g","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085757-jt69mwhdo\"}]","start":"2025-12-31T17:00:00.000Z","end":"2025-12-31T17:15:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-6517\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-k4wzkwphj","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085828-kn5118iim\"}]","start":"2026-03-26T16:15:00.000Z","end":"2026-03-26T16:30:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-7978\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-rm71xr0qs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085807-qwyr9oobr\"}]","start":"2026-03-03T13:30:00.000Z","end":"2026-03-03T13:45:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-4338\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-i0xnxkh1q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085873-1shxwxblp\"}]","start":"2026-05-20T15:30:00.000Z","end":"2026-05-20T15:45:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2484\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-poq8qhc53","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085777-7cz2etv6n\"}]","start":"2026-01-23T17:45:00.000Z","end":"2026-01-23T18:00:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-8487\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-hefx0b5he","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085746-yikiqqqpd\"}]","start":"2025-12-18T17:45:00.000Z","end":"2025-12-18T18:00:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-1863\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-9sw5z8n8m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085853-bco81t8tl\"}]","start":"2026-04-27T15:00:00.000Z","end":"2026-04-27T15:15:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-7797\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-0ultq3r72","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085800-bbaw94g8s\"}]","start":"2026-02-23T13:15:00.000Z","end":"2026-02-23T13:30:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3949\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-urdemohwp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085744-kj1hq2g9w\"}]","start":"2025-12-17T15:15:00.000Z","end":"2025-12-17T15:30:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-1666\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-ahaycvioa","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085874-ezi7ijjjw\"}]","start":"2026-05-21T14:30:00.000Z","end":"2026-05-21T14:45:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-6220\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-4utb5gigx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085819-728atljgb\"}]","start":"2026-03-16T19:00:00.000Z","end":"2026-03-16T19:15:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-felix-ford-6238\",\"display\":\"Felix Ford\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086595-dei9f82a4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085777-aoziy6afp\"}]","start":"2026-01-23T20:30:00.000Z","end":"2026-01-23T20:45:00.000Z","created":"2025-12-12T05:24:46.595Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-3036\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086596-ucjzyi2ja","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085786-tigtjfj0c\"}]","start":"2026-02-05T16:15:00.000Z","end":"2026-02-05T16:30:00.000Z","created":"2025-12-12T05:24:46.596Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-9790\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086596-l7pttpa81","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085808-k2ga6dn0g\"}]","start":"2026-03-03T19:45:00.000Z","end":"2026-03-03T20:00:00.000Z","created":"2025-12-12T05:24:46.596Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-1644\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086596-a2a55b92l","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085865-7gpj91qf4\"}]","start":"2026-05-11T12:45:00.000Z","end":"2026-05-11T13:00:00.000Z","created":"2025-12-12T05:24:46.596Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5738\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086596-bx978vv39","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085749-buks28dk1\"}]","start":"2025-12-24T14:00:00.000Z","end":"2025-12-24T14:15:00.000Z","created":"2025-12-12T05:24:46.596Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-5191\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086596-g22eyk2wv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085740-u5lks0k46\"}]","start":"2025-12-12T13:30:00.000Z","end":"2025-12-12T13:45:00.000Z","created":"2025-12-12T05:24:46.596Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-7776\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086596-sdcs2c0cn","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085864-o84rrpfj7\"}]","start":"2026-05-08T12:30:00.000Z","end":"2026-05-08T12:45:00.000Z","created":"2025-12-12T05:24:46.596Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-1781\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086596-h0fh48ybs","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085754-cvzvifouh\"}]","start":"2025-12-30T14:45:00.000Z","end":"2025-12-30T15:00:00.000Z","created":"2025-12-12T05:24:46.596Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-dylan-dixon-2674\",\"display\":\"Dylan Dixon\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086596-wtneiti2h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085777-pwka3yvuk\"}]","start":"2026-01-23T16:15:00.000Z","end":"2026-01-23T16:30:00.000Z","created":"2025-12-12T05:24:46.596Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-9297\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-fjtbypg59","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085798-1t2kjtfsp\"}]","start":"2026-02-20T13:45:00.000Z","end":"2026-02-20T14:00:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-8709\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-0ff3rxfhw","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085823-x160wykdw\"}]","start":"2026-03-23T15:00:00.000Z","end":"2026-03-23T15:15:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8574\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-l6idq7g1f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085809-uyxfxz97v\"}]","start":"2026-03-05T14:15:00.000Z","end":"2026-03-05T14:30:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7174\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-zj5j23e69","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085778-foqffi192\"}]","start":"2026-01-27T13:30:00.000Z","end":"2026-01-27T13:45:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-4268\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-oxt25dfgv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085882-2j3s4jqjz\"}]","start":"2026-05-29T16:30:00.000Z","end":"2026-05-29T16:45:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-3909\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-42mrxjlaz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085884-ibb0w71er\"}]","start":"2026-06-02T17:45:00.000Z","end":"2026-06-02T18:00:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yara-young-6944\",\"display\":\"Yara Young\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-koiwyne1o","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085772-p04wl77s7\"}]","start":"2026-01-20T15:00:00.000Z","end":"2026-01-20T15:15:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-henry-harris-5402\",\"display\":\"Henry Harris\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-m6vb4v6xo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085752-qd765sv0u\"}]","start":"2025-12-25T20:15:00.000Z","end":"2025-12-25T20:30:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-5117\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-bdzabs1ij","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085828-6xfl2am34\"}]","start":"2026-03-27T17:00:00.000Z","end":"2026-03-27T17:15:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-1628\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-2cfvu3uk4","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085789-av1sfx3dk\"}]","start":"2026-02-09T18:30:00.000Z","end":"2026-02-09T18:45:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-yvonne-yang-5737\",\"display\":\"Yvonne Yang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-may6qqerl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085789-fesbw0kj2\"}]","start":"2026-02-09T16:15:00.000Z","end":"2026-02-09T16:30:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-9393\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086604-bllkjwi08","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085786-l1p7b0tm9\"}]","start":"2026-02-04T19:15:00.000Z","end":"2026-02-04T19:30:00.000Z","created":"2025-12-12T05:24:46.604Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-5835\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-jdiwl0338","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085785-sf4lj4z4k\"}]","start":"2026-02-04T14:00:00.000Z","end":"2026-02-04T14:15:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-frank-foster-5957\",\"display\":\"Frank Foster\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-mx18twi2h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085863-67wfa4eoz\"}]","start":"2026-05-06T18:45:00.000Z","end":"2026-05-06T19:00:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-8571\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-2vb17mksy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085860-ub94n8qqg\"}]","start":"2026-05-04T19:00:00.000Z","end":"2026-05-04T19:15:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-7663\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-yydd1m8jl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085870-xjkvm53je\"}]","start":"2026-05-15T15:45:00.000Z","end":"2026-05-15T16:00:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-penny-perry-4912\",\"display\":\"Penny Perry\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-0npoa45h5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085828-le7lhszel\"}]","start":"2026-03-27T16:00:00.000Z","end":"2026-03-27T16:15:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-4671\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-7i2dj8g4j","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085745-72d7bbq11\"}]","start":"2025-12-18T13:15:00.000Z","end":"2025-12-18T13:30:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-2910\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-1cx1kzuso","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085862-1908mywg8\"}]","start":"2026-05-06T16:45:00.000Z","end":"2026-05-06T17:00:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-1489\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-nagzceqhr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085863-pm8j2rrim\"}]","start":"2026-05-07T12:00:00.000Z","end":"2026-05-07T12:15:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-3039\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-laiqly4s2","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085854-j3ygi38ar\"}]","start":"2026-04-28T18:15:00.000Z","end":"2026-04-28T18:30:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-2233\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-sas2reqhl","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085826-67f7twz8q\"}]","start":"2026-03-24T17:15:00.000Z","end":"2026-03-24T17:30:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-emma-evans-1142\",\"display\":\"Emma Evans\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-6cyb1sr4c","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085780-jprfcrmih\"}]","start":"2026-01-29T14:30:00.000Z","end":"2026-01-29T14:45:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2213\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086605-whlz3021n","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085782-pzkhsoe9z\"}]","start":"2026-01-30T16:15:00.000Z","end":"2026-01-30T16:30:00.000Z","created":"2025-12-12T05:24:46.605Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6873\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-5x6ukrn8h","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085840-r1jh863af\"}]","start":"2026-04-10T14:30:00.000Z","end":"2026-04-10T14:45:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-isabella-isaac-6122\",\"display\":\"Isabella Isaac\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-gx89zg75w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085767-h5ralblau\"}]","start":"2026-01-14T15:30:00.000Z","end":"2026-01-14T15:45:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-8715\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-3sgvj10dd","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085807-iwbe6374i\"}]","start":"2026-03-02T20:15:00.000Z","end":"2026-03-02T20:30:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-9195\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-ufj0iokek","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085801-x1jietkff\"}]","start":"2026-02-24T13:00:00.000Z","end":"2026-02-24T13:15:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-8612\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-f4v0spf1v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085842-wicnzdfvm\"}]","start":"2026-04-14T15:00:00.000Z","end":"2026-04-14T15:15:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-grace-green-7592\",\"display\":\"Grace Green\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-bxxwfobfz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085814-n2sxfo6rv\"}]","start":"2026-03-11T13:45:00.000Z","end":"2026-03-11T14:00:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-6925\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-o2kw40t0u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085866-i3ngmtqvy\"}]","start":"2026-05-12T13:00:00.000Z","end":"2026-05-12T13:15:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-3589\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-6k1vp4y8f","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085844-h3ko10ryk\"}]","start":"2026-04-15T14:00:00.000Z","end":"2026-04-15T14:15:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-liam-lopez-5874\",\"display\":\"Liam Lopez\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-xh0xvuve5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085817-sxkv7kbjz\"}]","start":"2026-03-16T14:15:00.000Z","end":"2026-03-16T14:30:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-1174\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-zjiy6hbd5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085820-5icsny0uj\"}]","start":"2026-03-18T12:45:00.000Z","end":"2026-03-18T13:00:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-4167\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-l9vjhbybp","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085767-qtcr0cv02\"}]","start":"2026-01-14T18:45:00.000Z","end":"2026-01-14T19:00:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-iris-irving-5292\",\"display\":\"Iris Irving\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086606-s5icqtpo9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085861-9nh5akzms\"}]","start":"2026-05-05T15:45:00.000Z","end":"2026-05-05T16:00:00.000Z","created":"2025-12-12T05:24:46.606Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-amy-adams-8341\",\"display\":\"Amy Adams\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-pni5mon18","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085851-0d6pa6ij7\"}]","start":"2026-04-22T17:30:00.000Z","end":"2026-04-22T17:45:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-9431\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-326rfbkth","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085846-a8rafvcs0\"}]","start":"2026-04-17T18:00:00.000Z","end":"2026-04-17T18:15:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-3014\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-d172izw0v","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085798-1599m74aj\"}]","start":"2026-02-20T14:00:00.000Z","end":"2026-02-20T14:15:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jack-jackson-9931\",\"display\":\"Jack Jackson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-vj1wfq1yu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085784-gnlnoz8ct\"}]","start":"2026-02-03T15:45:00.000Z","end":"2026-02-03T16:00:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-9566\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-i4pieedmt","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085828-55b2nxn6y\"}]","start":"2026-03-26T18:45:00.000Z","end":"2026-03-26T19:00:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-9142\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-akukavvzk","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085829-26xr7uru8\"}]","start":"2026-03-27T18:30:00.000Z","end":"2026-03-27T18:45:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3266\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-sxb2jue01","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085789-guyxim282\"}]","start":"2026-02-09T17:15:00.000Z","end":"2026-02-09T17:30:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-1779\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-cbl7l22f5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085751-i0c1sxmg0\"}]","start":"2025-12-24T18:30:00.000Z","end":"2025-12-24T18:45:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xena-xu-8578\",\"display\":\"Xena Xu\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-cbyjnzql8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085834-c91x5ij0m\"}]","start":"2026-04-03T16:30:00.000Z","end":"2026-04-03T16:45:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-oscar-owens-8158\",\"display\":\"Oscar Owens\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-r83jewk6m","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085870-6suveqrqu\"}]","start":"2026-05-15T17:00:00.000Z","end":"2026-05-15T17:15:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-3136\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-jn41bt0a6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085887-mxqm793wn\"}]","start":"2026-06-05T16:15:00.000Z","end":"2026-06-05T16:30:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ben-baker-5440\",\"display\":\"Ben Baker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086607-exno7solz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085764-lypp20cz9\"}]","start":"2026-01-09T18:00:00.000Z","end":"2026-01-09T18:15:00.000Z","created":"2025-12-12T05:24:46.607Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-1469\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-zbgwt0r1t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Lab Review","slot_refs":"[{\"reference\":\"Slot/1765517085888-v19rjw15v\"}]","start":"2026-06-08T12:45:00.000Z","end":"2026-06-08T13:00:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-1842\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-wmx775qt5","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085829-kz2z24ieg\"}]","start":"2026-03-27T19:00:00.000Z","end":"2026-03-27T19:15:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-bob-brown-5092\",\"display\":\"Bob Brown\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-k0gycmc4q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085861-a98148jb2\"}]","start":"2026-05-05T17:00:00.000Z","end":"2026-05-05T17:15:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-vera-vaughn-5921\",\"display\":\"Vera Vaughn\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-7jxx9vrql","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085826-fflgqkp93\"}]","start":"2026-03-24T18:30:00.000Z","end":"2026-03-24T18:45:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-3375\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-uu07mlfe3","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085791-nm4232yr9\"}]","start":"2026-02-12T13:00:00.000Z","end":"2026-02-12T13:15:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-kate-kelly-7671\",\"display\":\"Kate Kelly\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-kpykx6z2q","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085843-jjukt0npt\"}]","start":"2026-04-15T13:15:00.000Z","end":"2026-04-15T13:30:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-3494\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-dkqg6syco","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085866-n0yagsy0s\"}]","start":"2026-05-12T14:30:00.000Z","end":"2026-05-12T14:45:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-gina-garcia-7952\",\"display\":\"Gina Garcia\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-kvicwwarz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085886-hvioos21l\"}]","start":"2026-06-04T17:30:00.000Z","end":"2026-06-04T17:45:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-3719\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-0t0z9ixfv","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085869-gn8lup5nc\"}]","start":"2026-05-14T17:00:00.000Z","end":"2026-05-14T17:15:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-3731\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-93xj6e2yx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085782-6qr1s88d4\"}]","start":"2026-01-29T19:30:00.000Z","end":"2026-01-29T19:45:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-uma-underwood-2513\",\"display\":\"Uma Underwood\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-butluu6de","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085779-883lyevvk\"}]","start":"2026-01-28T16:45:00.000Z","end":"2026-01-28T17:00:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ella-edwards-5572\",\"display\":\"Ella Edwards\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086608-xxonji6cm","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085747-s2net86kj\"}]","start":"2025-12-22T16:00:00.000Z","end":"2025-12-22T16:15:00.000Z","created":"2025-12-12T05:24:46.608Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rose-reed-4228\",\"display\":\"Rose Reed\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-gx5zqeewg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Chronic Disease Management","slot_refs":"[{\"reference\":\"Slot/1765517085855-9soqv4zxb\"}]","start":"2026-04-29T14:30:00.000Z","end":"2026-04-29T14:45:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-6051\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-n7k1d04wo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085843-8sabua7gh\"}]","start":"2026-04-15T12:30:00.000Z","end":"2026-04-15T12:45:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-wendy-white-7210\",\"display\":\"Wendy White\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-9p93b48xx","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085785-ewvvkwkxv\"}]","start":"2026-02-04T15:30:00.000Z","end":"2026-02-04T15:45:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tara-thomas-7071\",\"display\":\"Tara Thomas\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-24sqc2u8x","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085877-4aoc5mro8\"}]","start":"2026-05-25T17:45:00.000Z","end":"2026-05-25T18:00:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-olivia-oliver-1063\",\"display\":\"Olivia Oliver\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-1kf7u6ttg","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085794-sziqd3hmk\"}]","start":"2026-02-13T19:30:00.000Z","end":"2026-02-13T19:45:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-rachel-robinson-5682\",\"display\":\"Rachel Robinson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-lwj3ng9t8","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085748-bdv5k4kcu\"}]","start":"2025-12-23T16:45:00.000Z","end":"2025-12-23T17:00:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-leo-lewis-3443\",\"display\":\"Leo Lewis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-9d0cszue9","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085765-k9se87r48\"}]","start":"2026-01-09T20:30:00.000Z","end":"2026-01-09T20:45:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-ulysses-upton-7188\",\"display\":\"Ulysses Upton\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-st01as2l6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085749-8l2cad8m3\"}]","start":"2025-12-23T20:00:00.000Z","end":"2025-12-23T20:15:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-3421\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-7i9ob6m5w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085773-41fmulild\"}]","start":"2026-01-21T19:45:00.000Z","end":"2026-01-21T20:00:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sam-smith-7182\",\"display\":\"Sam Smith\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-omhqjwx7a","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085883-1zgcmyt80\"}]","start":"2026-06-02T12:15:00.000Z","end":"2026-06-02T12:30:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-noah-nelson-2186\",\"display\":\"Noah Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-g4x70u4bz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085825-y3rle5fgn\"}]","start":"2026-03-24T16:00:00.000Z","end":"2026-03-24T16:15:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-will-wilson-7956\",\"display\":\"Will Wilson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086609-des0sin5w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Health Screening","slot_refs":"[{\"reference\":\"Slot/1765517085743-2sv8k3x1k\"}]","start":"2025-12-16T18:15:00.000Z","end":"2025-12-16T18:30:00.000Z","created":"2025-12-12T05:24:46.609Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-2375\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-70hixadup","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085828-qknkh65gr\"}]","start":"2026-03-27T15:45:00.000Z","end":"2026-03-27T16:00:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-david-davis-6657\",\"display\":\"David Davis\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-5y0rluqhz","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085826-dz8ifae4i\"}]","start":"2026-03-25T16:00:00.000Z","end":"2026-03-25T16:15:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-zachary-zhang-8872\",\"display\":\"Zachary Zhang\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-c0zrkdwc7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085888-s97hyda2m\"}]","start":"2026-06-05T18:15:00.000Z","end":"2026-06-05T18:30:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-karen-king-3536\",\"display\":\"Karen King\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-6bq3x5bt7","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085791-dcx602izg\"}]","start":"2026-02-11T17:45:00.000Z","end":"2026-02-11T18:00:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-paul-parker-2764\",\"display\":\"Paul Parker\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-jy1489sla","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085772-dhzhwccwa\"}]","start":"2026-01-20T18:45:00.000Z","end":"2026-01-20T19:00:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-1504\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-misw6q99w","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Annual Physical","slot_refs":"[{\"reference\":\"Slot/1765517085853-3o5m9mbvb\"}]","start":"2026-04-27T12:00:00.000Z","end":"2026-04-27T12:15:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-sean-scott-6654\",\"display\":\"Sean Scott\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-qdhgz1ah6","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085866-prwu5g2pe\"}]","start":"2026-05-12T13:15:00.000Z","end":"2026-05-12T13:30:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-jake-jordan-6879\",\"display\":\"Jake Jordan\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-iot5yaklo","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Preventive Care","slot_refs":"[{\"reference\":\"Slot/1765517085867-ec9tsorzz\"}]","start":"2026-05-13T18:00:00.000Z","end":"2026-05-13T18:15:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-tina-taylor-6384\",\"display\":\"Tina Taylor\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-bncpttvfy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"New Patient Visit","slot_refs":"[{\"reference\":\"Slot/1765517085782-lo0grzbpv\"}]","start":"2026-01-30T17:00:00.000Z","end":"2026-01-30T17:15:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-maria-martin-4163\",\"display\":\"Maria Martin\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-92ito2kga","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085840-od0akx90d\"}]","start":"2026-04-10T16:15:00.000Z","end":"2026-04-10T16:30:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-nathan-nelson-5592\",\"display\":\"Nathan Nelson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-fqthz0vbf","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085778-il61zt85b\"}]","start":"2026-01-27T14:30:00.000Z","end":"2026-01-27T14:45:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-xavier-xing-4775\",\"display\":\"Xavier Xing\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-6k81u8yoq","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Sick Visit","slot_refs":"[{\"reference\":\"Slot/1765517085748-z2etxd5s3\"}]","start":"2025-12-22T18:15:00.000Z","end":"2025-12-22T18:30:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-9631\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086610-pm3vsiqgr","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Vaccination","slot_refs":"[{\"reference\":\"Slot/1765517085742-mwcffqqsr\"}]","start":"2025-12-16T15:15:00.000Z","end":"2025-12-16T15:30:00.000Z","created":"2025-12-12T05:24:46.610Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-quinn-queen-5923\",\"display\":\"Quinn Queen\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086611-d5ksl01pu","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Follow-up Visit","slot_refs":"[{\"reference\":\"Slot/1765517085878-3263fixlu\"}]","start":"2026-05-26T15:45:00.000Z","end":"2026-05-26T16:00:00.000Z","created":"2025-12-12T05:24:46.611Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-alice-anderson-7908\",\"display\":\"Alice Anderson\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.611Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517086611-xzbkjwp8u","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":"Medication Management","slot_refs":"[{\"reference\":\"Slot/1765517085817-tzx9nsunq\"}]","start":"2026-03-13T18:45:00.000Z","end":"2026-03-13T19:00:00.000Z","created":"2025-12-12T05:24:46.611Z","comment":"Appointment with Dr. Emily Williams","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"},\"status\":\"accepted\"},{\"actor\":{\"reference\":\"Patient/patient-chloe-carter-8512\",\"display\":\"Chloe Carter\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:24:46.611Z","created_at":"2025-12-12 05:24:46"} +{"id":"1765517100111-rimso7vfy","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":null,"slot_refs":"[{\"reference\":\"Slot/1765517085517-4etpt0d6e\"}]","start":"2025-12-25T21:40:00.000Z","end":"2025-12-25T22:00:00.000Z","created":"2025-12-12T05:25:00.111Z","comment":"Follow-up visit","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Patient/test-patient\",\"display\":\"Test Patient\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:25:00.111Z","created_at":"2025-12-12 05:25:00"} +{"id":"1765517100926-8567gvf7z","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":null,"slot_refs":"[{\"reference\":\"Slot/1765517085518-mma4bjygo\"}]","start":"2025-12-29T21:40:00.000Z","end":"2025-12-29T22:00:00.000Z","created":"2025-12-12T05:25:00.926Z","comment":"","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Patient/\",\"display\":\"\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:25:00.926Z","created_at":"2025-12-12 05:25:00"} +{"id":"1765517108293-inl4jv85t","resource_type":"Appointment","status":"booked","cancelation_reason":null,"service_category":"[]","service_type":"[]","specialty":"[]","appointment_type":null,"reason_code":"[]","priority":null,"description":null,"slot_refs":"[{\"reference\":\"Slot/1765517085529-i2bfa8fft\"}]","start":"2026-01-08T20:40:00.000Z","end":"2026-01-08T21:00:00.000Z","created":"2025-12-12T05:25:08.293Z","comment":"","patient_instruction":null,"participant":"[{\"actor\":{\"reference\":\"Patient/test-patient\",\"display\":\"Test Patient\"},\"status\":\"accepted\"}]","meta_last_updated":"2025-12-12T05:25:08.293Z","created_at":"2025-12-12 05:25:08"} diff --git a/data/seed-metadata.json b/data/seed-metadata.json new file mode 100644 index 0000000..150290e --- /dev/null +++ b/data/seed-metadata.json @@ -0,0 +1,5 @@ +{ + "generationDate": "2026-02-25T00:00:00", + "description": "Seed data generation metadata - commit this file to git", + "note": "Dates in slots/appointments are shifted by (today - generationDate) days" +} diff --git a/data/seed-schedules.jsonl b/data/seed-schedules.jsonl new file mode 100644 index 0000000..e746cf1 --- /dev/null +++ b/data/seed-schedules.jsonl @@ -0,0 +1,3 @@ +{"id":"1765517085502-042iamhtf","resource_type":"Schedule","active":1,"service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","actor":"[{\"reference\":\"Practitioner/practitioner-smith\",\"display\":\"Dr. Sarah Smith\"}]","planning_horizon_start":"2025-12-12T05:24:45.502Z","planning_horizon_end":"2026-06-10T04:24:45.502Z","comment":"Schedule for Dr. Sarah Smith","meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-aveo1wfvt","resource_type":"Schedule","active":1,"service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","actor":"[{\"reference\":\"Practitioner/practitioner-johnson\",\"display\":\"Dr. Michael Johnson\"}]","planning_horizon_start":"2025-12-12T05:24:45.502Z","planning_horizon_end":"2026-06-10T04:24:45.502Z","comment":"Schedule for Dr. Michael Johnson","meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-dcin5zzsh","resource_type":"Schedule","active":1,"service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","actor":"[{\"reference\":\"Practitioner/practitioner-williams\",\"display\":\"Dr. Emily Williams\"}]","planning_horizon_start":"2025-12-12T05:24:45.502Z","planning_horizon_end":"2026-06-10T04:24:45.502Z","comment":"Schedule for Dr. Emily Williams","meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} diff --git a/data/seed-slots.jsonl b/data/seed-slots.jsonl new file mode 100644 index 0000000..177b836 --- /dev/null +++ b/data/seed-slots.jsonl @@ -0,0 +1,10240 @@ +{"id":"1765517085502-db3ssqxu7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T13:00:00.000Z","end":"2025-12-12T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-6osqgxxkf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T13:20:00.000Z","end":"2025-12-12T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-cd1ukonj1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T13:40:00.000Z","end":"2025-12-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-kiboeubw5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T14:00:00.000Z","end":"2025-12-12T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-rn0mnb1ny","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T14:20:00.000Z","end":"2025-12-12T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-1tg7xvkuu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T14:40:00.000Z","end":"2025-12-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-sam1qhkfw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T15:00:00.000Z","end":"2025-12-12T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-6vs7l0qe7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T15:20:00.000Z","end":"2025-12-12T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-gjj27mt5e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T15:40:00.000Z","end":"2025-12-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-p3dshryhs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T16:00:00.000Z","end":"2025-12-12T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-7sycgso83","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T16:20:00.000Z","end":"2025-12-12T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-xhnmfblif","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T16:40:00.000Z","end":"2025-12-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-da0jmtlf2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T17:00:00.000Z","end":"2025-12-12T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-vnvpuyow6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T17:20:00.000Z","end":"2025-12-12T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-th9d5sbeq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T17:40:00.000Z","end":"2025-12-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-62jra3ok6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T18:00:00.000Z","end":"2025-12-12T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-1yxr2ywwl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T18:20:00.000Z","end":"2025-12-12T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085502-2wf0v9k05","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T18:40:00.000Z","end":"2025-12-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-pgyrw4ff1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T19:00:00.000Z","end":"2025-12-12T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-l1pp0g4vc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T19:20:00.000Z","end":"2025-12-12T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-lgbth7gfl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T19:40:00.000Z","end":"2025-12-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-rfxinbkl5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T20:00:00.000Z","end":"2025-12-12T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-hqe76skxk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T20:20:00.000Z","end":"2025-12-12T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-28ggqvixg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T20:40:00.000Z","end":"2025-12-12T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-lzkzgqhlw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T21:00:00.000Z","end":"2025-12-12T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-f1pt8jq3a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-12T21:20:00.000Z","end":"2025-12-12T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-hoopyyui2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-12T21:40:00.000Z","end":"2025-12-12T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-3u1k6xfid","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T13:00:00.000Z","end":"2025-12-15T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-on19yne9u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T13:20:00.000Z","end":"2025-12-15T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-apdbi0fd2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T13:40:00.000Z","end":"2025-12-15T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-sfva1t6hr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T14:00:00.000Z","end":"2025-12-15T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-d7bnd5x2t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T14:20:00.000Z","end":"2025-12-15T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-y7rlzjkwc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T14:40:00.000Z","end":"2025-12-15T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-azo2xoy1m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T15:00:00.000Z","end":"2025-12-15T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-qfabq7luh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T15:20:00.000Z","end":"2025-12-15T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-d4yk9r61e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T15:40:00.000Z","end":"2025-12-15T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-nmmnumg0o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T16:00:00.000Z","end":"2025-12-15T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-lvqlchb03","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T16:20:00.000Z","end":"2025-12-15T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-sieyc2cou","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T16:40:00.000Z","end":"2025-12-15T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085503-8qb7bojjx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T17:00:00.000Z","end":"2025-12-15T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085504-t0hu0iyh1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T17:20:00.000Z","end":"2025-12-15T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085504-zd6sv5ajz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T17:40:00.000Z","end":"2025-12-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085505-7crzmthmq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T18:00:00.000Z","end":"2025-12-15T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.505Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085509-utnru5ns0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T18:20:00.000Z","end":"2025-12-15T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085509-x0l9lna1z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T18:40:00.000Z","end":"2025-12-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085509-9cxw7gitk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T19:00:00.000Z","end":"2025-12-15T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085509-2sizhnfsl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T19:20:00.000Z","end":"2025-12-15T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-qf62qezb4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T19:40:00.000Z","end":"2025-12-15T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-y4rreew22","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T20:00:00.000Z","end":"2025-12-15T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-wpz1040ye","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T20:20:00.000Z","end":"2025-12-15T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-4ot0leytm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T20:40:00.000Z","end":"2025-12-15T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-c0jv71i6y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T21:00:00.000Z","end":"2025-12-15T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-xabmjibfi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-15T21:20:00.000Z","end":"2025-12-15T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-hosckaaca","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-15T21:40:00.000Z","end":"2025-12-15T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-0doopxi4x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T13:00:00.000Z","end":"2025-12-16T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-06immige3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T13:20:00.000Z","end":"2025-12-16T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-zbgtqfs9j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T13:40:00.000Z","end":"2025-12-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-kgbxlm0ak","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T14:00:00.000Z","end":"2025-12-16T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-2wzirehxv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T14:20:00.000Z","end":"2025-12-16T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-l21todgg4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T14:40:00.000Z","end":"2025-12-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-6wbwxh86k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T15:00:00.000Z","end":"2025-12-16T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-hbrlr2wxj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T15:20:00.000Z","end":"2025-12-16T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-t561aviou","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T15:40:00.000Z","end":"2025-12-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-60boc4nzb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T16:00:00.000Z","end":"2025-12-16T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-f2ek5irkn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T16:20:00.000Z","end":"2025-12-16T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-rmio7y7gl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T16:40:00.000Z","end":"2025-12-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-xdda4k7me","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T17:00:00.000Z","end":"2025-12-16T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-vwz5un2b8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T17:20:00.000Z","end":"2025-12-16T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-0dl6vfk31","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T17:40:00.000Z","end":"2025-12-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-haptkc2jp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T18:00:00.000Z","end":"2025-12-16T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-101v73au1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T18:20:00.000Z","end":"2025-12-16T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-zsjres4di","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T18:40:00.000Z","end":"2025-12-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-lw2m0w2f3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T19:00:00.000Z","end":"2025-12-16T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-my2s970vr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T19:20:00.000Z","end":"2025-12-16T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-mq2fwuoig","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T19:40:00.000Z","end":"2025-12-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-ha2z7k63q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T20:00:00.000Z","end":"2025-12-16T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-7yqmihd7j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T20:20:00.000Z","end":"2025-12-16T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-2cgv4umrk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T20:40:00.000Z","end":"2025-12-16T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-d608k6uzs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T21:00:00.000Z","end":"2025-12-16T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-5gid4mtaa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-16T21:20:00.000Z","end":"2025-12-16T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-fzp4x82cs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-16T21:40:00.000Z","end":"2025-12-16T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085510-6dilsbkb4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T13:00:00.000Z","end":"2025-12-17T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-pe9rebfdg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T13:20:00.000Z","end":"2025-12-17T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-ix4082h5y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T13:40:00.000Z","end":"2025-12-17T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-6ay0csu39","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T14:00:00.000Z","end":"2025-12-17T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-nqkmyf0cz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T14:20:00.000Z","end":"2025-12-17T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-22iz1oe25","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T14:40:00.000Z","end":"2025-12-17T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-d8uk7tzlx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T15:00:00.000Z","end":"2025-12-17T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-b2std0mni","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T15:20:00.000Z","end":"2025-12-17T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-wjkoim6o0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T15:40:00.000Z","end":"2025-12-17T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-am9jjljxz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T16:00:00.000Z","end":"2025-12-17T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-hz3j1odtt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T16:20:00.000Z","end":"2025-12-17T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-2unsac5h2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T16:40:00.000Z","end":"2025-12-17T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-v2yqkcubl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T17:00:00.000Z","end":"2025-12-17T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-o2bresx4j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T17:20:00.000Z","end":"2025-12-17T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-39y32yp5v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T17:40:00.000Z","end":"2025-12-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-mpuzpp4js","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T18:00:00.000Z","end":"2025-12-17T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-c38pkzmvi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T18:20:00.000Z","end":"2025-12-17T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-6qxantlfq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T18:40:00.000Z","end":"2025-12-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-y6hnr01o0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T19:00:00.000Z","end":"2025-12-17T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-kjjnodiml","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T19:20:00.000Z","end":"2025-12-17T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-lj4s0zduq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T19:40:00.000Z","end":"2025-12-17T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-k4ta6lxgu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T20:00:00.000Z","end":"2025-12-17T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-pqgacioni","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T20:20:00.000Z","end":"2025-12-17T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-ihwcic6sc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T20:40:00.000Z","end":"2025-12-17T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-juukuzme6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T21:00:00.000Z","end":"2025-12-17T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-fnztvu47z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-17T21:20:00.000Z","end":"2025-12-17T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-mkn4wxzc8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-17T21:40:00.000Z","end":"2025-12-17T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-xc4w3lmz8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T13:00:00.000Z","end":"2025-12-18T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-5086xgxit","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T13:20:00.000Z","end":"2025-12-18T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-nrq2x18r1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T13:40:00.000Z","end":"2025-12-18T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-y5mnof1u9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T14:00:00.000Z","end":"2025-12-18T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-buh1su1mg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T14:20:00.000Z","end":"2025-12-18T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-ylfd500gb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T14:40:00.000Z","end":"2025-12-18T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-epdskm9rg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T15:00:00.000Z","end":"2025-12-18T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-dxb66e868","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T15:20:00.000Z","end":"2025-12-18T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-wtjigy7ln","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T15:40:00.000Z","end":"2025-12-18T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-shcbtmh7j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T16:00:00.000Z","end":"2025-12-18T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085511-5vtj150o5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T16:20:00.000Z","end":"2025-12-18T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-32j5k6di2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T16:40:00.000Z","end":"2025-12-18T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-q8nrqpjvi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T17:00:00.000Z","end":"2025-12-18T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-shvy1qn26","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T17:20:00.000Z","end":"2025-12-18T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-y3950hozm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T17:40:00.000Z","end":"2025-12-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-oauqiih5d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T18:00:00.000Z","end":"2025-12-18T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-8js767kod","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T18:20:00.000Z","end":"2025-12-18T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-iliduwqt5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T18:40:00.000Z","end":"2025-12-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-8yf1e57vz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T19:00:00.000Z","end":"2025-12-18T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-a81yi2mfz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T19:20:00.000Z","end":"2025-12-18T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-18etzfd4z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T19:40:00.000Z","end":"2025-12-18T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-yngwejbke","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T20:00:00.000Z","end":"2025-12-18T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-r7u73vdc7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T20:20:00.000Z","end":"2025-12-18T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-4194cru6c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T20:40:00.000Z","end":"2025-12-18T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-07rkq2k7i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-18T21:00:00.000Z","end":"2025-12-18T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-bydvk9r74","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T21:20:00.000Z","end":"2025-12-18T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-ogu7xy1we","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-18T21:40:00.000Z","end":"2025-12-18T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-1mi8b6n45","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T13:00:00.000Z","end":"2025-12-19T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-fy037c1mv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T13:20:00.000Z","end":"2025-12-19T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-01fj6ryhq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T13:40:00.000Z","end":"2025-12-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-ujr5h1dy6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T14:00:00.000Z","end":"2025-12-19T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-zni9618wr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T14:20:00.000Z","end":"2025-12-19T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-u77adttog","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T14:40:00.000Z","end":"2025-12-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-zu83bpa16","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T15:00:00.000Z","end":"2025-12-19T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-ds7v7077s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T15:20:00.000Z","end":"2025-12-19T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-6eqltdzfo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T15:40:00.000Z","end":"2025-12-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-6dwcq5xzu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T16:00:00.000Z","end":"2025-12-19T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-a12n8wktv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T16:20:00.000Z","end":"2025-12-19T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-ej69jra4j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T16:40:00.000Z","end":"2025-12-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-qfifz2v23","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T17:00:00.000Z","end":"2025-12-19T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-j92hqtar5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T17:20:00.000Z","end":"2025-12-19T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-0xzt4s9tq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T17:40:00.000Z","end":"2025-12-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-9yyt9oro4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T18:00:00.000Z","end":"2025-12-19T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-eqahknp5t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T18:20:00.000Z","end":"2025-12-19T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-23ujp1c4h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T18:40:00.000Z","end":"2025-12-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085512-aqqkqly2h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T19:00:00.000Z","end":"2025-12-19T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-lt2ychbi4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T19:20:00.000Z","end":"2025-12-19T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-cy6lqq8s2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T19:40:00.000Z","end":"2025-12-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-3j8kren6c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-19T20:00:00.000Z","end":"2025-12-19T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-y7r00ye3v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T20:20:00.000Z","end":"2025-12-19T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-iclni1l0s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T20:40:00.000Z","end":"2025-12-19T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-vhcyefnzm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T21:00:00.000Z","end":"2025-12-19T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-8qydnmqoe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T21:20:00.000Z","end":"2025-12-19T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-cxt012dqo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-19T21:40:00.000Z","end":"2025-12-19T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-6ohr72m0f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T13:00:00.000Z","end":"2025-12-22T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-vinh9o8i3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T13:20:00.000Z","end":"2025-12-22T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-cqp7t8gtg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T13:40:00.000Z","end":"2025-12-22T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-p1dgkjjc9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T14:00:00.000Z","end":"2025-12-22T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-pls22c4tp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T14:20:00.000Z","end":"2025-12-22T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-i90e9y0hp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T14:40:00.000Z","end":"2025-12-22T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-fj7zwflld","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-22T15:00:00.000Z","end":"2025-12-22T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-131knhqm1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-22T15:20:00.000Z","end":"2025-12-22T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-zt2fl23km","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T15:40:00.000Z","end":"2025-12-22T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-2x14b95ke","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T16:00:00.000Z","end":"2025-12-22T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-9bfeu3wd4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T16:20:00.000Z","end":"2025-12-22T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-xjlsc21p3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T16:40:00.000Z","end":"2025-12-22T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-qi499w6wf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-22T17:00:00.000Z","end":"2025-12-22T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-3ru6m5ecb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T17:20:00.000Z","end":"2025-12-22T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-vmhnf2cd8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-22T17:40:00.000Z","end":"2025-12-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-f0e37uybo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T18:00:00.000Z","end":"2025-12-22T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-3u6jp487v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T18:20:00.000Z","end":"2025-12-22T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-6ku69mnqs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T18:40:00.000Z","end":"2025-12-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-5zvls1v9e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-22T19:00:00.000Z","end":"2025-12-22T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-qyfu9ldwu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-22T19:20:00.000Z","end":"2025-12-22T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-gbw8pwois","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T19:40:00.000Z","end":"2025-12-22T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-trvxmk3zz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T20:00:00.000Z","end":"2025-12-22T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-87mf8rxwk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T20:20:00.000Z","end":"2025-12-22T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-4evkfe62u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-22T20:40:00.000Z","end":"2025-12-22T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-tm8gc7k4a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T21:00:00.000Z","end":"2025-12-22T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-9p4kmw7c3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-22T21:20:00.000Z","end":"2025-12-22T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-ieyn34kxd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-22T21:40:00.000Z","end":"2025-12-22T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-a4p6ehit9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T13:00:00.000Z","end":"2025-12-23T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085513-s1t0h0fug","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T13:20:00.000Z","end":"2025-12-23T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-em46ap5cb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T13:40:00.000Z","end":"2025-12-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-1zpkknuz7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T14:00:00.000Z","end":"2025-12-23T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-gy7kkpk3h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T14:20:00.000Z","end":"2025-12-23T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-b3pjplevw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T14:40:00.000Z","end":"2025-12-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-f9i1hqa4m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T15:00:00.000Z","end":"2025-12-23T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-o13in7fxb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T15:20:00.000Z","end":"2025-12-23T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-k83nqstvb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T15:40:00.000Z","end":"2025-12-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-r8q2qbkat","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T16:00:00.000Z","end":"2025-12-23T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-a9moaybfs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T16:20:00.000Z","end":"2025-12-23T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-jt3ryw05m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T16:40:00.000Z","end":"2025-12-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-mc6k60ks6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T17:00:00.000Z","end":"2025-12-23T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-qf4505s1u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T17:20:00.000Z","end":"2025-12-23T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-w4agqfa1t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T17:40:00.000Z","end":"2025-12-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-dcf2n4z6t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T18:00:00.000Z","end":"2025-12-23T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-qmf55n73d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T18:20:00.000Z","end":"2025-12-23T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-t89fr80mw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T18:40:00.000Z","end":"2025-12-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-gs1cjk345","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T19:00:00.000Z","end":"2025-12-23T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-261177rjl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T19:20:00.000Z","end":"2025-12-23T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-gubui17w1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T19:40:00.000Z","end":"2025-12-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-5um2q0p5z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T20:00:00.000Z","end":"2025-12-23T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-p4rrpqrvw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T20:20:00.000Z","end":"2025-12-23T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-xjmci73j9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T20:40:00.000Z","end":"2025-12-23T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-dsvcxt2hg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T21:00:00.000Z","end":"2025-12-23T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-x2zcz1yzu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-23T21:20:00.000Z","end":"2025-12-23T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-se8bh339j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-23T21:40:00.000Z","end":"2025-12-23T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-wocwob3sg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T13:00:00.000Z","end":"2025-12-24T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-mtaft042y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T13:20:00.000Z","end":"2025-12-24T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-0tq949f8m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T13:40:00.000Z","end":"2025-12-24T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-ku6eea0n1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T14:00:00.000Z","end":"2025-12-24T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-1h485xj3d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T14:20:00.000Z","end":"2025-12-24T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-yrh5efkwz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T14:40:00.000Z","end":"2025-12-24T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-qvwx2vku5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T15:00:00.000Z","end":"2025-12-24T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-ub9qv6emo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T15:20:00.000Z","end":"2025-12-24T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085514-o80tm4cdv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T15:40:00.000Z","end":"2025-12-24T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-v59bi80af","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T16:00:00.000Z","end":"2025-12-24T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-vp6pm83j9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T16:20:00.000Z","end":"2025-12-24T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-dvr6kvush","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T16:40:00.000Z","end":"2025-12-24T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-1d7e16l92","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T17:00:00.000Z","end":"2025-12-24T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-ellforfb8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T17:20:00.000Z","end":"2025-12-24T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-t2qq6fik2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T17:40:00.000Z","end":"2025-12-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-kyvkvellu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T18:00:00.000Z","end":"2025-12-24T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-sis76weeo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T18:20:00.000Z","end":"2025-12-24T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085515-pv61an26z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T18:40:00.000Z","end":"2025-12-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-5jkjdzgai","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T19:00:00.000Z","end":"2025-12-24T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-yjx25e515","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T19:20:00.000Z","end":"2025-12-24T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-1f6g6gg79","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-24T19:40:00.000Z","end":"2025-12-24T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-r2rpwc70r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T20:00:00.000Z","end":"2025-12-24T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-f3dmsqt55","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T20:20:00.000Z","end":"2025-12-24T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-gs6yjea2y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T20:40:00.000Z","end":"2025-12-24T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-jo632i20x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T21:00:00.000Z","end":"2025-12-24T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-0d5b7stj2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T21:20:00.000Z","end":"2025-12-24T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-f2zc2gh7q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-24T21:40:00.000Z","end":"2025-12-24T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-ev24b75ug","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T13:00:00.000Z","end":"2025-12-25T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-r3cmne5fg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T13:20:00.000Z","end":"2025-12-25T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-ssj80dnin","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T13:40:00.000Z","end":"2025-12-25T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-o43eul3nn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T14:00:00.000Z","end":"2025-12-25T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-kxatidu3c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T14:20:00.000Z","end":"2025-12-25T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-jmno2yavr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T14:40:00.000Z","end":"2025-12-25T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-lpxqomds8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T15:00:00.000Z","end":"2025-12-25T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-8nzbnzn8u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T15:20:00.000Z","end":"2025-12-25T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-pfc6shj9g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T15:40:00.000Z","end":"2025-12-25T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-d2b1mlfds","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T16:00:00.000Z","end":"2025-12-25T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-twm45xuf5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T16:20:00.000Z","end":"2025-12-25T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-2v14bps5s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T16:40:00.000Z","end":"2025-12-25T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-toim6stx7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T17:00:00.000Z","end":"2025-12-25T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-ctlqv8vmy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T17:20:00.000Z","end":"2025-12-25T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085516-yukh4ztro","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T17:40:00.000Z","end":"2025-12-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.516Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-ktjp2u4xx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T18:00:00.000Z","end":"2025-12-25T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-nprc4fqto","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T18:20:00.000Z","end":"2025-12-25T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-cnekcupf3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T18:40:00.000Z","end":"2025-12-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-6d5iqciq2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T19:00:00.000Z","end":"2025-12-25T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-y0ean1r5m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T19:20:00.000Z","end":"2025-12-25T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-spcgomzjt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T19:40:00.000Z","end":"2025-12-25T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-jwyiqj3ls","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T20:00:00.000Z","end":"2025-12-25T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-ba8t16zke","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T20:20:00.000Z","end":"2025-12-25T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-fwrprobyf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T20:40:00.000Z","end":"2025-12-25T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-8clnm9m39","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T21:00:00.000Z","end":"2025-12-25T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-4dw4v2c6f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-25T21:20:00.000Z","end":"2025-12-25T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-4etpt0d6e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-25T21:40:00.000Z","end":"2025-12-25T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:25:00.111Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-fruqc2txk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T13:00:00.000Z","end":"2025-12-26T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-5rlo421wq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T13:20:00.000Z","end":"2025-12-26T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-hdnvz6mgl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T13:40:00.000Z","end":"2025-12-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-evmml8eiq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T14:00:00.000Z","end":"2025-12-26T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-fthgpj6fa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T14:20:00.000Z","end":"2025-12-26T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-9oht9zxx3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T14:40:00.000Z","end":"2025-12-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-ijnigy3da","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T15:00:00.000Z","end":"2025-12-26T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-t5qnubk1i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T15:20:00.000Z","end":"2025-12-26T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-ojvdcu7tc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T15:40:00.000Z","end":"2025-12-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-sdib3krnc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T16:00:00.000Z","end":"2025-12-26T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-vh7cs49xj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T16:20:00.000Z","end":"2025-12-26T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-fbp7j5ez4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T16:40:00.000Z","end":"2025-12-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-g4zge63j7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T17:00:00.000Z","end":"2025-12-26T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-6gcsvq6zk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T17:20:00.000Z","end":"2025-12-26T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-vvkpzpjh2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T17:40:00.000Z","end":"2025-12-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-wu2uwpwq0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T18:00:00.000Z","end":"2025-12-26T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-b754c5yh0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T18:20:00.000Z","end":"2025-12-26T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-zxo3go1wi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T18:40:00.000Z","end":"2025-12-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-g4pvszw8s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T19:00:00.000Z","end":"2025-12-26T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-co5vcrkr6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T19:20:00.000Z","end":"2025-12-26T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-ua80lxtok","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T19:40:00.000Z","end":"2025-12-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085517-wzqftqval","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T20:00:00.000Z","end":"2025-12-26T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-vtd3ziahk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T20:20:00.000Z","end":"2025-12-26T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-2crmxcbrn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T20:40:00.000Z","end":"2025-12-26T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-71ctad8bv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T21:00:00.000Z","end":"2025-12-26T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-dah0hs9je","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-26T21:20:00.000Z","end":"2025-12-26T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-o6qgc0ey2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-26T21:40:00.000Z","end":"2025-12-26T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-om7svmy02","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T13:00:00.000Z","end":"2025-12-29T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-j9sm90wgd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T13:20:00.000Z","end":"2025-12-29T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-2xfprc25d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T13:40:00.000Z","end":"2025-12-29T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-p32lhekl1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T14:00:00.000Z","end":"2025-12-29T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-52dlw0fqt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T14:20:00.000Z","end":"2025-12-29T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-tacdthwcw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T14:40:00.000Z","end":"2025-12-29T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-z3117qzjx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T15:00:00.000Z","end":"2025-12-29T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-47wkab3ih","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T15:20:00.000Z","end":"2025-12-29T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-myxz0qbkv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T15:40:00.000Z","end":"2025-12-29T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-nov7h59gy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T16:00:00.000Z","end":"2025-12-29T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-ymlwsu1jm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T16:20:00.000Z","end":"2025-12-29T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-bknv229wn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T16:40:00.000Z","end":"2025-12-29T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-xsavywlnk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T17:00:00.000Z","end":"2025-12-29T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-8o209k32y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T17:20:00.000Z","end":"2025-12-29T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-tkkty6ovx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T17:40:00.000Z","end":"2025-12-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-2fvxv6o49","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T18:00:00.000Z","end":"2025-12-29T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-3dx3l141g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T18:20:00.000Z","end":"2025-12-29T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-hyjpdazr4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T18:40:00.000Z","end":"2025-12-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-rwvslc66g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T19:00:00.000Z","end":"2025-12-29T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-rbpq0pxh7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T19:20:00.000Z","end":"2025-12-29T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-izmsl6o4z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T19:40:00.000Z","end":"2025-12-29T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-nwwsls241","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T20:00:00.000Z","end":"2025-12-29T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-zddsky12z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-29T20:20:00.000Z","end":"2025-12-29T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-2nup5w3j9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T20:40:00.000Z","end":"2025-12-29T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-nwzc69h2c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T21:00:00.000Z","end":"2025-12-29T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-cnq4q3ahp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T21:20:00.000Z","end":"2025-12-29T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-mma4bjygo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-29T21:40:00.000Z","end":"2025-12-29T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:25:00.927Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-asd5tsib3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T13:00:00.000Z","end":"2025-12-30T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-7szvig4jb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T13:20:00.000Z","end":"2025-12-30T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-jlcx8bflc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T13:40:00.000Z","end":"2025-12-30T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085518-go1uvc76f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T14:00:00.000Z","end":"2025-12-30T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-pkjm8quvj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T14:20:00.000Z","end":"2025-12-30T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-27cac2xbm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T14:40:00.000Z","end":"2025-12-30T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-8bh9nq18s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T15:00:00.000Z","end":"2025-12-30T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-anho9bp1q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T15:20:00.000Z","end":"2025-12-30T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-4psx9q237","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T15:40:00.000Z","end":"2025-12-30T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-uo776ezun","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T16:00:00.000Z","end":"2025-12-30T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-n2mq8cqu6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T16:20:00.000Z","end":"2025-12-30T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-yudp9rqi9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T16:40:00.000Z","end":"2025-12-30T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-vyjjpw7ut","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T17:00:00.000Z","end":"2025-12-30T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-nu05imt73","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T17:20:00.000Z","end":"2025-12-30T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-kqy5ltryl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T17:40:00.000Z","end":"2025-12-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-mbpyr0lo3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T18:00:00.000Z","end":"2025-12-30T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-xquurnkep","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T18:20:00.000Z","end":"2025-12-30T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-zvgev9zsc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T18:40:00.000Z","end":"2025-12-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-m0v326tfd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T19:00:00.000Z","end":"2025-12-30T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-unvhicqz6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T19:20:00.000Z","end":"2025-12-30T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-0oq1sha29","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T19:40:00.000Z","end":"2025-12-30T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-mw2o2i53k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T20:00:00.000Z","end":"2025-12-30T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-0i4ltsk4j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T20:20:00.000Z","end":"2025-12-30T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-aw2a2onns","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-30T20:40:00.000Z","end":"2025-12-30T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-l7sqfmztr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T21:00:00.000Z","end":"2025-12-30T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-qgwl63qa3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T21:20:00.000Z","end":"2025-12-30T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-aomwpju7f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-30T21:40:00.000Z","end":"2025-12-30T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-5fnd5djp9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T13:00:00.000Z","end":"2025-12-31T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-zttb9ud4y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T13:20:00.000Z","end":"2025-12-31T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-l1z4td8xf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T13:40:00.000Z","end":"2025-12-31T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-tato0g7un","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T14:00:00.000Z","end":"2025-12-31T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-t05r6qn6r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T14:20:00.000Z","end":"2025-12-31T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-14ytaspc9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T14:40:00.000Z","end":"2025-12-31T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-td18bbnwh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T15:00:00.000Z","end":"2025-12-31T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-as5rwftfp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T15:20:00.000Z","end":"2025-12-31T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-5kjionve1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T15:40:00.000Z","end":"2025-12-31T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-8rnm9q5cg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T16:00:00.000Z","end":"2025-12-31T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-5nsnbz9y7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T16:20:00.000Z","end":"2025-12-31T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085519-asyc7rr7c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T16:40:00.000Z","end":"2025-12-31T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-lp6do1r6b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T17:00:00.000Z","end":"2025-12-31T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-dzhdp3lsp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T17:20:00.000Z","end":"2025-12-31T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-jt175ifpt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T17:40:00.000Z","end":"2025-12-31T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-5v3sxmd00","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T18:00:00.000Z","end":"2025-12-31T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-hono6tu99","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T18:20:00.000Z","end":"2025-12-31T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-8xbj6018g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T18:40:00.000Z","end":"2025-12-31T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-c9kzhoi8v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T19:00:00.000Z","end":"2025-12-31T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-nhb86ei1c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T19:20:00.000Z","end":"2025-12-31T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-a5f4afuzj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T19:40:00.000Z","end":"2025-12-31T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-8xaclk383","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T20:00:00.000Z","end":"2025-12-31T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-wdj1lm5uk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T20:20:00.000Z","end":"2025-12-31T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-lmb24hb0i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T20:40:00.000Z","end":"2025-12-31T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-5toa5kzri","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T21:00:00.000Z","end":"2025-12-31T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-u4pefawiu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2025-12-31T21:20:00.000Z","end":"2025-12-31T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-kyxqlgjsm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2025-12-31T21:40:00.000Z","end":"2025-12-31T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-dt5j4o3n8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T13:00:00.000Z","end":"2026-01-01T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-56nx0nkwc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T13:20:00.000Z","end":"2026-01-01T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-33ouxa1i6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T13:40:00.000Z","end":"2026-01-01T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-gm9kct7in","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T14:00:00.000Z","end":"2026-01-01T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-67k28mb30","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T14:20:00.000Z","end":"2026-01-01T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-h54k230sg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T14:40:00.000Z","end":"2026-01-01T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-hybgh99g5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T15:00:00.000Z","end":"2026-01-01T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-7mase0pm0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T15:20:00.000Z","end":"2026-01-01T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-vfzfdc8mb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T15:40:00.000Z","end":"2026-01-01T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-dina1wax9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T16:00:00.000Z","end":"2026-01-01T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-36qffx4zt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T16:20:00.000Z","end":"2026-01-01T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-6o57ao026","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T16:40:00.000Z","end":"2026-01-01T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-pvi2pcy6v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T17:00:00.000Z","end":"2026-01-01T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-uw4avk3ta","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T17:20:00.000Z","end":"2026-01-01T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-jr9mv88x1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T17:40:00.000Z","end":"2026-01-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-xoqvnepj6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T18:00:00.000Z","end":"2026-01-01T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-nfu6tev7j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T18:20:00.000Z","end":"2026-01-01T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085520-udq7uhtu4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T18:40:00.000Z","end":"2026-01-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-hmurdyifp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T19:00:00.000Z","end":"2026-01-01T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-k1njanqnx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T19:20:00.000Z","end":"2026-01-01T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-qag7pkv44","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T19:40:00.000Z","end":"2026-01-01T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-xvb1ukmvt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T20:00:00.000Z","end":"2026-01-01T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-z0cx1ig1v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T20:20:00.000Z","end":"2026-01-01T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-rzpokcdsr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T20:40:00.000Z","end":"2026-01-01T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-cltj1ibjx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-01T21:00:00.000Z","end":"2026-01-01T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-1542ew7wx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T21:20:00.000Z","end":"2026-01-01T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-ihf4mmboy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-01T21:40:00.000Z","end":"2026-01-01T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-asjhaptoi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T13:00:00.000Z","end":"2026-01-02T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085521-og9arwrje","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T13:20:00.000Z","end":"2026-01-02T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-6je88uh9r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T13:40:00.000Z","end":"2026-01-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-qsw6gkqum","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T14:00:00.000Z","end":"2026-01-02T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-l2mzxeplg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T14:20:00.000Z","end":"2026-01-02T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-m2y24yfdi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T14:40:00.000Z","end":"2026-01-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-x0iqo5icb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T15:00:00.000Z","end":"2026-01-02T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-aj1sik6n4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T15:20:00.000Z","end":"2026-01-02T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-nhq9fkc6p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T15:40:00.000Z","end":"2026-01-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-1dja6ov1q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T16:00:00.000Z","end":"2026-01-02T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-vt5id29up","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T16:20:00.000Z","end":"2026-01-02T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-c0mh4m2gg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T16:40:00.000Z","end":"2026-01-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-9fknr7cqy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T17:00:00.000Z","end":"2026-01-02T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-mt612bvd2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T17:20:00.000Z","end":"2026-01-02T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-d23npja29","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T17:40:00.000Z","end":"2026-01-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-dayl1ad6g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T18:00:00.000Z","end":"2026-01-02T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-8wtl02moh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T18:20:00.000Z","end":"2026-01-02T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085522-7vszbdkbi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T18:40:00.000Z","end":"2026-01-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-isz4uv0xk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T19:00:00.000Z","end":"2026-01-02T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-23gmn7tdo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T19:20:00.000Z","end":"2026-01-02T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-jtpl99kc3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T19:40:00.000Z","end":"2026-01-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-3lrmemg2a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T20:00:00.000Z","end":"2026-01-02T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-pe28qjh6v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T20:20:00.000Z","end":"2026-01-02T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-j1821lcwo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T20:40:00.000Z","end":"2026-01-02T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-5qly8859o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T21:00:00.000Z","end":"2026-01-02T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-587v8dnu3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-02T21:20:00.000Z","end":"2026-01-02T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-8qglaoxn9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-02T21:40:00.000Z","end":"2026-01-02T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-at5a3fp3r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T13:00:00.000Z","end":"2026-01-05T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-900gghusi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T13:20:00.000Z","end":"2026-01-05T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-hufzrno5q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T13:40:00.000Z","end":"2026-01-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-brvc9or72","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T14:00:00.000Z","end":"2026-01-05T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-niivaoaqv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T14:20:00.000Z","end":"2026-01-05T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-h4dwweg7s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T14:40:00.000Z","end":"2026-01-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-gdtrp74gw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T15:00:00.000Z","end":"2026-01-05T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-lefu39eqq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T15:20:00.000Z","end":"2026-01-05T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-pmdhxkger","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T15:40:00.000Z","end":"2026-01-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-cbqgwyk48","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T16:00:00.000Z","end":"2026-01-05T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-t1cmgf789","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T16:20:00.000Z","end":"2026-01-05T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-ql5l4o1s5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T16:40:00.000Z","end":"2026-01-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.079Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-f32vurh2a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T17:00:00.000Z","end":"2026-01-05T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-e3f8urq8g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T17:20:00.000Z","end":"2026-01-05T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-nzzsgcvum","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T17:40:00.000Z","end":"2026-01-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-mb1jrdd2h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T18:00:00.000Z","end":"2026-01-05T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-8gc0nnecb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T18:20:00.000Z","end":"2026-01-05T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-bsptlyeg5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T18:40:00.000Z","end":"2026-01-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-0q8nn1azz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T19:00:00.000Z","end":"2026-01-05T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-cbo4iy6cd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T19:20:00.000Z","end":"2026-01-05T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-unz6mdrx7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T19:40:00.000Z","end":"2026-01-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-ijnyygpb4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T20:00:00.000Z","end":"2026-01-05T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085523-zgb4jop9b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T20:20:00.000Z","end":"2026-01-05T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-6vheey5eh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T20:40:00.000Z","end":"2026-01-05T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-xq9x62gxo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T21:00:00.000Z","end":"2026-01-05T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-lhd0ateo0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-05T21:20:00.000Z","end":"2026-01-05T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-l1t5hlym3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-05T21:40:00.000Z","end":"2026-01-05T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-2i6688bzb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T13:00:00.000Z","end":"2026-01-06T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-qt22p4sq3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T13:20:00.000Z","end":"2026-01-06T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-yuddtiuzt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T13:40:00.000Z","end":"2026-01-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-fdavlt1u2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T14:00:00.000Z","end":"2026-01-06T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085524-5yr1uh0df","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T14:20:00.000Z","end":"2026-01-06T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085525-ea4axhkpf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T14:40:00.000Z","end":"2026-01-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085526-t3d8o1sjs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T15:00:00.000Z","end":"2026-01-06T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085526-78zxmlpyw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T15:20:00.000Z","end":"2026-01-06T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085526-iujgc68pi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T15:40:00.000Z","end":"2026-01-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085526-m7if3m74o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T16:00:00.000Z","end":"2026-01-06T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-bj2b62zt9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T16:20:00.000Z","end":"2026-01-06T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-4r1llttn3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T16:40:00.000Z","end":"2026-01-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-pvcqxxy52","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T17:00:00.000Z","end":"2026-01-06T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-2wglzv491","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T17:20:00.000Z","end":"2026-01-06T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-do8uhbxzd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T17:40:00.000Z","end":"2026-01-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-smzydzva5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T18:00:00.000Z","end":"2026-01-06T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-8kxop5c2z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T18:20:00.000Z","end":"2026-01-06T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-kf33rzgg4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T18:40:00.000Z","end":"2026-01-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-f0wit4tkb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T19:00:00.000Z","end":"2026-01-06T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-ahhdwzf4e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T19:20:00.000Z","end":"2026-01-06T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-wttrgt4z8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T19:40:00.000Z","end":"2026-01-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-yci0p2s5n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T20:00:00.000Z","end":"2026-01-06T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-nl49xdi42","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T20:20:00.000Z","end":"2026-01-06T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-qf11bs8j6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T20:40:00.000Z","end":"2026-01-06T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-smp9rwip4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-06T21:00:00.000Z","end":"2026-01-06T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-az3ndnwix","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T21:20:00.000Z","end":"2026-01-06T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-jukiwwwov","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-06T21:40:00.000Z","end":"2026-01-06T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-nnddk2nd9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T13:00:00.000Z","end":"2026-01-07T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-8ql6v47yg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T13:20:00.000Z","end":"2026-01-07T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085527-u665c4v0g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T13:40:00.000Z","end":"2026-01-07T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.527Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-vf0n31e2f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T14:00:00.000Z","end":"2026-01-07T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-qh7sa9niq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T14:20:00.000Z","end":"2026-01-07T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-vhwu7w391","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T14:40:00.000Z","end":"2026-01-07T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-kdugo9cj4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T15:00:00.000Z","end":"2026-01-07T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-adg3vtpkc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T15:20:00.000Z","end":"2026-01-07T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-i2y9s9f5n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T15:40:00.000Z","end":"2026-01-07T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-0d1gtkbd4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T16:00:00.000Z","end":"2026-01-07T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-cszjeoane","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T16:20:00.000Z","end":"2026-01-07T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-x34ynr0q4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T16:40:00.000Z","end":"2026-01-07T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-eno7vsup0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T17:00:00.000Z","end":"2026-01-07T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-d8cp2kapq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T17:20:00.000Z","end":"2026-01-07T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-kbjfn50a5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T17:40:00.000Z","end":"2026-01-07T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-a3be6dueb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T18:00:00.000Z","end":"2026-01-07T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-pjgnhcdei","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T18:20:00.000Z","end":"2026-01-07T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-3wkegawv4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T18:40:00.000Z","end":"2026-01-07T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-j13o2c7r7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T19:00:00.000Z","end":"2026-01-07T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-dtdef71e2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T19:20:00.000Z","end":"2026-01-07T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-1npduxf8d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T19:40:00.000Z","end":"2026-01-07T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-vjuntb9da","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T20:00:00.000Z","end":"2026-01-07T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-do7kl3nm4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T20:20:00.000Z","end":"2026-01-07T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-4nxadvm6x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T20:40:00.000Z","end":"2026-01-07T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-pnisj42oe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T21:00:00.000Z","end":"2026-01-07T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-wj8gdtjs3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-07T21:20:00.000Z","end":"2026-01-07T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-am5q3x36o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-07T21:40:00.000Z","end":"2026-01-07T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-o6bdrsgyl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T13:00:00.000Z","end":"2026-01-08T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-ijjr93dzl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T13:20:00.000Z","end":"2026-01-08T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-6yagoczlm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T13:40:00.000Z","end":"2026-01-08T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-5fh21mt6h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T14:00:00.000Z","end":"2026-01-08T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-v1ulr2jem","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T14:20:00.000Z","end":"2026-01-08T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085528-ko01lxwlh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T14:40:00.000Z","end":"2026-01-08T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-u0yqzz47u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T15:00:00.000Z","end":"2026-01-08T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-dcth8vij4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T15:20:00.000Z","end":"2026-01-08T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-wxhd4niyl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T15:40:00.000Z","end":"2026-01-08T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-55wn9aiz3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T16:00:00.000Z","end":"2026-01-08T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-jsuv201va","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T16:20:00.000Z","end":"2026-01-08T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-397la2rjs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T16:40:00.000Z","end":"2026-01-08T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-6on2w5657","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T17:00:00.000Z","end":"2026-01-08T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-xv4e6jtod","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T17:20:00.000Z","end":"2026-01-08T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-59f0vec0w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T17:40:00.000Z","end":"2026-01-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-t1v8716mx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T18:00:00.000Z","end":"2026-01-08T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-5a0lwx2mb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T18:20:00.000Z","end":"2026-01-08T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-wyxiddmic","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T18:40:00.000Z","end":"2026-01-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-snk529qxm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T19:00:00.000Z","end":"2026-01-08T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-tgp58o0i8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T19:20:00.000Z","end":"2026-01-08T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-kvzc3r977","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T19:40:00.000Z","end":"2026-01-08T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-w4zlbuw7s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-08T20:00:00.000Z","end":"2026-01-08T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-3i3n7h7l4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T20:20:00.000Z","end":"2026-01-08T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-i2bfa8fft","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T20:40:00.000Z","end":"2026-01-08T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:25:08.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-99n79mqbo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T21:00:00.000Z","end":"2026-01-08T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-42qzoixkd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T21:20:00.000Z","end":"2026-01-08T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-mfq283nkw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-08T21:40:00.000Z","end":"2026-01-08T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-q1a93ndxh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T13:00:00.000Z","end":"2026-01-09T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-2pq6aj59z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T13:20:00.000Z","end":"2026-01-09T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-wl4m97f4t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T13:40:00.000Z","end":"2026-01-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-fivx27bjn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T14:00:00.000Z","end":"2026-01-09T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-yydjaj0e7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T14:20:00.000Z","end":"2026-01-09T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-bxfaurdpm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T14:40:00.000Z","end":"2026-01-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-yc1e7zpom","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T15:00:00.000Z","end":"2026-01-09T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-79xosl3om","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T15:20:00.000Z","end":"2026-01-09T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-gam97tw7x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T15:40:00.000Z","end":"2026-01-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-kv2x8q39i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T16:00:00.000Z","end":"2026-01-09T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-wi8l6640i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T16:20:00.000Z","end":"2026-01-09T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-fnm6h4fmj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T16:40:00.000Z","end":"2026-01-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-n49byyy87","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T17:00:00.000Z","end":"2026-01-09T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-kiz31u5qm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T17:20:00.000Z","end":"2026-01-09T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-17gqkxsz9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T17:40:00.000Z","end":"2026-01-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085529-njbst7xlj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T18:00:00.000Z","end":"2026-01-09T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-9yghcln9m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T18:20:00.000Z","end":"2026-01-09T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-wxmav25i3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T18:40:00.000Z","end":"2026-01-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-b8ofwowgw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T19:00:00.000Z","end":"2026-01-09T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-2m1xtofyt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T19:20:00.000Z","end":"2026-01-09T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-v11fid6lb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T19:40:00.000Z","end":"2026-01-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-30zeoc319","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T20:00:00.000Z","end":"2026-01-09T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-2z70ntq6c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T20:20:00.000Z","end":"2026-01-09T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-m71tbfqio","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T20:40:00.000Z","end":"2026-01-09T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-bnn2kkili","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T21:00:00.000Z","end":"2026-01-09T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-lmpjj2h85","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-09T21:20:00.000Z","end":"2026-01-09T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-3t63gt6kd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-09T21:40:00.000Z","end":"2026-01-09T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-sjrjdcml3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T13:00:00.000Z","end":"2026-01-12T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-mhbenw92s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T13:20:00.000Z","end":"2026-01-12T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-49i5ftu01","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T13:40:00.000Z","end":"2026-01-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-83bmdmoag","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T14:00:00.000Z","end":"2026-01-12T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-7o1siuaw1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T14:20:00.000Z","end":"2026-01-12T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-mrzgj5hfb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T14:40:00.000Z","end":"2026-01-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-m4iwb74a9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T15:00:00.000Z","end":"2026-01-12T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-ndlybq4wx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T15:20:00.000Z","end":"2026-01-12T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-fllq95i6o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T15:40:00.000Z","end":"2026-01-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-u78el2jhn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T16:00:00.000Z","end":"2026-01-12T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-mwhie9jn0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T16:20:00.000Z","end":"2026-01-12T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-r58isnt2p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T16:40:00.000Z","end":"2026-01-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-dk3a255q9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T17:00:00.000Z","end":"2026-01-12T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-d2169ao0c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T17:20:00.000Z","end":"2026-01-12T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-6zygax0jo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T17:40:00.000Z","end":"2026-01-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-fm88tss4x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T18:00:00.000Z","end":"2026-01-12T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-fiz5pk5ob","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T18:20:00.000Z","end":"2026-01-12T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-msgu10y9r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T18:40:00.000Z","end":"2026-01-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-glnw61bmh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T19:00:00.000Z","end":"2026-01-12T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-qvcia6km5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T19:20:00.000Z","end":"2026-01-12T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085530-qv05l8jmw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T19:40:00.000Z","end":"2026-01-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-axzurxi3k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T20:00:00.000Z","end":"2026-01-12T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-lkqza41d3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T20:20:00.000Z","end":"2026-01-12T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-jzhws3uyu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T20:40:00.000Z","end":"2026-01-12T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-rlub3b1t7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T21:00:00.000Z","end":"2026-01-12T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-ff1td3yui","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-12T21:20:00.000Z","end":"2026-01-12T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-ipprtow84","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-12T21:40:00.000Z","end":"2026-01-12T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-nkmyjfgb1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T13:00:00.000Z","end":"2026-01-13T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-z6xuai3b5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T13:20:00.000Z","end":"2026-01-13T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-8wtftpy4i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T13:40:00.000Z","end":"2026-01-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-cuy5tuw3t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T14:00:00.000Z","end":"2026-01-13T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-wb8f17amq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T14:20:00.000Z","end":"2026-01-13T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-764em4afm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T14:40:00.000Z","end":"2026-01-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-aimyseurx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T15:00:00.000Z","end":"2026-01-13T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-lnugweu5z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T15:20:00.000Z","end":"2026-01-13T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-13lu28dfw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T15:40:00.000Z","end":"2026-01-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-cc9fjqjtb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T16:00:00.000Z","end":"2026-01-13T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-v3u5lwye6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T16:20:00.000Z","end":"2026-01-13T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-0kz5knci6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T16:40:00.000Z","end":"2026-01-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-2ldsuym1f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T17:00:00.000Z","end":"2026-01-13T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-jb5z2g6sa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T17:20:00.000Z","end":"2026-01-13T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-vokni5yrp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T17:40:00.000Z","end":"2026-01-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-100ibv6jt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T18:00:00.000Z","end":"2026-01-13T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-zjirqf0f3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T18:20:00.000Z","end":"2026-01-13T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-oti3pu8x2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T18:40:00.000Z","end":"2026-01-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-ophfynek3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T19:00:00.000Z","end":"2026-01-13T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-cqshvs9c1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T19:20:00.000Z","end":"2026-01-13T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-ww96a4xrd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T19:40:00.000Z","end":"2026-01-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085532-mpz92tco1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T20:00:00.000Z","end":"2026-01-13T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-q6x4oknjg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T20:20:00.000Z","end":"2026-01-13T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-db7zqvra0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T20:40:00.000Z","end":"2026-01-13T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-he5cs7v7q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T21:00:00.000Z","end":"2026-01-13T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-nzf7suvi4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-13T21:20:00.000Z","end":"2026-01-13T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-aavkn252y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-13T21:40:00.000Z","end":"2026-01-13T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-2u52hujj3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T13:00:00.000Z","end":"2026-01-14T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-olkjnjq4n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T13:20:00.000Z","end":"2026-01-14T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-lazzdowzp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T13:40:00.000Z","end":"2026-01-14T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-r2zl5w80h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T14:00:00.000Z","end":"2026-01-14T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-0devo8yz8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T14:20:00.000Z","end":"2026-01-14T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-az0eib6fb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T14:40:00.000Z","end":"2026-01-14T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-fa8i4cqcp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T15:00:00.000Z","end":"2026-01-14T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-z31ce0h3a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T15:20:00.000Z","end":"2026-01-14T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-q4g0b4leu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T15:40:00.000Z","end":"2026-01-14T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-aptnz9t8f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T16:00:00.000Z","end":"2026-01-14T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-qzmrpy21r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T16:20:00.000Z","end":"2026-01-14T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-t8bwo2kgv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T16:40:00.000Z","end":"2026-01-14T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-vf9wjxuh6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T17:00:00.000Z","end":"2026-01-14T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-3rj7irrww","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T17:20:00.000Z","end":"2026-01-14T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-nvgr6tx2z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T17:40:00.000Z","end":"2026-01-14T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-070ezkx76","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T18:00:00.000Z","end":"2026-01-14T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-z05yhd7tl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T18:20:00.000Z","end":"2026-01-14T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-u9hlkn14t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T18:40:00.000Z","end":"2026-01-14T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-m3yjvzodo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T19:00:00.000Z","end":"2026-01-14T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-38ynrd2f3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T19:20:00.000Z","end":"2026-01-14T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-q58bnxocj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T19:40:00.000Z","end":"2026-01-14T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-4wb00qdfl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T20:00:00.000Z","end":"2026-01-14T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-4z8v5ird9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T20:20:00.000Z","end":"2026-01-14T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-gqqij2ngp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T20:40:00.000Z","end":"2026-01-14T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-yin04jzcj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-14T21:00:00.000Z","end":"2026-01-14T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-8kqsndd13","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T21:20:00.000Z","end":"2026-01-14T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085533-e286wev1b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-14T21:40:00.000Z","end":"2026-01-14T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-fn0i0ebzu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T13:00:00.000Z","end":"2026-01-15T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-2ztam46wl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T13:20:00.000Z","end":"2026-01-15T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-57hvqs110","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T13:40:00.000Z","end":"2026-01-15T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-i96qyuy01","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T14:00:00.000Z","end":"2026-01-15T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-8hcb1nnpc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T14:20:00.000Z","end":"2026-01-15T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-3zw2genf0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T14:40:00.000Z","end":"2026-01-15T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-rvo82s40q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T15:00:00.000Z","end":"2026-01-15T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-4l5o7lxir","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T15:20:00.000Z","end":"2026-01-15T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-uujzktaol","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T15:40:00.000Z","end":"2026-01-15T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-912hpjujn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T16:00:00.000Z","end":"2026-01-15T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-rjk298rax","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T16:20:00.000Z","end":"2026-01-15T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-ypnor2r44","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T16:40:00.000Z","end":"2026-01-15T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-vq5zwiufk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T17:00:00.000Z","end":"2026-01-15T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-yasspy514","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T17:20:00.000Z","end":"2026-01-15T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-m3j65x55y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T17:40:00.000Z","end":"2026-01-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-91dsuwl58","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T18:00:00.000Z","end":"2026-01-15T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-uvwmws8wq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T18:20:00.000Z","end":"2026-01-15T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-hf3f7uc6y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T18:40:00.000Z","end":"2026-01-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-6twsrnwqc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T19:00:00.000Z","end":"2026-01-15T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-ma9cup26v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T19:20:00.000Z","end":"2026-01-15T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-yemwf4gjd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T19:40:00.000Z","end":"2026-01-15T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-e1x3q2j38","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T20:00:00.000Z","end":"2026-01-15T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-mo2eidllz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T20:20:00.000Z","end":"2026-01-15T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-abnlyvvgw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T20:40:00.000Z","end":"2026-01-15T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-uk1hee4z5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T21:00:00.000Z","end":"2026-01-15T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-jxi0tb5so","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-15T21:20:00.000Z","end":"2026-01-15T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-7y7wuz0qn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-15T21:40:00.000Z","end":"2026-01-15T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-bl30ue3tf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-16T13:00:00.000Z","end":"2026-01-16T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-xpfk0g05t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T13:20:00.000Z","end":"2026-01-16T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-e6v03ylet","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T13:40:00.000Z","end":"2026-01-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-3ho6taa3r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T14:00:00.000Z","end":"2026-01-16T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-cq6us34yi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T14:20:00.000Z","end":"2026-01-16T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-34ozzso1h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T14:40:00.000Z","end":"2026-01-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-p6nqaeyvn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T15:00:00.000Z","end":"2026-01-16T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-5tbb9px72","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T15:20:00.000Z","end":"2026-01-16T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085534-q57j7xce3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T15:40:00.000Z","end":"2026-01-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-0scay03i2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T16:00:00.000Z","end":"2026-01-16T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-kvbrv86mc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-16T16:20:00.000Z","end":"2026-01-16T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-oe5wvuv13","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T16:40:00.000Z","end":"2026-01-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-efdq9ot95","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T17:00:00.000Z","end":"2026-01-16T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-v9y891esa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T17:20:00.000Z","end":"2026-01-16T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-plp9373oo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T17:40:00.000Z","end":"2026-01-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-bypb7vqq9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T18:00:00.000Z","end":"2026-01-16T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-5vv5ujmld","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-16T18:20:00.000Z","end":"2026-01-16T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-8iumze7df","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T18:40:00.000Z","end":"2026-01-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-dq8gbtlny","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T19:00:00.000Z","end":"2026-01-16T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-9lo2hrkss","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-16T19:20:00.000Z","end":"2026-01-16T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-0sj3q95c1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T19:40:00.000Z","end":"2026-01-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-nlta6cf0z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T20:00:00.000Z","end":"2026-01-16T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-blthiy1iq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T20:20:00.000Z","end":"2026-01-16T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-fhic1r0g2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-16T20:40:00.000Z","end":"2026-01-16T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-8s6bkcc22","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-16T21:00:00.000Z","end":"2026-01-16T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-yxexxi7tf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-16T21:20:00.000Z","end":"2026-01-16T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-uipkn1zon","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-16T21:40:00.000Z","end":"2026-01-16T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-0904l3qnm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T13:00:00.000Z","end":"2026-01-19T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-u9zhsjqw7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T13:20:00.000Z","end":"2026-01-19T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-n4md2p2yd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T13:40:00.000Z","end":"2026-01-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-ij1v1bkyf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-19T14:00:00.000Z","end":"2026-01-19T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-m76pqm3lv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-19T14:20:00.000Z","end":"2026-01-19T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-mq1l3vsxh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T14:40:00.000Z","end":"2026-01-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-hsifwnozt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T15:00:00.000Z","end":"2026-01-19T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-ltrhtr20q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T15:20:00.000Z","end":"2026-01-19T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-6txq24ueq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T15:40:00.000Z","end":"2026-01-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-zvwoa88pt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T16:00:00.000Z","end":"2026-01-19T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-4ele6nrwd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T16:20:00.000Z","end":"2026-01-19T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-98yqmpcxc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T16:40:00.000Z","end":"2026-01-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-dazscxoas","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-19T17:00:00.000Z","end":"2026-01-19T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085535-6uf5u6fdt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T17:20:00.000Z","end":"2026-01-19T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-78nmojj2y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T17:40:00.000Z","end":"2026-01-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-jojhsuvzc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T18:00:00.000Z","end":"2026-01-19T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-e9i5ks11l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T18:20:00.000Z","end":"2026-01-19T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-mesu0ghkf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T18:40:00.000Z","end":"2026-01-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-5t7crjg1w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T19:00:00.000Z","end":"2026-01-19T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-koy3qmnkg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T19:20:00.000Z","end":"2026-01-19T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-qsxk9tkbs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T19:40:00.000Z","end":"2026-01-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-vzvwpf2us","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T20:00:00.000Z","end":"2026-01-19T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-85q1totj3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T20:20:00.000Z","end":"2026-01-19T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-x7tllxms0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-19T20:40:00.000Z","end":"2026-01-19T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085536-hsw04y35a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-19T21:00:00.000Z","end":"2026-01-19T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-zi39phvyo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-19T21:20:00.000Z","end":"2026-01-19T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-nunir2ids","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-19T21:40:00.000Z","end":"2026-01-19T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-4rlcigv7s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T13:00:00.000Z","end":"2026-01-20T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-3165i227u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T13:20:00.000Z","end":"2026-01-20T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-h9ed6eybc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T13:40:00.000Z","end":"2026-01-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-ewv7ra86f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T14:00:00.000Z","end":"2026-01-20T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-pg5masgc4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T14:20:00.000Z","end":"2026-01-20T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-rrydvu1dz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T14:40:00.000Z","end":"2026-01-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-b3xtg996s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T15:00:00.000Z","end":"2026-01-20T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-779eiiu82","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T15:20:00.000Z","end":"2026-01-20T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-q2q1b94ay","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T15:40:00.000Z","end":"2026-01-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-grnps6ytf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T16:00:00.000Z","end":"2026-01-20T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-iecsudi5z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T16:20:00.000Z","end":"2026-01-20T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-ree3oh892","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T16:40:00.000Z","end":"2026-01-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-vg86bzvf1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T17:00:00.000Z","end":"2026-01-20T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-p7ja3u6l2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T17:20:00.000Z","end":"2026-01-20T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-mqgsxpq43","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T17:40:00.000Z","end":"2026-01-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-9zar29apx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T18:00:00.000Z","end":"2026-01-20T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-epx744phi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T18:20:00.000Z","end":"2026-01-20T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-24d1nakbj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T18:40:00.000Z","end":"2026-01-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-3l3v7vast","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T19:00:00.000Z","end":"2026-01-20T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-y9xugpvup","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T19:20:00.000Z","end":"2026-01-20T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-gnk0ws1z2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T19:40:00.000Z","end":"2026-01-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-1zdv1z0or","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T20:00:00.000Z","end":"2026-01-20T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-6yik1j97a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T20:20:00.000Z","end":"2026-01-20T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-5k1nfk315","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T20:40:00.000Z","end":"2026-01-20T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-dr0dv46bx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T21:00:00.000Z","end":"2026-01-20T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-zmsbtym1k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-20T21:20:00.000Z","end":"2026-01-20T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-eymsq7x87","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-20T21:40:00.000Z","end":"2026-01-20T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-ryzheiz4f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T13:00:00.000Z","end":"2026-01-21T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085537-pl9a1qvcx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T13:20:00.000Z","end":"2026-01-21T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-5glx97pwx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T13:40:00.000Z","end":"2026-01-21T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-6hpdylqxp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T14:00:00.000Z","end":"2026-01-21T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-510etn1x3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T14:20:00.000Z","end":"2026-01-21T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-v68xs98h7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T14:40:00.000Z","end":"2026-01-21T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-e337y437x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T15:00:00.000Z","end":"2026-01-21T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-oa28now59","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T15:20:00.000Z","end":"2026-01-21T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-5xwo1v3ue","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T15:40:00.000Z","end":"2026-01-21T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-xqba2tpy8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T16:00:00.000Z","end":"2026-01-21T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-hgwgtu33q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T16:20:00.000Z","end":"2026-01-21T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-ncnmllw2e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T16:40:00.000Z","end":"2026-01-21T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-udx16u23t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T17:00:00.000Z","end":"2026-01-21T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-ci2zj2957","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T17:20:00.000Z","end":"2026-01-21T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-j4ww7menx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T17:40:00.000Z","end":"2026-01-21T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-p6oot15pc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T18:00:00.000Z","end":"2026-01-21T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-p4dlnuc4x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T18:20:00.000Z","end":"2026-01-21T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-rrqaacupc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T18:40:00.000Z","end":"2026-01-21T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-8ly4x2l2v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T19:00:00.000Z","end":"2026-01-21T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-dzwiow63o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T19:20:00.000Z","end":"2026-01-21T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-r4s1ibv2p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T19:40:00.000Z","end":"2026-01-21T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-xx3t6tgld","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T20:00:00.000Z","end":"2026-01-21T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-3xl8lkd08","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T20:20:00.000Z","end":"2026-01-21T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-aa5xep221","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-21T20:40:00.000Z","end":"2026-01-21T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.068Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-2znq0vbq1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T21:00:00.000Z","end":"2026-01-21T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-rh1tuiuuf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T21:20:00.000Z","end":"2026-01-21T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-iq2t6mkyj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-21T21:40:00.000Z","end":"2026-01-21T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-q28nuolud","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T13:00:00.000Z","end":"2026-01-22T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-e9nsaveuk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T13:20:00.000Z","end":"2026-01-22T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085539-c8rakseb9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T13:40:00.000Z","end":"2026-01-22T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.539Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-jdp8lgl2n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T14:00:00.000Z","end":"2026-01-22T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-l21i3yq7y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T14:20:00.000Z","end":"2026-01-22T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-t3fwn1f3v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T14:40:00.000Z","end":"2026-01-22T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-nsw0q8i1x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T15:00:00.000Z","end":"2026-01-22T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-lhqut0ngw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T15:20:00.000Z","end":"2026-01-22T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-byky9t6y7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T15:40:00.000Z","end":"2026-01-22T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-zx25carv9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T16:00:00.000Z","end":"2026-01-22T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-oglkswr0y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T16:20:00.000Z","end":"2026-01-22T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-edymk6s2d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T16:40:00.000Z","end":"2026-01-22T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-danjdmhg9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T17:00:00.000Z","end":"2026-01-22T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-93l4jc0lz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T17:20:00.000Z","end":"2026-01-22T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-3b3b35jm6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T17:40:00.000Z","end":"2026-01-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-6us5eq65y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T18:00:00.000Z","end":"2026-01-22T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-b4ly2annr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T18:20:00.000Z","end":"2026-01-22T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-7oomozuhj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T18:40:00.000Z","end":"2026-01-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-n4pwdsfyd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T19:00:00.000Z","end":"2026-01-22T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-ria2zfa2p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T19:20:00.000Z","end":"2026-01-22T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-wcdrift0h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T19:40:00.000Z","end":"2026-01-22T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-6m9uwe90s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T20:00:00.000Z","end":"2026-01-22T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-v7y64jvfs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T20:20:00.000Z","end":"2026-01-22T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-fyabcn7e8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T20:40:00.000Z","end":"2026-01-22T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-x7d85l2sf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-22T21:00:00.000Z","end":"2026-01-22T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085540-11uqnhmtw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T21:20:00.000Z","end":"2026-01-22T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-tonj4ime0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-22T21:40:00.000Z","end":"2026-01-22T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-nxfav92j8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T13:00:00.000Z","end":"2026-01-23T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-xkypp25ns","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T13:20:00.000Z","end":"2026-01-23T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-8vwupzt54","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T13:40:00.000Z","end":"2026-01-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-lj66jphsn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T14:00:00.000Z","end":"2026-01-23T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-gnh9u7u3k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T14:20:00.000Z","end":"2026-01-23T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-6i7aowf1c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T14:40:00.000Z","end":"2026-01-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-7ttbf8g7f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T15:00:00.000Z","end":"2026-01-23T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-kro97cgsw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T15:20:00.000Z","end":"2026-01-23T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-joil3g62y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T15:40:00.000Z","end":"2026-01-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-nx73dinxh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T16:00:00.000Z","end":"2026-01-23T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-hhi0tyh5a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T16:20:00.000Z","end":"2026-01-23T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-69prqbn9v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T16:40:00.000Z","end":"2026-01-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-2pj70pnwk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T17:00:00.000Z","end":"2026-01-23T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-7afrf770m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T17:20:00.000Z","end":"2026-01-23T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-fmzhztj78","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T17:40:00.000Z","end":"2026-01-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-k8uly23c8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T18:00:00.000Z","end":"2026-01-23T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-icvip3pyv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T18:20:00.000Z","end":"2026-01-23T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-kiobnyjmj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T18:40:00.000Z","end":"2026-01-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-ycs2teta4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T19:00:00.000Z","end":"2026-01-23T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-1igyb43ip","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T19:20:00.000Z","end":"2026-01-23T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-gxp2wzkwf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T19:40:00.000Z","end":"2026-01-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-868l3da04","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T20:00:00.000Z","end":"2026-01-23T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-1b5rgqrzo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T20:20:00.000Z","end":"2026-01-23T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-wo9gqxic5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-23T20:40:00.000Z","end":"2026-01-23T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-tin0q84cr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T21:00:00.000Z","end":"2026-01-23T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-bn6et3rqq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T21:20:00.000Z","end":"2026-01-23T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085541-hzxchmsiy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-23T21:40:00.000Z","end":"2026-01-23T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-5qhs8qpk1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T13:00:00.000Z","end":"2026-01-26T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-0l7490b6d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T13:20:00.000Z","end":"2026-01-26T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-rgcpagw9k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T13:40:00.000Z","end":"2026-01-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-wiltqepnv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T14:00:00.000Z","end":"2026-01-26T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-acrwzctjd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T14:20:00.000Z","end":"2026-01-26T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-ik2wdyl2w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T14:40:00.000Z","end":"2026-01-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-vlhtcbav1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T15:00:00.000Z","end":"2026-01-26T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-pkkbs6wzc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T15:20:00.000Z","end":"2026-01-26T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-it7ighs20","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T15:40:00.000Z","end":"2026-01-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-ilj3m22wl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T16:00:00.000Z","end":"2026-01-26T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-iryqdokxd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T16:20:00.000Z","end":"2026-01-26T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-reip6bxpg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T16:40:00.000Z","end":"2026-01-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-watf90hes","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T17:00:00.000Z","end":"2026-01-26T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-68l63fpwe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T17:20:00.000Z","end":"2026-01-26T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-gr4ok7l00","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T17:40:00.000Z","end":"2026-01-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-ld335k0kw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T18:00:00.000Z","end":"2026-01-26T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-0kx2k0ue2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T18:20:00.000Z","end":"2026-01-26T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-8otrlqkjg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T18:40:00.000Z","end":"2026-01-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-vepxzit5w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T19:00:00.000Z","end":"2026-01-26T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-tc058aarg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T19:20:00.000Z","end":"2026-01-26T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-u0gfwkyvm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T19:40:00.000Z","end":"2026-01-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-ajckyu6rr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T20:00:00.000Z","end":"2026-01-26T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-cf9o538sp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T20:20:00.000Z","end":"2026-01-26T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-7j14szdrj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T20:40:00.000Z","end":"2026-01-26T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-8t01fn8ry","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-26T21:00:00.000Z","end":"2026-01-26T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-mo8xnzafp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T21:20:00.000Z","end":"2026-01-26T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-3e2mqrwrj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-26T21:40:00.000Z","end":"2026-01-26T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-4ro9gk9zw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T13:00:00.000Z","end":"2026-01-27T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-qvl7nos11","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T13:20:00.000Z","end":"2026-01-27T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-jwi9r5r7p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T13:40:00.000Z","end":"2026-01-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085542-c27kktk1z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T14:00:00.000Z","end":"2026-01-27T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-jzg13myp9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T14:20:00.000Z","end":"2026-01-27T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-otneyhowb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T14:40:00.000Z","end":"2026-01-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-77p880s9i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T15:00:00.000Z","end":"2026-01-27T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-ulpf2d19z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T15:20:00.000Z","end":"2026-01-27T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-8p8yupt6b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T15:40:00.000Z","end":"2026-01-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-cc3ypimlj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T16:00:00.000Z","end":"2026-01-27T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-xuu7xl7d3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T16:20:00.000Z","end":"2026-01-27T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-2xdcypr78","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T16:40:00.000Z","end":"2026-01-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.090Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-f7f5vy8s8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T17:00:00.000Z","end":"2026-01-27T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-0fr6q5phb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T17:20:00.000Z","end":"2026-01-27T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-y2x1cd2iz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T17:40:00.000Z","end":"2026-01-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-oebkxu0y8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T18:00:00.000Z","end":"2026-01-27T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-a0db6j6ei","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T18:20:00.000Z","end":"2026-01-27T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-oqa075q2t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T18:40:00.000Z","end":"2026-01-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-kgxghh53u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T19:00:00.000Z","end":"2026-01-27T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-kn7c3himd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T19:20:00.000Z","end":"2026-01-27T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-4grh7q583","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T19:40:00.000Z","end":"2026-01-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-1twf114ep","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T20:00:00.000Z","end":"2026-01-27T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-fq970c4rb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T20:20:00.000Z","end":"2026-01-27T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-betrcvgdv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T20:40:00.000Z","end":"2026-01-27T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-cfr2kl6x0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T21:00:00.000Z","end":"2026-01-27T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-1uo89er3h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-27T21:20:00.000Z","end":"2026-01-27T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-rhk9zn23j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-27T21:40:00.000Z","end":"2026-01-27T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-zq4hswotb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T13:00:00.000Z","end":"2026-01-28T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-bumt3rjfl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T13:20:00.000Z","end":"2026-01-28T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-sq6hrql7p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T13:40:00.000Z","end":"2026-01-28T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-lw4hts7vm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T14:00:00.000Z","end":"2026-01-28T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-m15l27yxo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T14:20:00.000Z","end":"2026-01-28T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-qmnvcvmsi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T14:40:00.000Z","end":"2026-01-28T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-mj4nyai9a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T15:00:00.000Z","end":"2026-01-28T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-j9ic1eo2k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T15:20:00.000Z","end":"2026-01-28T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-4oigizffw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T15:40:00.000Z","end":"2026-01-28T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-big4syw9d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T16:00:00.000Z","end":"2026-01-28T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-hihvtoke2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T16:20:00.000Z","end":"2026-01-28T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-ptltjwd7h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T16:40:00.000Z","end":"2026-01-28T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085543-gwajp5v4m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T17:00:00.000Z","end":"2026-01-28T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-emyl05kou","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T17:20:00.000Z","end":"2026-01-28T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-q6r56lbqt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T17:40:00.000Z","end":"2026-01-28T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-qoqtmw07q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T18:00:00.000Z","end":"2026-01-28T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-sq6pgier7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T18:20:00.000Z","end":"2026-01-28T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-8zjz7l2nw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T18:40:00.000Z","end":"2026-01-28T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-l98j8wi94","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T19:00:00.000Z","end":"2026-01-28T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-rm12hi7ku","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T19:20:00.000Z","end":"2026-01-28T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-57otudmec","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T19:40:00.000Z","end":"2026-01-28T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-dx12veyqq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T20:00:00.000Z","end":"2026-01-28T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-fxhvqlw73","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-28T20:20:00.000Z","end":"2026-01-28T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-4bh4o8zx4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T20:40:00.000Z","end":"2026-01-28T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-bdy3a3cti","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T21:00:00.000Z","end":"2026-01-28T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-0xyyba00c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T21:20:00.000Z","end":"2026-01-28T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-yqr7zph1d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-28T21:40:00.000Z","end":"2026-01-28T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-ldca8x8vt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T13:00:00.000Z","end":"2026-01-29T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-qhdzyuj3c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T13:20:00.000Z","end":"2026-01-29T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-bwu8qw3te","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T13:40:00.000Z","end":"2026-01-29T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-vvkugg6hd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T14:00:00.000Z","end":"2026-01-29T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-oei0cm2h9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T14:20:00.000Z","end":"2026-01-29T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-ri8ukw4zz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T14:40:00.000Z","end":"2026-01-29T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-mrnxou46g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T15:00:00.000Z","end":"2026-01-29T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-es1rx4zs5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T15:20:00.000Z","end":"2026-01-29T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-ossbpf3tk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T15:40:00.000Z","end":"2026-01-29T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-c7ktuu9nx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T16:00:00.000Z","end":"2026-01-29T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-1t8jcbek1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T16:20:00.000Z","end":"2026-01-29T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-qhvlafnkq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T16:40:00.000Z","end":"2026-01-29T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-2reo8fqvp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T17:00:00.000Z","end":"2026-01-29T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-jgzbo920u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T17:20:00.000Z","end":"2026-01-29T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-pzdtaweki","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T17:40:00.000Z","end":"2026-01-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-9dyphzh7a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T18:00:00.000Z","end":"2026-01-29T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-6ej3jhnia","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T18:20:00.000Z","end":"2026-01-29T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-vkruke96o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T18:40:00.000Z","end":"2026-01-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-ez6auwf63","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T19:00:00.000Z","end":"2026-01-29T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085544-t35sio351","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T19:20:00.000Z","end":"2026-01-29T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-igextp8tr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T19:40:00.000Z","end":"2026-01-29T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-ud4v6qg01","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T20:00:00.000Z","end":"2026-01-29T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.972Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-k93831s9x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T20:20:00.000Z","end":"2026-01-29T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-x4gne2p4t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T20:40:00.000Z","end":"2026-01-29T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-f0k2yn3fw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-29T21:00:00.000Z","end":"2026-01-29T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-b050erd01","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T21:20:00.000Z","end":"2026-01-29T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-tg3ek8nb4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-29T21:40:00.000Z","end":"2026-01-29T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-voomo2w0b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T13:00:00.000Z","end":"2026-01-30T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-ksmiexony","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T13:20:00.000Z","end":"2026-01-30T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-z4mjnd91e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T13:40:00.000Z","end":"2026-01-30T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-r13dbxkzt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T14:00:00.000Z","end":"2026-01-30T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-oqaao916k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T14:20:00.000Z","end":"2026-01-30T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-kea1bcmq3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T14:40:00.000Z","end":"2026-01-30T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-cqab62jks","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T15:00:00.000Z","end":"2026-01-30T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-si6asfywl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T15:20:00.000Z","end":"2026-01-30T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-4tg89zjq2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T15:40:00.000Z","end":"2026-01-30T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-nzqbzqkfo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T16:00:00.000Z","end":"2026-01-30T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-k713xdpmy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T16:20:00.000Z","end":"2026-01-30T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-sptryfu8o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T16:40:00.000Z","end":"2026-01-30T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-bvwfw5szd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T17:00:00.000Z","end":"2026-01-30T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-l0kpx2ntn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T17:20:00.000Z","end":"2026-01-30T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-y6w40h93k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T17:40:00.000Z","end":"2026-01-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-sleh1c46g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T18:00:00.000Z","end":"2026-01-30T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-iksdc0hwy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T18:20:00.000Z","end":"2026-01-30T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-om4ruz30z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T18:40:00.000Z","end":"2026-01-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-wx2oeocn6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T19:00:00.000Z","end":"2026-01-30T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-5cqdeegdx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T19:20:00.000Z","end":"2026-01-30T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-jvgjux54r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T19:40:00.000Z","end":"2026-01-30T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-kkxgokc23","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T20:00:00.000Z","end":"2026-01-30T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-jxfoerzuy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T20:20:00.000Z","end":"2026-01-30T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-oqjn9ugoo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T20:40:00.000Z","end":"2026-01-30T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085546-1su97raa6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-01-30T21:00:00.000Z","end":"2026-01-30T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-peqzj806w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T21:20:00.000Z","end":"2026-01-30T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-ruitbbpbz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-01-30T21:40:00.000Z","end":"2026-01-30T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-zs08mj8b5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T13:00:00.000Z","end":"2026-02-02T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-xzwye0s52","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T13:20:00.000Z","end":"2026-02-02T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-slngmhv1i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T13:40:00.000Z","end":"2026-02-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-xqarxxmgf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T14:00:00.000Z","end":"2026-02-02T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-xngz79i8n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T14:20:00.000Z","end":"2026-02-02T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-c3kqk7rbi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T14:40:00.000Z","end":"2026-02-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-uffchp5oc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T15:00:00.000Z","end":"2026-02-02T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-ztp52rg78","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T15:20:00.000Z","end":"2026-02-02T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-3gy2vx08y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T15:40:00.000Z","end":"2026-02-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-bs6w70b40","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T16:00:00.000Z","end":"2026-02-02T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-am5xf5nw7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T16:20:00.000Z","end":"2026-02-02T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-phn6ok7hd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T16:40:00.000Z","end":"2026-02-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-ssr9wbnst","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T17:00:00.000Z","end":"2026-02-02T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-3vtf9220r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T17:20:00.000Z","end":"2026-02-02T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-6wpsc344h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T17:40:00.000Z","end":"2026-02-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-h44hveanm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T18:00:00.000Z","end":"2026-02-02T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-96mzwtrcq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T18:20:00.000Z","end":"2026-02-02T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-uuwp82de8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T18:40:00.000Z","end":"2026-02-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-l0hwelgfy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T19:00:00.000Z","end":"2026-02-02T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-2xws309b1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T19:20:00.000Z","end":"2026-02-02T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-q1asisg6y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T19:40:00.000Z","end":"2026-02-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-pous3w9x3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T20:00:00.000Z","end":"2026-02-02T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-iw9go0py9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T20:20:00.000Z","end":"2026-02-02T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-60pa6ht5b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T20:40:00.000Z","end":"2026-02-02T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-qd188yhej","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T21:00:00.000Z","end":"2026-02-02T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-ek9jq4itr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-02T21:20:00.000Z","end":"2026-02-02T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-8m07x5rmz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-02T21:40:00.000Z","end":"2026-02-02T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-ucy3pah06","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T13:00:00.000Z","end":"2026-02-03T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-vs3pryu3u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T13:20:00.000Z","end":"2026-02-03T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-jwi5vqik0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T13:40:00.000Z","end":"2026-02-03T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085547-iteyzaw10","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T14:00:00.000Z","end":"2026-02-03T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-iqypbo7u4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T14:20:00.000Z","end":"2026-02-03T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-5j4xpr95r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T14:40:00.000Z","end":"2026-02-03T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-x7z821jve","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T15:00:00.000Z","end":"2026-02-03T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-8hsms6gny","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T15:20:00.000Z","end":"2026-02-03T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-mriy0hnt8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T15:40:00.000Z","end":"2026-02-03T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-o66l0hiyy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T16:00:00.000Z","end":"2026-02-03T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-e48164uiu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T16:20:00.000Z","end":"2026-02-03T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-9eerko4mp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T16:40:00.000Z","end":"2026-02-03T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-ln7pqywdd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T17:00:00.000Z","end":"2026-02-03T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-6x1fm0dkh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T17:20:00.000Z","end":"2026-02-03T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-xs4yj65z7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T17:40:00.000Z","end":"2026-02-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-6pnfewxcy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T18:00:00.000Z","end":"2026-02-03T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-5lu4tp6ng","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T18:20:00.000Z","end":"2026-02-03T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-wuvt13wl3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T18:40:00.000Z","end":"2026-02-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-d2kkd0z9o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T19:00:00.000Z","end":"2026-02-03T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-uof590abl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T19:20:00.000Z","end":"2026-02-03T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-9wq56quga","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T19:40:00.000Z","end":"2026-02-03T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-j5hlgltsv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T20:00:00.000Z","end":"2026-02-03T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-l24en25dw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T20:20:00.000Z","end":"2026-02-03T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-duo2f13tt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-03T20:40:00.000Z","end":"2026-02-03T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-7k42mnn1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T21:00:00.000Z","end":"2026-02-03T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-36xyzttjl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T21:20:00.000Z","end":"2026-02-03T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-orjlb6nhj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-03T21:40:00.000Z","end":"2026-02-03T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-wm6tzwz1z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T13:00:00.000Z","end":"2026-02-04T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-3prlla254","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T13:20:00.000Z","end":"2026-02-04T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-jvbfvzhrt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T13:40:00.000Z","end":"2026-02-04T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-raw6zo7x8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T14:00:00.000Z","end":"2026-02-04T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-mswl4j272","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T14:20:00.000Z","end":"2026-02-04T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-bso7sogt3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T14:40:00.000Z","end":"2026-02-04T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-b415oqvgx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T15:00:00.000Z","end":"2026-02-04T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-vvn5qp0xz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T15:20:00.000Z","end":"2026-02-04T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-8jnf7r0as","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T15:40:00.000Z","end":"2026-02-04T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-da0s1d2v0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T16:00:00.000Z","end":"2026-02-04T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085548-wds0r6q17","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T16:20:00.000Z","end":"2026-02-04T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-7m5efz915","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T16:40:00.000Z","end":"2026-02-04T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-fi4ssdbdt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T17:00:00.000Z","end":"2026-02-04T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-o7yacjh54","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T17:20:00.000Z","end":"2026-02-04T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-euk4bavia","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T17:40:00.000Z","end":"2026-02-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-07msplh4w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T18:00:00.000Z","end":"2026-02-04T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-yhbt095jp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T18:20:00.000Z","end":"2026-02-04T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-r4ulj32k6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T18:40:00.000Z","end":"2026-02-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-e6qltpft5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T19:00:00.000Z","end":"2026-02-04T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-2kwtr5kwe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T19:20:00.000Z","end":"2026-02-04T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-4a0eejzyx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T19:40:00.000Z","end":"2026-02-04T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-chf1e5dbb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T20:00:00.000Z","end":"2026-02-04T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-urrvzkebl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T20:20:00.000Z","end":"2026-02-04T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-ok16umxb8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T20:40:00.000Z","end":"2026-02-04T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-70ldvmakm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T21:00:00.000Z","end":"2026-02-04T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-na4mk8rfb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-04T21:20:00.000Z","end":"2026-02-04T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-oyczse5z0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-04T21:40:00.000Z","end":"2026-02-04T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-jq2w9i8k2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T13:00:00.000Z","end":"2026-02-05T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-5us0bdxec","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T13:20:00.000Z","end":"2026-02-05T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-y2r38wqu2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T13:40:00.000Z","end":"2026-02-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-p7ljjl9fv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T14:00:00.000Z","end":"2026-02-05T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-s1ch3fso2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T14:20:00.000Z","end":"2026-02-05T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-sxb5nntoa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T14:40:00.000Z","end":"2026-02-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-2sowsy00p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T15:00:00.000Z","end":"2026-02-05T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-5kxpwrf3d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T15:20:00.000Z","end":"2026-02-05T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-n5m389zuk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T15:40:00.000Z","end":"2026-02-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-68ipx9qwd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T16:00:00.000Z","end":"2026-02-05T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-dbrj948j9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T16:20:00.000Z","end":"2026-02-05T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-4vjm9f5ry","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T16:40:00.000Z","end":"2026-02-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-nn2slyz8k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T17:00:00.000Z","end":"2026-02-05T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-fczzwzxbc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T17:20:00.000Z","end":"2026-02-05T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-3udjn4fo4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T17:40:00.000Z","end":"2026-02-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-szlqlxror","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T18:00:00.000Z","end":"2026-02-05T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085549-2ocx072f2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T18:20:00.000Z","end":"2026-02-05T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-cuzf9fb69","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T18:40:00.000Z","end":"2026-02-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-95fykb0fa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T19:00:00.000Z","end":"2026-02-05T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-h5sg47f4y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T19:20:00.000Z","end":"2026-02-05T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.101Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-7bsy0ryu6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T19:40:00.000Z","end":"2026-02-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-25nuklvm7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T20:00:00.000Z","end":"2026-02-05T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-c1rojejxm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T20:20:00.000Z","end":"2026-02-05T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-sli5ywzaq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T20:40:00.000Z","end":"2026-02-05T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-tr1d0ytrt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T21:00:00.000Z","end":"2026-02-05T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-s6u16axnm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-05T21:20:00.000Z","end":"2026-02-05T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-lm8qoj62k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-05T21:40:00.000Z","end":"2026-02-05T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-qtcc209pa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T13:00:00.000Z","end":"2026-02-06T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-s5vtlyh6c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T13:20:00.000Z","end":"2026-02-06T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-0coou13zs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T13:40:00.000Z","end":"2026-02-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-478ffixhl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T14:00:00.000Z","end":"2026-02-06T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-w67ds01d8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-06T14:20:00.000Z","end":"2026-02-06T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-ivlmw39jm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T14:40:00.000Z","end":"2026-02-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-mhnavr9cr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T15:00:00.000Z","end":"2026-02-06T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-42s495q9k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-06T15:20:00.000Z","end":"2026-02-06T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-f4i4t4lne","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T15:40:00.000Z","end":"2026-02-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-f8ok8uc0o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T16:00:00.000Z","end":"2026-02-06T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-esspahsne","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-06T16:20:00.000Z","end":"2026-02-06T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-64a6fhgxi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-06T16:40:00.000Z","end":"2026-02-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-2ddt2l6wo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-06T17:00:00.000Z","end":"2026-02-06T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-r41tptz71","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T17:20:00.000Z","end":"2026-02-06T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-qe1zt21h5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T17:40:00.000Z","end":"2026-02-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-z165shwem","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T18:00:00.000Z","end":"2026-02-06T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-lj2v4l675","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-06T18:20:00.000Z","end":"2026-02-06T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-uy9ybe8bs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T18:40:00.000Z","end":"2026-02-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-zhay0l5z7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T19:00:00.000Z","end":"2026-02-06T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-zpb2qs558","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T19:20:00.000Z","end":"2026-02-06T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-p0wrmgfw6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T19:40:00.000Z","end":"2026-02-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-wfuytsrbc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-06T20:00:00.000Z","end":"2026-02-06T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.550Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085550-yy2m3ipxr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T20:20:00.000Z","end":"2026-02-06T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085551-xnw18q23o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T20:40:00.000Z","end":"2026-02-06T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085551-z1t5er0f9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-06T21:00:00.000Z","end":"2026-02-06T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.551Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085551-d9ulxz36x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T21:20:00.000Z","end":"2026-02-06T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-zw7q4vrqa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-06T21:40:00.000Z","end":"2026-02-06T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-ka26l6z63","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T13:00:00.000Z","end":"2026-02-09T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-5mjubwin6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T13:20:00.000Z","end":"2026-02-09T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-lbczws73r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T13:40:00.000Z","end":"2026-02-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-fecdv4fbg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T14:00:00.000Z","end":"2026-02-09T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-kk2zhc5f9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T14:20:00.000Z","end":"2026-02-09T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-zd9krt0gs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T14:40:00.000Z","end":"2026-02-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-k9svyuh3o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T15:00:00.000Z","end":"2026-02-09T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-ovg12hjr1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T15:20:00.000Z","end":"2026-02-09T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-75b6j5xf0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T15:40:00.000Z","end":"2026-02-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-h4mzjz76q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T16:00:00.000Z","end":"2026-02-09T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-guw6rfjmi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T16:20:00.000Z","end":"2026-02-09T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-nca3zvn46","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T16:40:00.000Z","end":"2026-02-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-p9y36693o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T17:00:00.000Z","end":"2026-02-09T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-5tat6tjua","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T17:20:00.000Z","end":"2026-02-09T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-35anpudqe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T17:40:00.000Z","end":"2026-02-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-7hwzyazzx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T18:00:00.000Z","end":"2026-02-09T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-ivileb6ec","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T18:20:00.000Z","end":"2026-02-09T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-pwck1s67h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T18:40:00.000Z","end":"2026-02-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-4u4lqzwbx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T19:00:00.000Z","end":"2026-02-09T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-yp8dbn5s3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T19:20:00.000Z","end":"2026-02-09T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-q0b747qhj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T19:40:00.000Z","end":"2026-02-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-euoz7hrvm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T20:00:00.000Z","end":"2026-02-09T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-q6d3yppfa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T20:20:00.000Z","end":"2026-02-09T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-zjiic77p8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T20:40:00.000Z","end":"2026-02-09T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085552-l26s8azkh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-09T21:00:00.000Z","end":"2026-02-09T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-yq614ojhl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T21:20:00.000Z","end":"2026-02-09T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-ykcnf6kx6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-09T21:40:00.000Z","end":"2026-02-09T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-8dhyyco2j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T13:00:00.000Z","end":"2026-02-10T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-kcyrvctir","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T13:20:00.000Z","end":"2026-02-10T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-595asjkdg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T13:40:00.000Z","end":"2026-02-10T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-glhnx6rbv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T14:00:00.000Z","end":"2026-02-10T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-9xnbefmwx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T14:20:00.000Z","end":"2026-02-10T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-g899h830k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T14:40:00.000Z","end":"2026-02-10T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-accokp70x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T15:00:00.000Z","end":"2026-02-10T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-jrbr3wr7m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T15:20:00.000Z","end":"2026-02-10T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-qbiv4d7pe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T15:40:00.000Z","end":"2026-02-10T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-cr7y53530","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T16:00:00.000Z","end":"2026-02-10T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-j8fq1bnmq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T16:20:00.000Z","end":"2026-02-10T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-9tnhv1zax","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T16:40:00.000Z","end":"2026-02-10T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-pdkw3n3k1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-10T17:00:00.000Z","end":"2026-02-10T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-5bl50ipta","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T17:20:00.000Z","end":"2026-02-10T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-yccnw19bc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-10T17:40:00.000Z","end":"2026-02-10T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-obgbder00","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T18:00:00.000Z","end":"2026-02-10T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-s2tp2qj75","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T18:20:00.000Z","end":"2026-02-10T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-3lo7lougp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T18:40:00.000Z","end":"2026-02-10T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-uojxxz7rw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T19:00:00.000Z","end":"2026-02-10T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-kmmtsj9dw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T19:20:00.000Z","end":"2026-02-10T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-a5b4s7d0c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T19:40:00.000Z","end":"2026-02-10T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-v6d0zrzwo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T20:00:00.000Z","end":"2026-02-10T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-x1vvsdwnf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T20:20:00.000Z","end":"2026-02-10T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-xlwxc2tlj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-10T20:40:00.000Z","end":"2026-02-10T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-4o9bs023j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T21:00:00.000Z","end":"2026-02-10T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-3pwwpo3f4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T21:20:00.000Z","end":"2026-02-10T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-a1kcenh4d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-10T21:40:00.000Z","end":"2026-02-10T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-jphvus74h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T13:00:00.000Z","end":"2026-02-11T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-6z2hzopqu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T13:20:00.000Z","end":"2026-02-11T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-6bgrlu94d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T13:40:00.000Z","end":"2026-02-11T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-ze85yc4sd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T14:00:00.000Z","end":"2026-02-11T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-0oudvpb3q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-11T14:20:00.000Z","end":"2026-02-11T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-j77y9qz1v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T14:40:00.000Z","end":"2026-02-11T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-y73pu64yz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-11T15:00:00.000Z","end":"2026-02-11T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085553-xepsynkr7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T15:20:00.000Z","end":"2026-02-11T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-u8xww7zdc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T15:40:00.000Z","end":"2026-02-11T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-ythumpdup","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T16:00:00.000Z","end":"2026-02-11T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-h5m5utnkl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T16:20:00.000Z","end":"2026-02-11T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-6as8f9mpq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T16:40:00.000Z","end":"2026-02-11T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-lka3o5qlr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T17:00:00.000Z","end":"2026-02-11T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-qbc2cw857","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T17:20:00.000Z","end":"2026-02-11T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-1vsyjqs7e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T17:40:00.000Z","end":"2026-02-11T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-kqfzq78g7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-11T18:00:00.000Z","end":"2026-02-11T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-eo42r0o0i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T18:20:00.000Z","end":"2026-02-11T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-jv1satkxu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T18:40:00.000Z","end":"2026-02-11T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-9g1fz54ci","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T19:00:00.000Z","end":"2026-02-11T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-3tpx2q3kl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T19:20:00.000Z","end":"2026-02-11T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-drz0f7f7m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T19:40:00.000Z","end":"2026-02-11T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-p1lcuaenm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T20:00:00.000Z","end":"2026-02-11T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-w2er2s3e2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T20:20:00.000Z","end":"2026-02-11T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-tlq03lsla","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T20:40:00.000Z","end":"2026-02-11T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-h10dptgnz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T21:00:00.000Z","end":"2026-02-11T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-ykk12ruxz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T21:20:00.000Z","end":"2026-02-11T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-zmkeupz0u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-11T21:40:00.000Z","end":"2026-02-11T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-csij7msd2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T13:00:00.000Z","end":"2026-02-12T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-yg8fcm6mv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T13:20:00.000Z","end":"2026-02-12T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-7dlxywqk3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T13:40:00.000Z","end":"2026-02-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-y3n44abnq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T14:00:00.000Z","end":"2026-02-12T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-lp2se85od","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T14:20:00.000Z","end":"2026-02-12T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-lttlncl57","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T14:40:00.000Z","end":"2026-02-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-4gmgeugdx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T15:00:00.000Z","end":"2026-02-12T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-1osqz72fd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T15:20:00.000Z","end":"2026-02-12T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-xt61y3nuk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T15:40:00.000Z","end":"2026-02-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-v8hb41oye","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T16:00:00.000Z","end":"2026-02-12T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-75yti0d3r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T16:20:00.000Z","end":"2026-02-12T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-owpsmnki7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T16:40:00.000Z","end":"2026-02-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-jvxq478li","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T17:00:00.000Z","end":"2026-02-12T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-b2643tapf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T17:20:00.000Z","end":"2026-02-12T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-qos93rxdi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T17:40:00.000Z","end":"2026-02-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085554-6zevum2wt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T18:00:00.000Z","end":"2026-02-12T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-b4ytnoonn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T18:20:00.000Z","end":"2026-02-12T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-9esuol2ih","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T18:40:00.000Z","end":"2026-02-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-i5laa6m8w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T19:00:00.000Z","end":"2026-02-12T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-mhi4y2ufa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T19:20:00.000Z","end":"2026-02-12T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-x6fw520w8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T19:40:00.000Z","end":"2026-02-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-dkrw9su3b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T20:00:00.000Z","end":"2026-02-12T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-2imv7dfvk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T20:20:00.000Z","end":"2026-02-12T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-n18nhlee9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T20:40:00.000Z","end":"2026-02-12T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-haix4bs8f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-12T21:00:00.000Z","end":"2026-02-12T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-m5i8e3fbp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T21:20:00.000Z","end":"2026-02-12T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-05bx67uyq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-12T21:40:00.000Z","end":"2026-02-12T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-x45s0b29z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T13:00:00.000Z","end":"2026-02-13T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-6z1apa3ly","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T13:20:00.000Z","end":"2026-02-13T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-qao996jj7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T13:40:00.000Z","end":"2026-02-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-7jc260rj5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T14:00:00.000Z","end":"2026-02-13T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-nuzqn778t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T14:20:00.000Z","end":"2026-02-13T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-l3xd7q5mx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T14:40:00.000Z","end":"2026-02-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-4qfsk3yqj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T15:00:00.000Z","end":"2026-02-13T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-qtear75o2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T15:20:00.000Z","end":"2026-02-13T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-41z3ofsyz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T15:40:00.000Z","end":"2026-02-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-ck6b5j6tt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T16:00:00.000Z","end":"2026-02-13T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-kks6zq6mw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T16:20:00.000Z","end":"2026-02-13T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-17yletry7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T16:40:00.000Z","end":"2026-02-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-dx125uwgl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T17:00:00.000Z","end":"2026-02-13T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-7noz9eynb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T17:20:00.000Z","end":"2026-02-13T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-8s29hc4oc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T17:40:00.000Z","end":"2026-02-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-z8wwzx4bp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T18:00:00.000Z","end":"2026-02-13T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-ag9xxas3v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T18:20:00.000Z","end":"2026-02-13T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-zerofa9u3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T18:40:00.000Z","end":"2026-02-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-hz7h03ogg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T19:00:00.000Z","end":"2026-02-13T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-mhdyxdv4i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T19:20:00.000Z","end":"2026-02-13T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-u7e0b6fs7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T19:40:00.000Z","end":"2026-02-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-tnf8lrt36","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T20:00:00.000Z","end":"2026-02-13T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-xs4wngmwh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T20:20:00.000Z","end":"2026-02-13T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085555-dmd38a9wk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-13T20:40:00.000Z","end":"2026-02-13T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-jwqmp9kn3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T21:00:00.000Z","end":"2026-02-13T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-pjytt8dr3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T21:20:00.000Z","end":"2026-02-13T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-ka7jarjb7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-13T21:40:00.000Z","end":"2026-02-13T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-i47e2qpqk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T13:00:00.000Z","end":"2026-02-16T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-cw1v6csrg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T13:20:00.000Z","end":"2026-02-16T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-2zba0v69t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T13:40:00.000Z","end":"2026-02-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-6eqgckcw0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T14:00:00.000Z","end":"2026-02-16T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-akqpmqo12","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T14:20:00.000Z","end":"2026-02-16T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-d41gub6k2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T14:40:00.000Z","end":"2026-02-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-7nroivwev","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T15:00:00.000Z","end":"2026-02-16T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-2l6rid1nd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T15:20:00.000Z","end":"2026-02-16T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-xtfg4760h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T15:40:00.000Z","end":"2026-02-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-apk9ivktr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T16:00:00.000Z","end":"2026-02-16T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-orihcymbf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T16:20:00.000Z","end":"2026-02-16T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-rdzhaisjv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T16:40:00.000Z","end":"2026-02-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-krbzz2pum","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T17:00:00.000Z","end":"2026-02-16T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-qmi7uyh6f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T17:20:00.000Z","end":"2026-02-16T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-mxodmk1o0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T17:40:00.000Z","end":"2026-02-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-4uxrrc8cr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T18:00:00.000Z","end":"2026-02-16T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-l02wef9yp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T18:20:00.000Z","end":"2026-02-16T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-8akaj1ze1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T18:40:00.000Z","end":"2026-02-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-5t24ajbo9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T19:00:00.000Z","end":"2026-02-16T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-ewk6eg1cf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T19:20:00.000Z","end":"2026-02-16T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-6gzlupsy1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T19:40:00.000Z","end":"2026-02-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-2ycoq182u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T20:00:00.000Z","end":"2026-02-16T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-9xconemw0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T20:20:00.000Z","end":"2026-02-16T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-wam868ik6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T20:40:00.000Z","end":"2026-02-16T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085556-doa1bv1en","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-16T21:00:00.000Z","end":"2026-02-16T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-rm996n8if","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T21:20:00.000Z","end":"2026-02-16T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-bovv7na0c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-16T21:40:00.000Z","end":"2026-02-16T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-zyefqt5ce","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T13:00:00.000Z","end":"2026-02-17T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-wg8o3x21s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T13:20:00.000Z","end":"2026-02-17T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-0b1udi811","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T13:40:00.000Z","end":"2026-02-17T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-ychb0fpnh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T14:00:00.000Z","end":"2026-02-17T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-xd7f23nbu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T14:20:00.000Z","end":"2026-02-17T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-6dnl4u022","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T14:40:00.000Z","end":"2026-02-17T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-z3mzc9ywi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T15:00:00.000Z","end":"2026-02-17T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-xrdhryk9j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T15:20:00.000Z","end":"2026-02-17T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-hhrb87t8j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T15:40:00.000Z","end":"2026-02-17T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-6fcrwk1jp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T16:00:00.000Z","end":"2026-02-17T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-xelbmtmsa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T16:20:00.000Z","end":"2026-02-17T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-qo77ojpuv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T16:40:00.000Z","end":"2026-02-17T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-9u65pvsce","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T17:00:00.000Z","end":"2026-02-17T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-mak5szgq6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T17:20:00.000Z","end":"2026-02-17T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-mow9z5eir","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T17:40:00.000Z","end":"2026-02-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085557-n0244ab50","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T18:00:00.000Z","end":"2026-02-17T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-nt5q2frvi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T18:20:00.000Z","end":"2026-02-17T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-0aug26col","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T18:40:00.000Z","end":"2026-02-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-0bcqq8ces","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T19:00:00.000Z","end":"2026-02-17T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-diy6nvgnn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T19:20:00.000Z","end":"2026-02-17T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-r1ua0n9hn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T19:40:00.000Z","end":"2026-02-17T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-maiybp2v2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T20:00:00.000Z","end":"2026-02-17T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-bslg957lk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T20:20:00.000Z","end":"2026-02-17T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-9nb36e64a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T20:40:00.000Z","end":"2026-02-17T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-yybnwy6v1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T21:00:00.000Z","end":"2026-02-17T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085558-aqe6sh49y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-17T21:20:00.000Z","end":"2026-02-17T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-t88hkufi0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-17T21:40:00.000Z","end":"2026-02-17T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-j18y91itt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T13:00:00.000Z","end":"2026-02-18T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-nmu3gspmb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T13:20:00.000Z","end":"2026-02-18T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-x9tq8yodq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T13:40:00.000Z","end":"2026-02-18T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-k2933es50","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T14:00:00.000Z","end":"2026-02-18T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-a1tk42ssc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T14:20:00.000Z","end":"2026-02-18T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-hacd8jhrt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T14:40:00.000Z","end":"2026-02-18T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-srzoq5chc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T15:00:00.000Z","end":"2026-02-18T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-3e5forg9g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T15:20:00.000Z","end":"2026-02-18T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-cb886k156","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T15:40:00.000Z","end":"2026-02-18T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-2b0jf4kd6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T16:00:00.000Z","end":"2026-02-18T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-gyzb4y731","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T16:20:00.000Z","end":"2026-02-18T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-98o1paj0h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T16:40:00.000Z","end":"2026-02-18T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-sqawv109x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T17:00:00.000Z","end":"2026-02-18T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-kdglcd0jt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T17:20:00.000Z","end":"2026-02-18T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-mup5cz570","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T17:40:00.000Z","end":"2026-02-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-18zz0t03q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T18:00:00.000Z","end":"2026-02-18T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-q1bwc5mrd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T18:20:00.000Z","end":"2026-02-18T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-fq5q56yt7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T18:40:00.000Z","end":"2026-02-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-z2lrf6xay","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T19:00:00.000Z","end":"2026-02-18T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-qpxbazux1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T19:20:00.000Z","end":"2026-02-18T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-30lr0i2dh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T19:40:00.000Z","end":"2026-02-18T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-ru1olu6wj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T20:00:00.000Z","end":"2026-02-18T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-6aj14bya3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T20:20:00.000Z","end":"2026-02-18T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-wz8100pp4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T20:40:00.000Z","end":"2026-02-18T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.960Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-zkyn9jxp7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T21:00:00.000Z","end":"2026-02-18T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-m344y7lor","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-18T21:20:00.000Z","end":"2026-02-18T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-dpytuiemi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-18T21:40:00.000Z","end":"2026-02-18T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-rmnlcz4yk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T13:00:00.000Z","end":"2026-02-19T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-6gq4vzi04","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T13:20:00.000Z","end":"2026-02-19T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-azpmyd9yk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T13:40:00.000Z","end":"2026-02-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-z6vzkf4rb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T14:00:00.000Z","end":"2026-02-19T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-w2pkj9s71","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T14:20:00.000Z","end":"2026-02-19T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085559-rsk548ma1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T14:40:00.000Z","end":"2026-02-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-sv34g4a1x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T15:00:00.000Z","end":"2026-02-19T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-iq1yzui79","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T15:20:00.000Z","end":"2026-02-19T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-085dyxms3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T15:40:00.000Z","end":"2026-02-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-ihldbmsg6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T16:00:00.000Z","end":"2026-02-19T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-my42z9uz8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T16:20:00.000Z","end":"2026-02-19T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-wb4gxc3cl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T16:40:00.000Z","end":"2026-02-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-0le54f2r7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T17:00:00.000Z","end":"2026-02-19T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-71u0eg5mi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T17:20:00.000Z","end":"2026-02-19T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-5434hyy5h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T17:40:00.000Z","end":"2026-02-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-xwmpet44f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T18:00:00.000Z","end":"2026-02-19T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-ohdjmn9t1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T18:20:00.000Z","end":"2026-02-19T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-s30dqpw02","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T18:40:00.000Z","end":"2026-02-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-05usfuv99","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T19:00:00.000Z","end":"2026-02-19T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.975Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-46jgmcdrx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T19:20:00.000Z","end":"2026-02-19T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-kjw4344wg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T19:40:00.000Z","end":"2026-02-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-5jirtapas","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T20:00:00.000Z","end":"2026-02-19T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-0tmxuxz0m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T20:20:00.000Z","end":"2026-02-19T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-3ahkftcuz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T20:40:00.000Z","end":"2026-02-19T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-3ntiahlh5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T21:00:00.000Z","end":"2026-02-19T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-cg7q8gvpx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-19T21:20:00.000Z","end":"2026-02-19T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-bywb2n7fs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-19T21:40:00.000Z","end":"2026-02-19T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-s4stldk50","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T13:00:00.000Z","end":"2026-02-20T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-ssk8fp7wi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T13:20:00.000Z","end":"2026-02-20T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-ayah7bv0z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T13:40:00.000Z","end":"2026-02-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-12pe2xy8r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T14:00:00.000Z","end":"2026-02-20T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-fgri9ojez","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T14:20:00.000Z","end":"2026-02-20T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-e39tpfmm8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T14:40:00.000Z","end":"2026-02-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-hcw0b2ueq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T15:00:00.000Z","end":"2026-02-20T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-refph3o0c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T15:20:00.000Z","end":"2026-02-20T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-jiskbzzph","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T15:40:00.000Z","end":"2026-02-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-w0e70rzk1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-20T16:00:00.000Z","end":"2026-02-20T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-pzr1s0gvo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T16:20:00.000Z","end":"2026-02-20T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-0km1ejj90","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-20T16:40:00.000Z","end":"2026-02-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-70bxy83xg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-20T17:00:00.000Z","end":"2026-02-20T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085560-7h1l2ipmu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-20T17:20:00.000Z","end":"2026-02-20T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-4kzxes9gg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T17:40:00.000Z","end":"2026-02-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-ufgru1fdn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T18:00:00.000Z","end":"2026-02-20T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-cq4ks8n2s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-20T18:20:00.000Z","end":"2026-02-20T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-5df21wy55","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T18:40:00.000Z","end":"2026-02-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-f9l0r75fp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T19:00:00.000Z","end":"2026-02-20T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-45py4ah6d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T19:20:00.000Z","end":"2026-02-20T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-wuu3i5mha","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T19:40:00.000Z","end":"2026-02-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-n3h924urt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T20:00:00.000Z","end":"2026-02-20T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-uztqjr0ys","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T20:20:00.000Z","end":"2026-02-20T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-bn2m7bzzx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T20:40:00.000Z","end":"2026-02-20T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-vi76kt75h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T21:00:00.000Z","end":"2026-02-20T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-gq49hixvy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T21:20:00.000Z","end":"2026-02-20T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-9yqc4pjdp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-20T21:40:00.000Z","end":"2026-02-20T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-2dk8w7hma","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T13:00:00.000Z","end":"2026-02-23T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-mv3ur058s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T13:20:00.000Z","end":"2026-02-23T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-vk5e7ftcp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T13:40:00.000Z","end":"2026-02-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-mlunemq9c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T14:00:00.000Z","end":"2026-02-23T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-te7yqum4t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T14:20:00.000Z","end":"2026-02-23T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-4mt63eslb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T14:40:00.000Z","end":"2026-02-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-dr75rbjhh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T15:00:00.000Z","end":"2026-02-23T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-hzqjny4f6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T15:20:00.000Z","end":"2026-02-23T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-cnk5ylxf7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T15:40:00.000Z","end":"2026-02-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-wijus21ge","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T16:00:00.000Z","end":"2026-02-23T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-cwiq6iyck","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T16:20:00.000Z","end":"2026-02-23T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-vof8gn0gs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T16:40:00.000Z","end":"2026-02-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-nkw42lssu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T17:00:00.000Z","end":"2026-02-23T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-9dybss85h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T17:20:00.000Z","end":"2026-02-23T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-dc5wtdxz8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T17:40:00.000Z","end":"2026-02-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-e43fe2xmt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T18:00:00.000Z","end":"2026-02-23T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-0scah5vqf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T18:20:00.000Z","end":"2026-02-23T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-tu1i3kvjb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T18:40:00.000Z","end":"2026-02-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-dn21j307q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T19:00:00.000Z","end":"2026-02-23T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-94t4f4i1b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T19:20:00.000Z","end":"2026-02-23T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-moja95pd3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T19:40:00.000Z","end":"2026-02-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-ue4hk3bqe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T20:00:00.000Z","end":"2026-02-23T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-pg0awzdf2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T20:20:00.000Z","end":"2026-02-23T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085561-2yxhsqt7t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T20:40:00.000Z","end":"2026-02-23T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-csj7yzb0w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T21:00:00.000Z","end":"2026-02-23T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-1gcusb11w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-23T21:20:00.000Z","end":"2026-02-23T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-obo9ztu3b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-23T21:40:00.000Z","end":"2026-02-23T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-6xovardbt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T13:00:00.000Z","end":"2026-02-24T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-r934ydub1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T13:20:00.000Z","end":"2026-02-24T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-ym6te8oal","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T13:40:00.000Z","end":"2026-02-24T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-x22pcqeq1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T14:00:00.000Z","end":"2026-02-24T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-3tclpfs6p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T14:20:00.000Z","end":"2026-02-24T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-k8v8pft1k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T14:40:00.000Z","end":"2026-02-24T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-shf7k9i3z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T15:00:00.000Z","end":"2026-02-24T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-mnf2wdmhv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T15:20:00.000Z","end":"2026-02-24T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-85i3a9tzc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T15:40:00.000Z","end":"2026-02-24T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-kxw2zrn3k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T16:00:00.000Z","end":"2026-02-24T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-2x2lby658","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T16:20:00.000Z","end":"2026-02-24T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-7gythxz8q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T16:40:00.000Z","end":"2026-02-24T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-s31dud9vh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T17:00:00.000Z","end":"2026-02-24T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-dp9yco17d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T17:20:00.000Z","end":"2026-02-24T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-5shuh5osl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T17:40:00.000Z","end":"2026-02-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-5vf9bjagd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T18:00:00.000Z","end":"2026-02-24T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-r25ahlcot","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T18:20:00.000Z","end":"2026-02-24T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-vwdtfmq9o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T18:40:00.000Z","end":"2026-02-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-0y3e2bpf6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T19:00:00.000Z","end":"2026-02-24T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-5pvlwbex1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T19:20:00.000Z","end":"2026-02-24T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-vuyqb6rrc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T19:40:00.000Z","end":"2026-02-24T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-skji8zke8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T20:00:00.000Z","end":"2026-02-24T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-ksydppv6i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T20:20:00.000Z","end":"2026-02-24T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-wy01cmtwv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T20:40:00.000Z","end":"2026-02-24T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-c6bexqslz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-24T21:00:00.000Z","end":"2026-02-24T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-skfdkp13a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T21:20:00.000Z","end":"2026-02-24T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-6mfk9gn86","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-24T21:40:00.000Z","end":"2026-02-24T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-ugk1wz1xj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T13:00:00.000Z","end":"2026-02-25T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-xskpwq7mn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T13:20:00.000Z","end":"2026-02-25T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-g6rsq5bkq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T13:40:00.000Z","end":"2026-02-25T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-ja3fzjnbj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T14:00:00.000Z","end":"2026-02-25T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.562Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-rkrdlero4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T14:20:00.000Z","end":"2026-02-25T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085562-baj1228mv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T14:40:00.000Z","end":"2026-02-25T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-zszwuipo2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T15:00:00.000Z","end":"2026-02-25T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-4x0knppcv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T15:20:00.000Z","end":"2026-02-25T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-2mclh48bg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T15:40:00.000Z","end":"2026-02-25T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-bhf2kyq3e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T16:00:00.000Z","end":"2026-02-25T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-ms6x9vf80","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T16:20:00.000Z","end":"2026-02-25T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-rp7b2zrhf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T16:40:00.000Z","end":"2026-02-25T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-m1podzq3r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T17:00:00.000Z","end":"2026-02-25T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-aodh9lg4s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T17:20:00.000Z","end":"2026-02-25T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-vzafihv27","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T17:40:00.000Z","end":"2026-02-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-0yfd243hw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T18:00:00.000Z","end":"2026-02-25T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-bau915q75","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T18:20:00.000Z","end":"2026-02-25T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-l16jjo58p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T18:40:00.000Z","end":"2026-02-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-b5ehg6h2d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T19:00:00.000Z","end":"2026-02-25T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-cu25wobf5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T19:20:00.000Z","end":"2026-02-25T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-iw6lyhl54","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T19:40:00.000Z","end":"2026-02-25T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-1gopdq6t9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T20:00:00.000Z","end":"2026-02-25T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-c9jq6zw5b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T20:20:00.000Z","end":"2026-02-25T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085563-tftevgrq0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T20:40:00.000Z","end":"2026-02-25T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-s5gd214u1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T21:00:00.000Z","end":"2026-02-25T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-srf89vn0o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-25T21:20:00.000Z","end":"2026-02-25T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-4x7d20gc2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-25T21:40:00.000Z","end":"2026-02-25T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-35rt3l97n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T13:00:00.000Z","end":"2026-02-26T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-tbkf4reof","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T13:20:00.000Z","end":"2026-02-26T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-weg1uou0g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T13:40:00.000Z","end":"2026-02-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-tczh7ebzk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T14:00:00.000Z","end":"2026-02-26T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-zbju80wrn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T14:20:00.000Z","end":"2026-02-26T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-g1nzgm1me","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T14:40:00.000Z","end":"2026-02-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-4hwidjgaf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T15:00:00.000Z","end":"2026-02-26T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-o1ki6leyi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T15:20:00.000Z","end":"2026-02-26T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085564-6ckdf4ili","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T15:40:00.000Z","end":"2026-02-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-7h5t6i5zf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T16:00:00.000Z","end":"2026-02-26T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-orzbrkioq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T16:20:00.000Z","end":"2026-02-26T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-4u2z6xgef","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T16:40:00.000Z","end":"2026-02-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-e1lqfzhlf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T17:00:00.000Z","end":"2026-02-26T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-4mqrevb77","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T17:20:00.000Z","end":"2026-02-26T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-s8705u77p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T17:40:00.000Z","end":"2026-02-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-pnmoyxipn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T18:00:00.000Z","end":"2026-02-26T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-9co15w2jq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T18:20:00.000Z","end":"2026-02-26T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-tzvk421vi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T18:40:00.000Z","end":"2026-02-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-p5zoxxj0m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T19:00:00.000Z","end":"2026-02-26T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-hh0uvtgtu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T19:20:00.000Z","end":"2026-02-26T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-ydfqfxyt6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T19:40:00.000Z","end":"2026-02-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-h7pju49dn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T20:00:00.000Z","end":"2026-02-26T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-lneew1xbm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T20:20:00.000Z","end":"2026-02-26T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-da98mo333","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-26T20:40:00.000Z","end":"2026-02-26T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-7b109lc62","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T21:00:00.000Z","end":"2026-02-26T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-7cj1qmvvp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T21:20:00.000Z","end":"2026-02-26T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-vliwj72eb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-26T21:40:00.000Z","end":"2026-02-26T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-42tbk6m53","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T13:00:00.000Z","end":"2026-02-27T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-n5y9harfh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T13:20:00.000Z","end":"2026-02-27T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-qb4j8qxe3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T13:40:00.000Z","end":"2026-02-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-en7u54n9q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T14:00:00.000Z","end":"2026-02-27T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-ulsjqak8x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T14:20:00.000Z","end":"2026-02-27T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-wh0x9l54n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T14:40:00.000Z","end":"2026-02-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-9ynrrbkm2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T15:00:00.000Z","end":"2026-02-27T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-o13j5aer2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T15:20:00.000Z","end":"2026-02-27T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-a183qvz2j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T15:40:00.000Z","end":"2026-02-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-a8ou951ma","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T16:00:00.000Z","end":"2026-02-27T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-0jj3k33io","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T16:20:00.000Z","end":"2026-02-27T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-mgxx0ptix","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T16:40:00.000Z","end":"2026-02-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-tbhfovp0h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T17:00:00.000Z","end":"2026-02-27T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-swsvo6o4c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T17:20:00.000Z","end":"2026-02-27T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-h2zxmzz3c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T17:40:00.000Z","end":"2026-02-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085565-apx1wgv4z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T18:00:00.000Z","end":"2026-02-27T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-hsbm1b8a8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T18:20:00.000Z","end":"2026-02-27T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-ytsz9yz71","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T18:40:00.000Z","end":"2026-02-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-j2oqd03tv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T19:00:00.000Z","end":"2026-02-27T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-p1udsw8h1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T19:20:00.000Z","end":"2026-02-27T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-94dmahwl8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T19:40:00.000Z","end":"2026-02-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-12822bq1j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T20:00:00.000Z","end":"2026-02-27T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-co6ftyy1n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T20:20:00.000Z","end":"2026-02-27T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-l6xukiwez","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T20:40:00.000Z","end":"2026-02-27T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-2slgthibw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T21:00:00.000Z","end":"2026-02-27T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-jgy205sqg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-02-27T21:20:00.000Z","end":"2026-02-27T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-c3xjdj64b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-02-27T21:40:00.000Z","end":"2026-02-27T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-h5cyqpxeu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T13:00:00.000Z","end":"2026-03-02T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-q6ivty5zy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T13:20:00.000Z","end":"2026-03-02T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-i1mg8505z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T13:40:00.000Z","end":"2026-03-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.972Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-7hf0mk4gw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T14:00:00.000Z","end":"2026-03-02T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-dxoypgfiy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T14:20:00.000Z","end":"2026-03-02T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-g2k5q4vde","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T14:40:00.000Z","end":"2026-03-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085566-0vdxwbppz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T15:00:00.000Z","end":"2026-03-02T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-uahcwzera","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T15:20:00.000Z","end":"2026-03-02T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-nq2gb6vwj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T15:40:00.000Z","end":"2026-03-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-fi71jl7ai","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T16:00:00.000Z","end":"2026-03-02T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-7m12y1kxv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T16:20:00.000Z","end":"2026-03-02T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-ilvwypm9b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T16:40:00.000Z","end":"2026-03-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-4qjutcvmg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T17:00:00.000Z","end":"2026-03-02T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-nx0jkz5zk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T17:20:00.000Z","end":"2026-03-02T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-4o5kbv51z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T17:40:00.000Z","end":"2026-03-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-m3gwkso9g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T18:00:00.000Z","end":"2026-03-02T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-nuanm1tgn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T18:20:00.000Z","end":"2026-03-02T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-fugtx6k5k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T18:40:00.000Z","end":"2026-03-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-79n6u3dq2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T19:00:00.000Z","end":"2026-03-02T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-7s2woy0cd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T19:20:00.000Z","end":"2026-03-02T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-3zs6sh28o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T19:40:00.000Z","end":"2026-03-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-9m8jlb4k4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T20:00:00.000Z","end":"2026-03-02T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-94umwru2v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T20:20:00.000Z","end":"2026-03-02T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-b6qmv5jnm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T20:40:00.000Z","end":"2026-03-02T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-veb18ne69","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T21:00:00.000Z","end":"2026-03-02T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-zwzkvuzjp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-02T21:20:00.000Z","end":"2026-03-02T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-gd7dbmqfx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-02T21:40:00.000Z","end":"2026-03-02T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-av5niq8vf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T13:00:00.000Z","end":"2026-03-03T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085567-whfqrvxt4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T13:20:00.000Z","end":"2026-03-03T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-6vgxnm28e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T13:40:00.000Z","end":"2026-03-03T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-vxiyc4pcn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T14:00:00.000Z","end":"2026-03-03T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-vtqg6whzc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T14:20:00.000Z","end":"2026-03-03T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-m3rh4109a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T14:40:00.000Z","end":"2026-03-03T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-189nsvd4g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T15:00:00.000Z","end":"2026-03-03T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-gd9i4c11n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T15:20:00.000Z","end":"2026-03-03T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-b8q91l74s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T15:40:00.000Z","end":"2026-03-03T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-mrggjlk05","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T16:00:00.000Z","end":"2026-03-03T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-rkkew9s4r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T16:20:00.000Z","end":"2026-03-03T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-dcu9aym4s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T16:40:00.000Z","end":"2026-03-03T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-99j4wj63t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T17:00:00.000Z","end":"2026-03-03T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-vh1mye7xr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T17:20:00.000Z","end":"2026-03-03T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-tin9k92oi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T17:40:00.000Z","end":"2026-03-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-d5qucpbrv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T18:00:00.000Z","end":"2026-03-03T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-ww1tu8od7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T18:20:00.000Z","end":"2026-03-03T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-emcmy40e8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T18:40:00.000Z","end":"2026-03-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-cdca4yxpk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T19:00:00.000Z","end":"2026-03-03T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-l3gyvc8ve","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T19:20:00.000Z","end":"2026-03-03T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-3jl1go9nr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T19:40:00.000Z","end":"2026-03-03T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-i22dmr4va","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T20:00:00.000Z","end":"2026-03-03T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-id2dbj9sr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T20:20:00.000Z","end":"2026-03-03T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-2si84jn6d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T20:40:00.000Z","end":"2026-03-03T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-e861fvowo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T21:00:00.000Z","end":"2026-03-03T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-punhb7yzq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-03T21:20:00.000Z","end":"2026-03-03T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-e56itry5s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-03T21:40:00.000Z","end":"2026-03-03T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-ovp0xvg64","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T13:00:00.000Z","end":"2026-03-04T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-9f4e0s6rt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T13:20:00.000Z","end":"2026-03-04T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-qjtk7nfph","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T13:40:00.000Z","end":"2026-03-04T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-s5wzpo23g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T14:00:00.000Z","end":"2026-03-04T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-qxi741kvd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T14:20:00.000Z","end":"2026-03-04T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-xn07oivm4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T14:40:00.000Z","end":"2026-03-04T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-p95sq29nt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T15:00:00.000Z","end":"2026-03-04T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085568-nvtmtic0r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T15:20:00.000Z","end":"2026-03-04T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-b3c5l7pz8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T15:40:00.000Z","end":"2026-03-04T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-7qoxc2ho9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T16:00:00.000Z","end":"2026-03-04T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-i6v9u1hfy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T16:20:00.000Z","end":"2026-03-04T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-nhi7wwbc3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T16:40:00.000Z","end":"2026-03-04T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-ozso6cydj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T17:00:00.000Z","end":"2026-03-04T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-midfhkhm8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T17:20:00.000Z","end":"2026-03-04T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-d8l1hz08u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T17:40:00.000Z","end":"2026-03-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-qkbvqw4hl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T18:00:00.000Z","end":"2026-03-04T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-8lxp7ts5d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T18:20:00.000Z","end":"2026-03-04T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-fautscmws","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T18:40:00.000Z","end":"2026-03-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-kk9909tj7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T19:00:00.000Z","end":"2026-03-04T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-fjuonxp8x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T19:20:00.000Z","end":"2026-03-04T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-j9eonxrfq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T19:40:00.000Z","end":"2026-03-04T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-tirzc28vy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T20:00:00.000Z","end":"2026-03-04T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-njqgygxg0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T20:20:00.000Z","end":"2026-03-04T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-at2prnhpk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T20:40:00.000Z","end":"2026-03-04T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-a84ftnk3l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T21:00:00.000Z","end":"2026-03-04T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-2td9l3iim","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-04T21:20:00.000Z","end":"2026-03-04T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-fofwatskp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-04T21:40:00.000Z","end":"2026-03-04T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-m0r0keupl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T13:00:00.000Z","end":"2026-03-05T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-kh32htzlr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T13:20:00.000Z","end":"2026-03-05T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-4ift2rwct","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T13:40:00.000Z","end":"2026-03-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-aogwdvq1v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T14:00:00.000Z","end":"2026-03-05T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-dug6lsi27","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T14:20:00.000Z","end":"2026-03-05T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-5j0r4jgre","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T14:40:00.000Z","end":"2026-03-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-blc8oxggm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T15:00:00.000Z","end":"2026-03-05T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-cfcbu1v1h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T15:20:00.000Z","end":"2026-03-05T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-qjyzbatyf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T15:40:00.000Z","end":"2026-03-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-zhn96varf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T16:00:00.000Z","end":"2026-03-05T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-z1mlavani","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T16:20:00.000Z","end":"2026-03-05T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-dvop33yvu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T16:40:00.000Z","end":"2026-03-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-q1km3qa9k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T17:00:00.000Z","end":"2026-03-05T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-cwdzws0o3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T17:20:00.000Z","end":"2026-03-05T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-i37brc4u8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T17:40:00.000Z","end":"2026-03-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-g38mf8iek","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T18:00:00.000Z","end":"2026-03-05T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085569-cc2i1dkfd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T18:20:00.000Z","end":"2026-03-05T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-w3n86v41w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T18:40:00.000Z","end":"2026-03-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-i6rzcgjzc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T19:00:00.000Z","end":"2026-03-05T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-elocsqumh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T19:20:00.000Z","end":"2026-03-05T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-iwe4fa39c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T19:40:00.000Z","end":"2026-03-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-76v9k5nzl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T20:00:00.000Z","end":"2026-03-05T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-v59kv8tpk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T20:20:00.000Z","end":"2026-03-05T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-2zxfcwds3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T20:40:00.000Z","end":"2026-03-05T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-u5oj70x49","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T21:00:00.000Z","end":"2026-03-05T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-6i7axcozr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-05T21:20:00.000Z","end":"2026-03-05T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-rjxh6fu4b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-05T21:40:00.000Z","end":"2026-03-05T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-69nism8r6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T13:00:00.000Z","end":"2026-03-06T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-h0xyvhf60","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T13:20:00.000Z","end":"2026-03-06T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-x02hs80k1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T13:40:00.000Z","end":"2026-03-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-3iy2gwdny","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T14:00:00.000Z","end":"2026-03-06T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-36a2fam9j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T14:20:00.000Z","end":"2026-03-06T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-qvp5umyvq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T14:40:00.000Z","end":"2026-03-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-adoslucgy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T15:00:00.000Z","end":"2026-03-06T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-j3310oh7d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-06T15:20:00.000Z","end":"2026-03-06T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-40sutpnzh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-06T15:40:00.000Z","end":"2026-03-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085570-gwwr8l5wr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-06T16:00:00.000Z","end":"2026-03-06T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-wi04bvqdq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T16:20:00.000Z","end":"2026-03-06T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-ap4fb5zu4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T16:40:00.000Z","end":"2026-03-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-uvhlze8d3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T17:00:00.000Z","end":"2026-03-06T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-a4n26hhje","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-06T17:20:00.000Z","end":"2026-03-06T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.571Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-6m5igncrw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T17:40:00.000Z","end":"2026-03-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-oo8bwqzhd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T18:00:00.000Z","end":"2026-03-06T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-9ck0wlenz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T18:20:00.000Z","end":"2026-03-06T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-htaxbrmgg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T18:40:00.000Z","end":"2026-03-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085571-67s3x492s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T19:00:00.000Z","end":"2026-03-06T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-znl2e1158","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-06T19:20:00.000Z","end":"2026-03-06T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-5rg40ym6r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T19:40:00.000Z","end":"2026-03-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-5rtikn8cs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-06T20:00:00.000Z","end":"2026-03-06T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-y5wayrlps","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T20:20:00.000Z","end":"2026-03-06T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-zk561wdpk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T20:40:00.000Z","end":"2026-03-06T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-typgcj11e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-06T21:00:00.000Z","end":"2026-03-06T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-ng3srjjs7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T21:20:00.000Z","end":"2026-03-06T21:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-ug9cd85sw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-06T21:40:00.000Z","end":"2026-03-06T22:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-rfuqpzku6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T12:00:00.000Z","end":"2026-03-09T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-y0hvgpsd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-09T12:20:00.000Z","end":"2026-03-09T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-ynvkt7bca","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T12:40:00.000Z","end":"2026-03-09T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-hr3v3gvbe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T13:00:00.000Z","end":"2026-03-09T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-1at24c98f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T13:20:00.000Z","end":"2026-03-09T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-n5t7rrr79","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T13:40:00.000Z","end":"2026-03-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-wcw1t8o46","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T14:00:00.000Z","end":"2026-03-09T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-usu5505tx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T14:20:00.000Z","end":"2026-03-09T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-uddgzzkca","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T14:40:00.000Z","end":"2026-03-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-86zx8ze8n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T15:00:00.000Z","end":"2026-03-09T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-l0dm43jz9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T15:20:00.000Z","end":"2026-03-09T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-8y06ea9ru","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T15:40:00.000Z","end":"2026-03-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-7ubee5gou","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-09T16:00:00.000Z","end":"2026-03-09T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-dzfwdms92","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-09T16:20:00.000Z","end":"2026-03-09T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-7h4xojcpe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T16:40:00.000Z","end":"2026-03-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-mwc1qstmu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-09T17:00:00.000Z","end":"2026-03-09T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-zvksqrazj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-09T17:20:00.000Z","end":"2026-03-09T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085572-u9m2i2hfv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T17:40:00.000Z","end":"2026-03-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-ekp6fhp9d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T18:00:00.000Z","end":"2026-03-09T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-jgox2frt8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T18:20:00.000Z","end":"2026-03-09T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-pxog92zs7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T18:40:00.000Z","end":"2026-03-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-f0acmfbxc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T19:00:00.000Z","end":"2026-03-09T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-o6flfjeab","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-09T19:20:00.000Z","end":"2026-03-09T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-7oc14ad0f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T19:40:00.000Z","end":"2026-03-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-ikz7hf7d8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T20:00:00.000Z","end":"2026-03-09T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-6ilhn0wtb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T20:20:00.000Z","end":"2026-03-09T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-mreiyd0ph","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-09T20:40:00.000Z","end":"2026-03-09T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-ejhye7uxl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T12:00:00.000Z","end":"2026-03-10T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-g5bm2rdh7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T12:20:00.000Z","end":"2026-03-10T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-2a4z9nmt0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T12:40:00.000Z","end":"2026-03-10T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-idzsmpt7x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T13:00:00.000Z","end":"2026-03-10T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085573-b1zapm6zz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T13:20:00.000Z","end":"2026-03-10T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-i2kx16jtl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T13:40:00.000Z","end":"2026-03-10T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-odedzwxa0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T14:00:00.000Z","end":"2026-03-10T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-wftsellen","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T14:20:00.000Z","end":"2026-03-10T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-fjgilti90","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T14:40:00.000Z","end":"2026-03-10T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-8g5yy5h29","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T15:00:00.000Z","end":"2026-03-10T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-x8nlj8qsa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T15:20:00.000Z","end":"2026-03-10T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-8x0xftdoo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T15:40:00.000Z","end":"2026-03-10T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-ntkynbuu5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T16:00:00.000Z","end":"2026-03-10T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-cir28kvue","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T16:20:00.000Z","end":"2026-03-10T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-00cgw6uzn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T16:40:00.000Z","end":"2026-03-10T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-upqklakh9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T17:00:00.000Z","end":"2026-03-10T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-kbenkqwp9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T17:20:00.000Z","end":"2026-03-10T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-70153jvro","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T17:40:00.000Z","end":"2026-03-10T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-vkcyp8sat","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T18:00:00.000Z","end":"2026-03-10T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-bnjlyo5ax","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T18:20:00.000Z","end":"2026-03-10T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-a6nor0e7w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T18:40:00.000Z","end":"2026-03-10T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-el3sgivej","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T19:00:00.000Z","end":"2026-03-10T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-fhbr4097y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T19:20:00.000Z","end":"2026-03-10T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-8pqafgf07","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T19:40:00.000Z","end":"2026-03-10T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-0albjoy2h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T20:00:00.000Z","end":"2026-03-10T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-l8ychj9zn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-10T20:20:00.000Z","end":"2026-03-10T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-0dbqlihos","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-10T20:40:00.000Z","end":"2026-03-10T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-9nqag7y3g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T12:00:00.000Z","end":"2026-03-11T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-iqd6aiyib","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T12:20:00.000Z","end":"2026-03-11T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-hh49cjlo1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T12:40:00.000Z","end":"2026-03-11T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-b5lsdokhz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T13:00:00.000Z","end":"2026-03-11T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-g4favi62e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T13:20:00.000Z","end":"2026-03-11T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-ysluq9jex","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T13:40:00.000Z","end":"2026-03-11T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-79ehfwhy5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T14:00:00.000Z","end":"2026-03-11T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-teegpo2zw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T14:20:00.000Z","end":"2026-03-11T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-4phbosapw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T14:40:00.000Z","end":"2026-03-11T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-ggxe7bm6m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T15:00:00.000Z","end":"2026-03-11T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-hu8zfef10","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T15:20:00.000Z","end":"2026-03-11T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-6m5cc4scn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T15:40:00.000Z","end":"2026-03-11T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-3wawqqzry","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T16:00:00.000Z","end":"2026-03-11T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-t3skzhhtg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T16:20:00.000Z","end":"2026-03-11T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085574-vuh9hgcsg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T16:40:00.000Z","end":"2026-03-11T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-3nmz286i5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T17:00:00.000Z","end":"2026-03-11T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-jb9k6efvc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T17:20:00.000Z","end":"2026-03-11T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-lsdbxze45","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T17:40:00.000Z","end":"2026-03-11T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-hjsg6xy0d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T18:00:00.000Z","end":"2026-03-11T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-w1g1tunqi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T18:20:00.000Z","end":"2026-03-11T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-ahh9c7n3c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T18:40:00.000Z","end":"2026-03-11T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-w6afd5lex","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T19:00:00.000Z","end":"2026-03-11T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-l700jktos","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T19:20:00.000Z","end":"2026-03-11T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-hl49uy5cq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T19:40:00.000Z","end":"2026-03-11T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-o3o0qsw4z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-11T20:00:00.000Z","end":"2026-03-11T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-qvdrj6ccd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T20:20:00.000Z","end":"2026-03-11T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-vrwg3dqaj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-11T20:40:00.000Z","end":"2026-03-11T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-0258xt7fy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T12:00:00.000Z","end":"2026-03-12T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-cq67vbveh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T12:20:00.000Z","end":"2026-03-12T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-3xxsj4f7p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T12:40:00.000Z","end":"2026-03-12T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-6vct9cg50","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T13:00:00.000Z","end":"2026-03-12T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-y26awq55s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T13:20:00.000Z","end":"2026-03-12T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-jy1c1c1li","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T13:40:00.000Z","end":"2026-03-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-i5uykbykj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T14:00:00.000Z","end":"2026-03-12T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-rht8ljvpa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T14:20:00.000Z","end":"2026-03-12T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-71mb7lsnc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T14:40:00.000Z","end":"2026-03-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-hmibl8a5s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T15:00:00.000Z","end":"2026-03-12T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-e8b0vvyqv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T15:20:00.000Z","end":"2026-03-12T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-1ez3ixmh3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T15:40:00.000Z","end":"2026-03-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-h1naehh3h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T16:00:00.000Z","end":"2026-03-12T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-71022l4tn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T16:20:00.000Z","end":"2026-03-12T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-5opiwk81u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T16:40:00.000Z","end":"2026-03-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-6gekcq0f9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T17:00:00.000Z","end":"2026-03-12T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-0mkcsapf4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T17:20:00.000Z","end":"2026-03-12T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-t891vvwum","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T17:40:00.000Z","end":"2026-03-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-dosmnznvo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T18:00:00.000Z","end":"2026-03-12T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-a8c36q3mr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T18:20:00.000Z","end":"2026-03-12T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-rgthkgmmv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T18:40:00.000Z","end":"2026-03-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-mstrghzo6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T19:00:00.000Z","end":"2026-03-12T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085575-x9i6xsand","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T19:20:00.000Z","end":"2026-03-12T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.575Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-5bumbf4re","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T19:40:00.000Z","end":"2026-03-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-rtjh6vfxt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T20:00:00.000Z","end":"2026-03-12T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-r7xmmggf1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-12T20:20:00.000Z","end":"2026-03-12T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-nk4ugxoag","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-12T20:40:00.000Z","end":"2026-03-12T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-ngnasmutj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T12:00:00.000Z","end":"2026-03-13T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-497frqvdo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T12:20:00.000Z","end":"2026-03-13T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-heo1kjsiu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T12:40:00.000Z","end":"2026-03-13T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-rq1pllj8x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T13:00:00.000Z","end":"2026-03-13T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-ysuerxywc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T13:20:00.000Z","end":"2026-03-13T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-db6fiicsv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T13:40:00.000Z","end":"2026-03-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-uer4irih4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T14:00:00.000Z","end":"2026-03-13T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-5vqpg224e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T14:20:00.000Z","end":"2026-03-13T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-515pd9rg9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T14:40:00.000Z","end":"2026-03-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-oh9dw3zky","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T15:00:00.000Z","end":"2026-03-13T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-xhuihzo6o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T15:20:00.000Z","end":"2026-03-13T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-y1npbhda1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T15:40:00.000Z","end":"2026-03-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-03ctj0aln","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T16:00:00.000Z","end":"2026-03-13T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-p4med13in","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T16:20:00.000Z","end":"2026-03-13T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-amp673mzz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T16:40:00.000Z","end":"2026-03-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-h1jc4hna6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T17:00:00.000Z","end":"2026-03-13T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-271w78v1l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T17:20:00.000Z","end":"2026-03-13T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-e7revdpne","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T17:40:00.000Z","end":"2026-03-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-gq8nxn7hs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T18:00:00.000Z","end":"2026-03-13T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-zkgmvhfsg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T18:20:00.000Z","end":"2026-03-13T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-ob65hq84p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-13T18:40:00.000Z","end":"2026-03-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-7dbsijq73","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T19:00:00.000Z","end":"2026-03-13T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-jwv19ve3u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T19:20:00.000Z","end":"2026-03-13T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-15549zt7h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T19:40:00.000Z","end":"2026-03-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-ubi9y9pc1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T20:00:00.000Z","end":"2026-03-13T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-0i3v1fr0r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T20:20:00.000Z","end":"2026-03-13T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-a1pmn16ap","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-13T20:40:00.000Z","end":"2026-03-13T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-89i4yuzcz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T12:00:00.000Z","end":"2026-03-16T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-cucc1sgjj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T12:20:00.000Z","end":"2026-03-16T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-9hbzrhqmg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T12:40:00.000Z","end":"2026-03-16T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-9q3aesxza","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T13:00:00.000Z","end":"2026-03-16T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085576-xfcp5qd4e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T13:20:00.000Z","end":"2026-03-16T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-qp0aqzmnj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T13:40:00.000Z","end":"2026-03-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-s3kwz3url","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T14:00:00.000Z","end":"2026-03-16T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-7k2h5i8fi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T14:20:00.000Z","end":"2026-03-16T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-rfq40w580","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T14:40:00.000Z","end":"2026-03-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-qf4v40fvg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T15:00:00.000Z","end":"2026-03-16T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-rhnv3265e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T15:20:00.000Z","end":"2026-03-16T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-vl7975jez","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T15:40:00.000Z","end":"2026-03-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-1mm9bcw6o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T16:00:00.000Z","end":"2026-03-16T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-8021mjp31","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T16:20:00.000Z","end":"2026-03-16T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.101Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-fdf9111ma","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T16:40:00.000Z","end":"2026-03-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-j05g0a47w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T17:00:00.000Z","end":"2026-03-16T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-kvuaabuno","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T17:20:00.000Z","end":"2026-03-16T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-a2fcu24v6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T17:40:00.000Z","end":"2026-03-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-x2as4zamk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T18:00:00.000Z","end":"2026-03-16T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-sj428n29u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T18:20:00.000Z","end":"2026-03-16T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085577-xx3c2hars","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T18:40:00.000Z","end":"2026-03-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-k6i7p11jk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T19:00:00.000Z","end":"2026-03-16T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-pq1vzruam","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T19:20:00.000Z","end":"2026-03-16T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-x4m81pgof","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-16T19:40:00.000Z","end":"2026-03-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-xze6ek8z4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T20:00:00.000Z","end":"2026-03-16T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-gc6gn7ijd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T20:20:00.000Z","end":"2026-03-16T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.112Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-76kqidnp3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-16T20:40:00.000Z","end":"2026-03-16T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-x2ckp9lfv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T12:00:00.000Z","end":"2026-03-17T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-tbo9bckfp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T12:20:00.000Z","end":"2026-03-17T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-gxc54zt22","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T12:40:00.000Z","end":"2026-03-17T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-xa1l2grhc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T13:00:00.000Z","end":"2026-03-17T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-m42pnj1dn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T13:20:00.000Z","end":"2026-03-17T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-ij3tbex7a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T13:40:00.000Z","end":"2026-03-17T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-l1gdi2u52","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T14:00:00.000Z","end":"2026-03-17T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085578-vic1hbsip","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T14:20:00.000Z","end":"2026-03-17T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-kxsa07hgz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T14:40:00.000Z","end":"2026-03-17T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-25vapxol6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T15:00:00.000Z","end":"2026-03-17T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-r4atk2qi5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T15:20:00.000Z","end":"2026-03-17T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-b0dti978v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T15:40:00.000Z","end":"2026-03-17T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-tj3lu6eh6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T16:00:00.000Z","end":"2026-03-17T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-4ru1q2mpe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T16:20:00.000Z","end":"2026-03-17T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-0e9yghvg0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T16:40:00.000Z","end":"2026-03-17T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-vmo0z47f7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T17:00:00.000Z","end":"2026-03-17T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-tfbvoy3rx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T17:20:00.000Z","end":"2026-03-17T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-iwpa58j7w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T17:40:00.000Z","end":"2026-03-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-42pmwulsj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T18:00:00.000Z","end":"2026-03-17T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-845kktnsa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T18:20:00.000Z","end":"2026-03-17T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-0t6joj259","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T18:40:00.000Z","end":"2026-03-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-s35qfqai1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T19:00:00.000Z","end":"2026-03-17T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-al8ad1fnd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T19:20:00.000Z","end":"2026-03-17T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-j9sh4zq47","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T19:40:00.000Z","end":"2026-03-17T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-m5ahhx0e3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-17T20:00:00.000Z","end":"2026-03-17T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-x8swsm4kd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T20:20:00.000Z","end":"2026-03-17T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-fn516ikbr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-17T20:40:00.000Z","end":"2026-03-17T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-g3p65gmbw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T12:00:00.000Z","end":"2026-03-18T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-iv2ic4t5g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T12:20:00.000Z","end":"2026-03-18T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-uuohclgos","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T12:40:00.000Z","end":"2026-03-18T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-dd7rep4wh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T13:00:00.000Z","end":"2026-03-18T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-1k1hfg6ac","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T13:20:00.000Z","end":"2026-03-18T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-a8wso4j57","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T13:40:00.000Z","end":"2026-03-18T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-nt38m6b2t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T14:00:00.000Z","end":"2026-03-18T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-bfxcnuul4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T14:20:00.000Z","end":"2026-03-18T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-5hocbmuuh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T14:40:00.000Z","end":"2026-03-18T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-rn2th287n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T15:00:00.000Z","end":"2026-03-18T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-il2i2u8bg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T15:20:00.000Z","end":"2026-03-18T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-0xpyquvpe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T15:40:00.000Z","end":"2026-03-18T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-fmia7wbjl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T16:00:00.000Z","end":"2026-03-18T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-uhpphy0th","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T16:20:00.000Z","end":"2026-03-18T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-vsljk4lk4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T16:40:00.000Z","end":"2026-03-18T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-y2ydfj45g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T17:00:00.000Z","end":"2026-03-18T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-xcekgoq7k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T17:20:00.000Z","end":"2026-03-18T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085579-3mlupteis","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T17:40:00.000Z","end":"2026-03-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.975Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-vx31gsuwy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T18:00:00.000Z","end":"2026-03-18T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-6ig9vinlk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T18:20:00.000Z","end":"2026-03-18T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-2i21801lf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T18:40:00.000Z","end":"2026-03-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-ri16r833y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T19:00:00.000Z","end":"2026-03-18T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-kyh8aqwk4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T19:20:00.000Z","end":"2026-03-18T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-r9aswuhui","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T19:40:00.000Z","end":"2026-03-18T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-l7rerh7x0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T20:00:00.000Z","end":"2026-03-18T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-tb20wtajf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-18T20:20:00.000Z","end":"2026-03-18T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-98u2x58qi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-18T20:40:00.000Z","end":"2026-03-18T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-uxqiu6sgn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T12:00:00.000Z","end":"2026-03-19T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-v7pr0t9he","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T12:20:00.000Z","end":"2026-03-19T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-fnilzoc8b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T12:40:00.000Z","end":"2026-03-19T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-xl23l4v4c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T13:00:00.000Z","end":"2026-03-19T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-phfo2ymxi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T13:20:00.000Z","end":"2026-03-19T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-8zl92usea","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T13:40:00.000Z","end":"2026-03-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-kx6s6hs6t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T14:00:00.000Z","end":"2026-03-19T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-gmmqly0x0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T14:20:00.000Z","end":"2026-03-19T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-bvwrtxd8d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T14:40:00.000Z","end":"2026-03-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-t077blebb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T15:00:00.000Z","end":"2026-03-19T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-3y9rgtibf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T15:20:00.000Z","end":"2026-03-19T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-6sf41vej9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T15:40:00.000Z","end":"2026-03-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-wfpxuk4je","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T16:00:00.000Z","end":"2026-03-19T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-rs08jwy25","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T16:20:00.000Z","end":"2026-03-19T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-kpqper5t8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T16:40:00.000Z","end":"2026-03-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-tyypnlt0z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T17:00:00.000Z","end":"2026-03-19T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-6wb392vgo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T17:20:00.000Z","end":"2026-03-19T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-kjdl279yu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T17:40:00.000Z","end":"2026-03-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-ux7ypz48f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T18:00:00.000Z","end":"2026-03-19T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-ujunli0xq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T18:20:00.000Z","end":"2026-03-19T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-driuec5c4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T18:40:00.000Z","end":"2026-03-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-4edr8qq18","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T19:00:00.000Z","end":"2026-03-19T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-tz0354oeh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T19:20:00.000Z","end":"2026-03-19T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-srp8x3obv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T19:40:00.000Z","end":"2026-03-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-5qhkgulxm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T20:00:00.000Z","end":"2026-03-19T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085580-febiz0mhz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-19T20:20:00.000Z","end":"2026-03-19T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-4lxemcm8z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-19T20:40:00.000Z","end":"2026-03-19T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-93ys7hlhi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T12:00:00.000Z","end":"2026-03-20T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-tkhvqspaf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T12:20:00.000Z","end":"2026-03-20T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-m1201jnfo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T12:40:00.000Z","end":"2026-03-20T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-umkg68c17","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T13:00:00.000Z","end":"2026-03-20T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-k9bf13dgi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T13:20:00.000Z","end":"2026-03-20T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-rvez181sz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T13:40:00.000Z","end":"2026-03-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-tx5f04rd8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T14:00:00.000Z","end":"2026-03-20T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-giefj7i7l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T14:20:00.000Z","end":"2026-03-20T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-71lqey13z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T14:40:00.000Z","end":"2026-03-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-ehnmqu1kl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T15:00:00.000Z","end":"2026-03-20T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-fark44row","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T15:20:00.000Z","end":"2026-03-20T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-so99mompv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T15:40:00.000Z","end":"2026-03-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-ypd33dxm2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T16:00:00.000Z","end":"2026-03-20T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-i371manfw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T16:20:00.000Z","end":"2026-03-20T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-3q238o7go","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T16:40:00.000Z","end":"2026-03-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-3kvvaqdc6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T17:00:00.000Z","end":"2026-03-20T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-bm3smbx2h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T17:20:00.000Z","end":"2026-03-20T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-qvhc6q0v0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T17:40:00.000Z","end":"2026-03-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-v2r9cvqhq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T18:00:00.000Z","end":"2026-03-20T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-utn6xy0cl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T18:20:00.000Z","end":"2026-03-20T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-f5opxheyf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T18:40:00.000Z","end":"2026-03-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-mvllw6u11","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T19:00:00.000Z","end":"2026-03-20T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-4eiyw2adi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T19:20:00.000Z","end":"2026-03-20T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-ymm3vc1pm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T19:40:00.000Z","end":"2026-03-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-jhgctam5k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T20:00:00.000Z","end":"2026-03-20T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-a9w3x8quu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-20T20:20:00.000Z","end":"2026-03-20T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-9h4gxjfz5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-20T20:40:00.000Z","end":"2026-03-20T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-ltv3160zl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T12:00:00.000Z","end":"2026-03-23T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-6fr5cq40a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T12:20:00.000Z","end":"2026-03-23T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-ag4whophi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T12:40:00.000Z","end":"2026-03-23T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085581-n05z61ptt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T13:00:00.000Z","end":"2026-03-23T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-bb0f32x43","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T13:20:00.000Z","end":"2026-03-23T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-tfzs90h7x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T13:40:00.000Z","end":"2026-03-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-dfwqx27lx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T14:00:00.000Z","end":"2026-03-23T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-li087cqws","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T14:20:00.000Z","end":"2026-03-23T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-8f45o476q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T14:40:00.000Z","end":"2026-03-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-1sz1wt30m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T15:00:00.000Z","end":"2026-03-23T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-l2xz3hjpt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T15:20:00.000Z","end":"2026-03-23T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-fw9zhu711","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T15:40:00.000Z","end":"2026-03-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-zazhv07yd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T16:00:00.000Z","end":"2026-03-23T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-sxkfqtoci","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T16:20:00.000Z","end":"2026-03-23T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-j5beqqzh3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T16:40:00.000Z","end":"2026-03-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-0j7142tvy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T17:00:00.000Z","end":"2026-03-23T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-ol28qzoqd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T17:20:00.000Z","end":"2026-03-23T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-oihdyb3g7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T17:40:00.000Z","end":"2026-03-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-s0qdul2z1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T18:00:00.000Z","end":"2026-03-23T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-3f6fqq84w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T18:20:00.000Z","end":"2026-03-23T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-xqrtb0bul","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T18:40:00.000Z","end":"2026-03-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.138Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-zf4hamkns","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T19:00:00.000Z","end":"2026-03-23T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-kgbs7qcqr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-23T19:20:00.000Z","end":"2026-03-23T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-tn30qb6zv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T19:40:00.000Z","end":"2026-03-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-s9u0wl8m9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T20:00:00.000Z","end":"2026-03-23T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-4gy7o2vjs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T20:20:00.000Z","end":"2026-03-23T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-kwce6aklt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-23T20:40:00.000Z","end":"2026-03-23T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-huccq191o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T12:00:00.000Z","end":"2026-03-24T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-1g1juj2ci","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T12:20:00.000Z","end":"2026-03-24T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-xv0c5wnsb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T12:40:00.000Z","end":"2026-03-24T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-wvy4mio8u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T13:00:00.000Z","end":"2026-03-24T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-2ft5cz3cm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T13:20:00.000Z","end":"2026-03-24T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-hvdcqmd8k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T13:40:00.000Z","end":"2026-03-24T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-dvksgfvzg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T14:00:00.000Z","end":"2026-03-24T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-ako7b21de","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T14:20:00.000Z","end":"2026-03-24T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085582-91va7q3k2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T14:40:00.000Z","end":"2026-03-24T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-1pyidemgw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T15:00:00.000Z","end":"2026-03-24T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-kohf09xn5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T15:20:00.000Z","end":"2026-03-24T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-spowub35k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T15:40:00.000Z","end":"2026-03-24T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-qxsq5n5qv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T16:00:00.000Z","end":"2026-03-24T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-epevvof9n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T16:20:00.000Z","end":"2026-03-24T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-u38x7sjmh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T16:40:00.000Z","end":"2026-03-24T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-toei78o7z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T17:00:00.000Z","end":"2026-03-24T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-1nah2smdp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T17:20:00.000Z","end":"2026-03-24T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-qccgpanye","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T17:40:00.000Z","end":"2026-03-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-8p5p295kc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T18:00:00.000Z","end":"2026-03-24T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-w1mvs4f4r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T18:20:00.000Z","end":"2026-03-24T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-2zytksqqh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T18:40:00.000Z","end":"2026-03-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-nsnph5v18","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T19:00:00.000Z","end":"2026-03-24T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-87snh7gak","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T19:20:00.000Z","end":"2026-03-24T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-pfwj174f8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T19:40:00.000Z","end":"2026-03-24T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-5udy9cvxf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-24T20:00:00.000Z","end":"2026-03-24T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-bzvcfmj8i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T20:20:00.000Z","end":"2026-03-24T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-bzxp076bc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-24T20:40:00.000Z","end":"2026-03-24T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-15couowxy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T12:00:00.000Z","end":"2026-03-25T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-r0mgu2grt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T12:20:00.000Z","end":"2026-03-25T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-nl6lrgh58","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T12:40:00.000Z","end":"2026-03-25T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-0io25zf9t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T13:00:00.000Z","end":"2026-03-25T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-awhbhe885","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T13:20:00.000Z","end":"2026-03-25T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085583-pn8b3uc3l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T13:40:00.000Z","end":"2026-03-25T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085584-3qlvxpgun","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T14:00:00.000Z","end":"2026-03-25T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085584-6yd8hqmgp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T14:20:00.000Z","end":"2026-03-25T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085584-jxehrzx3z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T14:40:00.000Z","end":"2026-03-25T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085584-04ou02wwk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T15:00:00.000Z","end":"2026-03-25T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085584-503t7abyt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T15:20:00.000Z","end":"2026-03-25T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085584-tu4z3algl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T15:40:00.000Z","end":"2026-03-25T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-ui9tbrtwp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T16:00:00.000Z","end":"2026-03-25T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-m4alu8boa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T16:20:00.000Z","end":"2026-03-25T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.112Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-f2aoiywhu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T16:40:00.000Z","end":"2026-03-25T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-jtf3pz0zk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T17:00:00.000Z","end":"2026-03-25T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-9zq0jj662","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T17:20:00.000Z","end":"2026-03-25T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-c3x0bcxy5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T17:40:00.000Z","end":"2026-03-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-4habkhbqs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T18:00:00.000Z","end":"2026-03-25T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-q8e01339z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T18:20:00.000Z","end":"2026-03-25T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-yzwu4eo6b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T18:40:00.000Z","end":"2026-03-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-ec42nc3rv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T19:00:00.000Z","end":"2026-03-25T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-3i7gl2fnf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T19:20:00.000Z","end":"2026-03-25T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-4r87d03qp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T19:40:00.000Z","end":"2026-03-25T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-0n3m7qdtb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T20:00:00.000Z","end":"2026-03-25T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-2ssu6pp8x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-25T20:20:00.000Z","end":"2026-03-25T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-eect6m94z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-25T20:40:00.000Z","end":"2026-03-25T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-cilr3g6u7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T12:00:00.000Z","end":"2026-03-26T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-3k60kpo0j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T12:20:00.000Z","end":"2026-03-26T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-vpdpwxxla","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T12:40:00.000Z","end":"2026-03-26T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-0e4rgbvyt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T13:00:00.000Z","end":"2026-03-26T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-nf37mdhhv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T13:20:00.000Z","end":"2026-03-26T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-gumg31091","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T13:40:00.000Z","end":"2026-03-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-w04kqin22","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T14:00:00.000Z","end":"2026-03-26T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-pj8c3cwqf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T14:20:00.000Z","end":"2026-03-26T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-8i586mwbr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T14:40:00.000Z","end":"2026-03-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-ttl86461a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T15:00:00.000Z","end":"2026-03-26T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-bu3il3nbs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T15:20:00.000Z","end":"2026-03-26T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-5dxoesr68","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T15:40:00.000Z","end":"2026-03-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-c85alquob","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T16:00:00.000Z","end":"2026-03-26T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-rnfyt46q6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T16:20:00.000Z","end":"2026-03-26T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-wvy1i4g8w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T16:40:00.000Z","end":"2026-03-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-zl3edhxjw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T17:00:00.000Z","end":"2026-03-26T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-m4bai2b4e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T17:20:00.000Z","end":"2026-03-26T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-7v7uuu9di","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T17:40:00.000Z","end":"2026-03-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-94y2m2ydx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T18:00:00.000Z","end":"2026-03-26T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-aicfhi6yt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T18:20:00.000Z","end":"2026-03-26T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085585-cyuovncw6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T18:40:00.000Z","end":"2026-03-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-4zyzier5n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T19:00:00.000Z","end":"2026-03-26T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-oawjfqdjy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T19:20:00.000Z","end":"2026-03-26T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-s9sakxpc9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T19:40:00.000Z","end":"2026-03-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-zy9ekuhfc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-26T20:00:00.000Z","end":"2026-03-26T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-obpekbiwq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T20:20:00.000Z","end":"2026-03-26T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-ubui365wy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-26T20:40:00.000Z","end":"2026-03-26T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-posnrf3v7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T12:00:00.000Z","end":"2026-03-27T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-4lxp7dkte","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T12:20:00.000Z","end":"2026-03-27T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-uxrdo8xp5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T12:40:00.000Z","end":"2026-03-27T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-5d19qi39y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T13:00:00.000Z","end":"2026-03-27T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-gk96h3yr6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T13:20:00.000Z","end":"2026-03-27T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-s21pbwp9x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T13:40:00.000Z","end":"2026-03-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-ikmh6ttwx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T14:00:00.000Z","end":"2026-03-27T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-vcgh7zcz2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T14:20:00.000Z","end":"2026-03-27T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-ii3409g48","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T14:40:00.000Z","end":"2026-03-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-gz5ayleoy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T15:00:00.000Z","end":"2026-03-27T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-gxeraljdx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T15:20:00.000Z","end":"2026-03-27T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-phcggawxi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T15:40:00.000Z","end":"2026-03-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-c2cs10jgx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T16:00:00.000Z","end":"2026-03-27T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-zbfq47q25","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T16:20:00.000Z","end":"2026-03-27T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-oyoz9r3vf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T16:40:00.000Z","end":"2026-03-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-eame2oa1l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T17:00:00.000Z","end":"2026-03-27T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-zkifzr412","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T17:20:00.000Z","end":"2026-03-27T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-34zp9wc14","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T17:40:00.000Z","end":"2026-03-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-h59gl2zgf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T18:00:00.000Z","end":"2026-03-27T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-58mushtux","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T18:20:00.000Z","end":"2026-03-27T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-uho678jlv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T18:40:00.000Z","end":"2026-03-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-zfkl57fli","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T19:00:00.000Z","end":"2026-03-27T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-pcovt045u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-27T19:20:00.000Z","end":"2026-03-27T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-avusu34lj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T19:40:00.000Z","end":"2026-03-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-kdwz2gqhr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T20:00:00.000Z","end":"2026-03-27T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-40mz67rnn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T20:20:00.000Z","end":"2026-03-27T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-2l0h30cwz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-27T20:40:00.000Z","end":"2026-03-27T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-2zf8g16p5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T12:00:00.000Z","end":"2026-03-30T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085586-jqykjf5el","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T12:20:00.000Z","end":"2026-03-30T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.586Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-3sjrat247","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T12:40:00.000Z","end":"2026-03-30T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-vynxg8y3w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T13:00:00.000Z","end":"2026-03-30T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-gye9xnkn3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T13:20:00.000Z","end":"2026-03-30T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-nw8t2zx60","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T13:40:00.000Z","end":"2026-03-30T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-708g2nyd6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T14:00:00.000Z","end":"2026-03-30T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-7mt289y24","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T14:20:00.000Z","end":"2026-03-30T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-qlgk3bl3u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T14:40:00.000Z","end":"2026-03-30T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-psfwdjv32","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T15:00:00.000Z","end":"2026-03-30T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-7iozbw7h7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T15:20:00.000Z","end":"2026-03-30T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-obapvu0ks","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T15:40:00.000Z","end":"2026-03-30T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-5fr4hk5y3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T16:00:00.000Z","end":"2026-03-30T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-8cj3fk4h1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T16:20:00.000Z","end":"2026-03-30T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-83lsoco32","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T16:40:00.000Z","end":"2026-03-30T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-42a5nc6rk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T17:00:00.000Z","end":"2026-03-30T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-gf58k35t2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T17:20:00.000Z","end":"2026-03-30T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-qwjs4hgqb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T17:40:00.000Z","end":"2026-03-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-7ip9w44pa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T18:00:00.000Z","end":"2026-03-30T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-83n9nbyiw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T18:20:00.000Z","end":"2026-03-30T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-d47gpamyv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T18:40:00.000Z","end":"2026-03-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-qsz9ib27s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T19:00:00.000Z","end":"2026-03-30T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-ue84i9wth","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T19:20:00.000Z","end":"2026-03-30T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-euwdw12fv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T19:40:00.000Z","end":"2026-03-30T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-bu4k9e7a1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T20:00:00.000Z","end":"2026-03-30T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-952m418l3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-30T20:20:00.000Z","end":"2026-03-30T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-6kcoj1z70","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-30T20:40:00.000Z","end":"2026-03-30T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-zxf4xxlbl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T12:00:00.000Z","end":"2026-03-31T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-7r1u9zd6d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T12:20:00.000Z","end":"2026-03-31T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-tjloinpsj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T12:40:00.000Z","end":"2026-03-31T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-zp8vi11e7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T13:00:00.000Z","end":"2026-03-31T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-ahbkmchr6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T13:20:00.000Z","end":"2026-03-31T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-8sh741f27","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T13:40:00.000Z","end":"2026-03-31T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-i42ojoyi6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T14:00:00.000Z","end":"2026-03-31T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-gjcge5t35","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T14:20:00.000Z","end":"2026-03-31T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-z2dfutv6h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T14:40:00.000Z","end":"2026-03-31T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085587-24u80rz49","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T15:00:00.000Z","end":"2026-03-31T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-tbu36bkgx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T15:20:00.000Z","end":"2026-03-31T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-cr622zwss","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T15:40:00.000Z","end":"2026-03-31T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-gjky6fljn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T16:00:00.000Z","end":"2026-03-31T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-rbqp5cduf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T16:20:00.000Z","end":"2026-03-31T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-uaoby3q3u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T16:40:00.000Z","end":"2026-03-31T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-t25rdfsk2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T17:00:00.000Z","end":"2026-03-31T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-99jqmj978","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T17:20:00.000Z","end":"2026-03-31T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-m9c25b2jw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T17:40:00.000Z","end":"2026-03-31T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-w07892638","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T18:00:00.000Z","end":"2026-03-31T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-p7f7d784c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T18:20:00.000Z","end":"2026-03-31T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-t2otwe7xz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T18:40:00.000Z","end":"2026-03-31T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-darn989ge","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T19:00:00.000Z","end":"2026-03-31T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-a8o7v9ncs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T19:20:00.000Z","end":"2026-03-31T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-nt8negnoc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T19:40:00.000Z","end":"2026-03-31T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-yu2xqsaoj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T20:00:00.000Z","end":"2026-03-31T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-twzxdx0xw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-03-31T20:20:00.000Z","end":"2026-03-31T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-gi4ab3elm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-03-31T20:40:00.000Z","end":"2026-03-31T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-yp1k8annl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T12:00:00.000Z","end":"2026-04-01T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-dhfmcecnw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T12:20:00.000Z","end":"2026-04-01T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-rjnalo9u2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T12:40:00.000Z","end":"2026-04-01T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-02d8dscta","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T13:00:00.000Z","end":"2026-04-01T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-3fto637mm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T13:20:00.000Z","end":"2026-04-01T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-j2zlmjgod","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T13:40:00.000Z","end":"2026-04-01T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-r5mivplrq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T14:00:00.000Z","end":"2026-04-01T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-87g7ys430","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T14:20:00.000Z","end":"2026-04-01T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-z4l4onaix","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T14:40:00.000Z","end":"2026-04-01T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-0xoyek2sb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T15:00:00.000Z","end":"2026-04-01T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-vubaf6nfs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T15:20:00.000Z","end":"2026-04-01T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-4e5s6ney4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T15:40:00.000Z","end":"2026-04-01T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-o4sp0h2pj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T16:00:00.000Z","end":"2026-04-01T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-8m9imogw9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T16:20:00.000Z","end":"2026-04-01T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-u6seu9zr9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T16:40:00.000Z","end":"2026-04-01T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-38jqcxl7a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T17:00:00.000Z","end":"2026-04-01T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-lom042lf9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T17:20:00.000Z","end":"2026-04-01T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-jbexb6o4k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T17:40:00.000Z","end":"2026-04-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085588-0s74foim7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T18:00:00.000Z","end":"2026-04-01T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-3ha88wl0q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T18:20:00.000Z","end":"2026-04-01T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-va06v6y3s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T18:40:00.000Z","end":"2026-04-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-fequf61f1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T19:00:00.000Z","end":"2026-04-01T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-thve1mhrl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T19:20:00.000Z","end":"2026-04-01T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-ek8duvu0l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T19:40:00.000Z","end":"2026-04-01T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-bg9mlq9kd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-01T20:00:00.000Z","end":"2026-04-01T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-23s1t8uvb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T20:20:00.000Z","end":"2026-04-01T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-s3obppgvb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-01T20:40:00.000Z","end":"2026-04-01T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-19er4m8kp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T12:00:00.000Z","end":"2026-04-02T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-ftrhzmqlq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T12:20:00.000Z","end":"2026-04-02T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-49u6jsdrq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T12:40:00.000Z","end":"2026-04-02T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-p0cb89v1m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T13:00:00.000Z","end":"2026-04-02T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-beyaasdv7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T13:20:00.000Z","end":"2026-04-02T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-nkgeo1b7o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T13:40:00.000Z","end":"2026-04-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-2cc4uvjzt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T14:00:00.000Z","end":"2026-04-02T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-b14tao35f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T14:20:00.000Z","end":"2026-04-02T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-zyqbvdqte","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T14:40:00.000Z","end":"2026-04-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-ntqge7h5x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T15:00:00.000Z","end":"2026-04-02T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-uf0obxkhz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T15:20:00.000Z","end":"2026-04-02T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-i1npev4i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T15:40:00.000Z","end":"2026-04-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-9y3m9pfu2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T16:00:00.000Z","end":"2026-04-02T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-njlefg35t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T16:20:00.000Z","end":"2026-04-02T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-halw06k1q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T16:40:00.000Z","end":"2026-04-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-bn94joies","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T17:00:00.000Z","end":"2026-04-02T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085589-sc5j5wefx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T17:20:00.000Z","end":"2026-04-02T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085590-dp4c7c36f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T17:40:00.000Z","end":"2026-04-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-fcbianm0e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T18:00:00.000Z","end":"2026-04-02T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-aj5n2upjg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T18:20:00.000Z","end":"2026-04-02T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-44thz99bo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T18:40:00.000Z","end":"2026-04-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-s4gbuf613","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T19:00:00.000Z","end":"2026-04-02T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-xy3w834aq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T19:20:00.000Z","end":"2026-04-02T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-wkw5ex8ud","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T19:40:00.000Z","end":"2026-04-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-ef9npt89w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-02T20:00:00.000Z","end":"2026-04-02T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-vgyeqx9lv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T20:20:00.000Z","end":"2026-04-02T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-oknzylh4t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-02T20:40:00.000Z","end":"2026-04-02T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-00q2chjd0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T12:00:00.000Z","end":"2026-04-03T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-qx538h7uq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T12:20:00.000Z","end":"2026-04-03T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-xtxzrkvu9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T12:40:00.000Z","end":"2026-04-03T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-c4brm0itd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T13:00:00.000Z","end":"2026-04-03T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-92jlp65pt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T13:20:00.000Z","end":"2026-04-03T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-p4d52b7uc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T13:40:00.000Z","end":"2026-04-03T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-magxh82q2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T14:00:00.000Z","end":"2026-04-03T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-nxuq3m7rg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T14:20:00.000Z","end":"2026-04-03T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-uzfpui4u7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T14:40:00.000Z","end":"2026-04-03T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-i0mipg64o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T15:00:00.000Z","end":"2026-04-03T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-ge8ut7e29","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T15:20:00.000Z","end":"2026-04-03T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-ncci0tw68","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T15:40:00.000Z","end":"2026-04-03T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-5v4qt81yv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T16:00:00.000Z","end":"2026-04-03T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-1st416vjf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T16:20:00.000Z","end":"2026-04-03T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-rvc6dvqao","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T16:40:00.000Z","end":"2026-04-03T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-uqvcbbokk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T17:00:00.000Z","end":"2026-04-03T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-jnhx3lv2c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T17:20:00.000Z","end":"2026-04-03T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-21oysm3v5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T17:40:00.000Z","end":"2026-04-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-zr6wf5b93","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T18:00:00.000Z","end":"2026-04-03T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-085xbmjvc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T18:20:00.000Z","end":"2026-04-03T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-1r0ep1stu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T18:40:00.000Z","end":"2026-04-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-nr3guidsh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T19:00:00.000Z","end":"2026-04-03T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-1tudz8fgb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T19:20:00.000Z","end":"2026-04-03T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-ij671y8zg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T19:40:00.000Z","end":"2026-04-03T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-ml6fokudv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-03T20:00:00.000Z","end":"2026-04-03T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-uf7oi0ygt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T20:20:00.000Z","end":"2026-04-03T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085591-hy4t9zx2g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-03T20:40:00.000Z","end":"2026-04-03T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-y5vxtsfe9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T12:00:00.000Z","end":"2026-04-06T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-4l23077ea","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T12:20:00.000Z","end":"2026-04-06T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-uiwn41bjc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T12:40:00.000Z","end":"2026-04-06T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-mm9tijziy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T13:00:00.000Z","end":"2026-04-06T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-phicid0ay","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T13:20:00.000Z","end":"2026-04-06T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-i8bs360do","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T13:40:00.000Z","end":"2026-04-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-0woom82wy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T14:00:00.000Z","end":"2026-04-06T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-vquv86f9j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T14:20:00.000Z","end":"2026-04-06T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-r4kpbgbbo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T14:40:00.000Z","end":"2026-04-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-zsko4bwy2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T15:00:00.000Z","end":"2026-04-06T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-x8rhb1ysq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T15:20:00.000Z","end":"2026-04-06T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-ya6vfefx0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T15:40:00.000Z","end":"2026-04-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-k7rrx0n64","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T16:00:00.000Z","end":"2026-04-06T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-iup89s2xr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T16:20:00.000Z","end":"2026-04-06T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-vwzop366r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T16:40:00.000Z","end":"2026-04-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-6g9bk18az","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T17:00:00.000Z","end":"2026-04-06T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-6yty1osqq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T17:20:00.000Z","end":"2026-04-06T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-flg2yzvmi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T17:40:00.000Z","end":"2026-04-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-fe0v2kv1v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T18:00:00.000Z","end":"2026-04-06T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-m1u6at534","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T18:20:00.000Z","end":"2026-04-06T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-exjkv4mid","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T18:40:00.000Z","end":"2026-04-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-4o4vjbxaw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T19:00:00.000Z","end":"2026-04-06T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-ex4bqzhao","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T19:20:00.000Z","end":"2026-04-06T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-0sc5heds8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T19:40:00.000Z","end":"2026-04-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-ea8uamo6f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-06T20:00:00.000Z","end":"2026-04-06T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-8hulxx3gt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T20:20:00.000Z","end":"2026-04-06T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-7gqnidmkb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-06T20:40:00.000Z","end":"2026-04-06T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-exkdgb29p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T12:00:00.000Z","end":"2026-04-07T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-jaelssimu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T12:20:00.000Z","end":"2026-04-07T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-vnhzn2djs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T12:40:00.000Z","end":"2026-04-07T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-tmz6dkfgs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T13:00:00.000Z","end":"2026-04-07T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-5onvs81j0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T13:20:00.000Z","end":"2026-04-07T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-a5jfgj9b5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T13:40:00.000Z","end":"2026-04-07T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085592-ikijkddum","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T14:00:00.000Z","end":"2026-04-07T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-42yedetoq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T14:20:00.000Z","end":"2026-04-07T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-k7srnuj0y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T14:40:00.000Z","end":"2026-04-07T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-o7hkbsra7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T15:00:00.000Z","end":"2026-04-07T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-t9wkb98ut","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T15:20:00.000Z","end":"2026-04-07T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-dfs4s96ri","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T15:40:00.000Z","end":"2026-04-07T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-pdcf3xan8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T16:00:00.000Z","end":"2026-04-07T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-6trp0p4o4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T16:20:00.000Z","end":"2026-04-07T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-2p432lgz2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T16:40:00.000Z","end":"2026-04-07T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-b1ljgs1zo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T17:00:00.000Z","end":"2026-04-07T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-kfp35da4p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T17:20:00.000Z","end":"2026-04-07T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-2xlox5glf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T17:40:00.000Z","end":"2026-04-07T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-3buqwp5qy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T18:00:00.000Z","end":"2026-04-07T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-c2y31i35w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T18:20:00.000Z","end":"2026-04-07T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-cdi3tozto","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T18:40:00.000Z","end":"2026-04-07T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-ld74vnio3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T19:00:00.000Z","end":"2026-04-07T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-7ucd3pxjl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T19:20:00.000Z","end":"2026-04-07T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-n45dzac1i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T19:40:00.000Z","end":"2026-04-07T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-25xjmycnn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-07T20:00:00.000Z","end":"2026-04-07T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-6q57f0ohc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T20:20:00.000Z","end":"2026-04-07T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-dykvpgrdp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-07T20:40:00.000Z","end":"2026-04-07T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-zgxs2p9h1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T12:00:00.000Z","end":"2026-04-08T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-b6yte3m6d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T12:20:00.000Z","end":"2026-04-08T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-da7olqpue","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T12:40:00.000Z","end":"2026-04-08T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-huofb3eye","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T13:00:00.000Z","end":"2026-04-08T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-nhfo3nxbr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T13:20:00.000Z","end":"2026-04-08T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-nf2lfvvxh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T13:40:00.000Z","end":"2026-04-08T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-120vzkeyk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T14:00:00.000Z","end":"2026-04-08T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-dx11x6o48","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T14:20:00.000Z","end":"2026-04-08T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-9eg55f9ly","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T14:40:00.000Z","end":"2026-04-08T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-dfbk6m2oa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T15:00:00.000Z","end":"2026-04-08T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-e3zvuju1z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T15:20:00.000Z","end":"2026-04-08T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085593-wt97ftkaj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T15:40:00.000Z","end":"2026-04-08T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-mo8pyivxi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T16:00:00.000Z","end":"2026-04-08T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-jx2n4cwmp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T16:20:00.000Z","end":"2026-04-08T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-mr2ed2xsx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T16:40:00.000Z","end":"2026-04-08T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-hl4fbf9xc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T17:00:00.000Z","end":"2026-04-08T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-xpoaawie1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T17:20:00.000Z","end":"2026-04-08T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-x6kn1baru","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T17:40:00.000Z","end":"2026-04-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-cuese5pro","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T18:00:00.000Z","end":"2026-04-08T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-0ow6q93cj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T18:20:00.000Z","end":"2026-04-08T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-nsxveoi0r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T18:40:00.000Z","end":"2026-04-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-z4bjyjjd9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T19:00:00.000Z","end":"2026-04-08T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-ffe4haxmb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T19:20:00.000Z","end":"2026-04-08T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-sxqqm57ix","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T19:40:00.000Z","end":"2026-04-08T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-uurexegqf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T20:00:00.000Z","end":"2026-04-08T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-59barkmfm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-08T20:20:00.000Z","end":"2026-04-08T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-1dtof8p0v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-08T20:40:00.000Z","end":"2026-04-08T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-0agdbgn0m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T12:00:00.000Z","end":"2026-04-09T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-5831yreg3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T12:20:00.000Z","end":"2026-04-09T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-j6xtpb1je","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T12:40:00.000Z","end":"2026-04-09T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-7v7owhd7u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T13:00:00.000Z","end":"2026-04-09T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-eu7fmr523","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T13:20:00.000Z","end":"2026-04-09T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-s221qyv4i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T13:40:00.000Z","end":"2026-04-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-p3bgttu14","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T14:00:00.000Z","end":"2026-04-09T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-k8r6fqmtx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T14:20:00.000Z","end":"2026-04-09T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-zupg7rift","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T14:40:00.000Z","end":"2026-04-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-z5x14wkgi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T15:00:00.000Z","end":"2026-04-09T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-0c5ysdgkw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T15:20:00.000Z","end":"2026-04-09T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-4segdhror","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T15:40:00.000Z","end":"2026-04-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-yxo6xz0e8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T16:00:00.000Z","end":"2026-04-09T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-1q6gnnbbm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T16:20:00.000Z","end":"2026-04-09T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-l5z22qand","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T16:40:00.000Z","end":"2026-04-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-7dezwits0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T17:00:00.000Z","end":"2026-04-09T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-ote6ppcli","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T17:20:00.000Z","end":"2026-04-09T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-744nqfkq6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T17:40:00.000Z","end":"2026-04-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085594-axd3ybtno","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T18:00:00.000Z","end":"2026-04-09T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-szmc1039h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T18:20:00.000Z","end":"2026-04-09T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-aec04qzqb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T18:40:00.000Z","end":"2026-04-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-ip8lw86k3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T19:00:00.000Z","end":"2026-04-09T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-lj70e18yl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-09T19:20:00.000Z","end":"2026-04-09T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-v2ivxhcyh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T19:40:00.000Z","end":"2026-04-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-u6o54rk33","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T20:00:00.000Z","end":"2026-04-09T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-djxvpxmzf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T20:20:00.000Z","end":"2026-04-09T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-qz2q980s2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-09T20:40:00.000Z","end":"2026-04-09T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-z6pievnuo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T12:00:00.000Z","end":"2026-04-10T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-peojlrw99","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T12:20:00.000Z","end":"2026-04-10T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-kl2hewu1z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T12:40:00.000Z","end":"2026-04-10T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-fvw2teiyy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T13:00:00.000Z","end":"2026-04-10T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-jindd3imp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-10T13:20:00.000Z","end":"2026-04-10T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-6jdjtlkpj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-10T13:40:00.000Z","end":"2026-04-10T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-ypyf5s9pc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-10T14:00:00.000Z","end":"2026-04-10T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-yn08f636p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T14:20:00.000Z","end":"2026-04-10T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-01cidmdzu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-10T14:40:00.000Z","end":"2026-04-10T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-oowy3nvf3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T15:00:00.000Z","end":"2026-04-10T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-s79qxiffq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-10T15:20:00.000Z","end":"2026-04-10T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-ht60151e8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-10T15:40:00.000Z","end":"2026-04-10T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-sqz8jxd3e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T16:00:00.000Z","end":"2026-04-10T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-dfq8nyrpz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T16:20:00.000Z","end":"2026-04-10T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-t4v080stu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T16:40:00.000Z","end":"2026-04-10T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-93jijfzlx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T17:00:00.000Z","end":"2026-04-10T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-p2qelkw20","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T17:20:00.000Z","end":"2026-04-10T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-48b07qaek","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T17:40:00.000Z","end":"2026-04-10T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-2h31kd6s1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T18:00:00.000Z","end":"2026-04-10T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-fkkxw6tdm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T18:20:00.000Z","end":"2026-04-10T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-p69t30f49","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T18:40:00.000Z","end":"2026-04-10T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-m3e9axcr9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T19:00:00.000Z","end":"2026-04-10T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-1j8acz4jd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-10T19:20:00.000Z","end":"2026-04-10T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-p9hv2byn2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T19:40:00.000Z","end":"2026-04-10T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-73kvhw869","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T20:00:00.000Z","end":"2026-04-10T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-wbrqler6l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-10T20:20:00.000Z","end":"2026-04-10T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-e875u2m3v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-10T20:40:00.000Z","end":"2026-04-10T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085595-33nt4wqyl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T12:00:00.000Z","end":"2026-04-13T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085596-ga01kplil","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T12:20:00.000Z","end":"2026-04-13T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-900b8pwwb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T12:40:00.000Z","end":"2026-04-13T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-ji205qtog","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T13:00:00.000Z","end":"2026-04-13T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-copa35iih","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T13:20:00.000Z","end":"2026-04-13T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-jzgnqdydn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T13:40:00.000Z","end":"2026-04-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-62pk3dlyn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T14:00:00.000Z","end":"2026-04-13T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-vc0p5kpvj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T14:20:00.000Z","end":"2026-04-13T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-et4vf697v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T14:40:00.000Z","end":"2026-04-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-qiiz2g2hp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T15:00:00.000Z","end":"2026-04-13T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-jirnqay2t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T15:20:00.000Z","end":"2026-04-13T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-k4kxhi015","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T15:40:00.000Z","end":"2026-04-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-b89yeez5v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T16:00:00.000Z","end":"2026-04-13T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-2tjqsw7u4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T16:20:00.000Z","end":"2026-04-13T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-smldk6yv7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T16:40:00.000Z","end":"2026-04-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-c5kuxhbum","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T17:00:00.000Z","end":"2026-04-13T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-nrc9im9y9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T17:20:00.000Z","end":"2026-04-13T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-uhewr1tyc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T17:40:00.000Z","end":"2026-04-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-vvwofz898","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T18:00:00.000Z","end":"2026-04-13T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-o4hnt7kmo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T18:20:00.000Z","end":"2026-04-13T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-hzvsvek7r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T18:40:00.000Z","end":"2026-04-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-94gyuo54c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T19:00:00.000Z","end":"2026-04-13T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-qo25nd2jw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T19:20:00.000Z","end":"2026-04-13T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-29yj6r8gt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-13T19:40:00.000Z","end":"2026-04-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-u5lmr0k94","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T20:00:00.000Z","end":"2026-04-13T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-x1m4btb58","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T20:20:00.000Z","end":"2026-04-13T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-qzaoh2ycb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-13T20:40:00.000Z","end":"2026-04-13T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-jid6fybdl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T12:00:00.000Z","end":"2026-04-14T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-axgv8l6fx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T12:20:00.000Z","end":"2026-04-14T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-0fmuen279","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T12:40:00.000Z","end":"2026-04-14T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-wo91388sb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T13:00:00.000Z","end":"2026-04-14T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-tvef6y1ki","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T13:20:00.000Z","end":"2026-04-14T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.597Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085597-0kh66br6c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T13:40:00.000Z","end":"2026-04-14T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-u4eupz81w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T14:00:00.000Z","end":"2026-04-14T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-jon23yor5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T14:20:00.000Z","end":"2026-04-14T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-q2gyyvt7p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T14:40:00.000Z","end":"2026-04-14T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-c7v48o0pu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T15:00:00.000Z","end":"2026-04-14T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-rqdzlts1j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T15:20:00.000Z","end":"2026-04-14T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-gk1h12t3m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T15:40:00.000Z","end":"2026-04-14T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-yzxeq8wfb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T16:00:00.000Z","end":"2026-04-14T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-cwhuj8j71","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T16:20:00.000Z","end":"2026-04-14T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-svth7vvfc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T16:40:00.000Z","end":"2026-04-14T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-ubfwn4nq3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T17:00:00.000Z","end":"2026-04-14T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-esiwwboyd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T17:20:00.000Z","end":"2026-04-14T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.073Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-2bz4oozxg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T17:40:00.000Z","end":"2026-04-14T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-0nko1dh74","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T18:00:00.000Z","end":"2026-04-14T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-3kmsywxtt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T18:20:00.000Z","end":"2026-04-14T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-3f6jgnfpy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T18:40:00.000Z","end":"2026-04-14T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-fum8krl7l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T19:00:00.000Z","end":"2026-04-14T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-6xiadsd5f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T19:20:00.000Z","end":"2026-04-14T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-frnqehspm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T19:40:00.000Z","end":"2026-04-14T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-h959sl88y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-14T20:00:00.000Z","end":"2026-04-14T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-jl0rg8d0p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T20:20:00.000Z","end":"2026-04-14T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-ueqq1qzkj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-14T20:40:00.000Z","end":"2026-04-14T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-uoaywfj21","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T12:00:00.000Z","end":"2026-04-15T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-wvwvxzpc8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T12:20:00.000Z","end":"2026-04-15T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-thdrfgk99","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T12:40:00.000Z","end":"2026-04-15T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-62kqihzdm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T13:00:00.000Z","end":"2026-04-15T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-lz0fbosf4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T13:20:00.000Z","end":"2026-04-15T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-h4u6m0wro","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T13:40:00.000Z","end":"2026-04-15T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-cb7jlafyy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T14:00:00.000Z","end":"2026-04-15T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-t6spcu9yx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T14:20:00.000Z","end":"2026-04-15T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-8y21w2ene","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T14:40:00.000Z","end":"2026-04-15T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-354wr5z4e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T15:00:00.000Z","end":"2026-04-15T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-rqor70jne","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T15:20:00.000Z","end":"2026-04-15T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-oz8kbh1ql","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T15:40:00.000Z","end":"2026-04-15T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.598Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085598-r4z0eqcg8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T16:00:00.000Z","end":"2026-04-15T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-fqsdiin42","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T16:20:00.000Z","end":"2026-04-15T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-t2prag2ey","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T16:40:00.000Z","end":"2026-04-15T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-lmgn57ueq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T17:00:00.000Z","end":"2026-04-15T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-hra2hh7z3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T17:20:00.000Z","end":"2026-04-15T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-l8js1urhe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T17:40:00.000Z","end":"2026-04-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-pf00r7h73","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T18:00:00.000Z","end":"2026-04-15T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-t564l4bh7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T18:20:00.000Z","end":"2026-04-15T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-1il4h9ixq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T18:40:00.000Z","end":"2026-04-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-1d2thyeak","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T19:00:00.000Z","end":"2026-04-15T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-he5g5oa0r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T19:20:00.000Z","end":"2026-04-15T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-vt2hhqeqd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T19:40:00.000Z","end":"2026-04-15T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-at7ow36rd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T20:00:00.000Z","end":"2026-04-15T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-2bii0umdr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-15T20:20:00.000Z","end":"2026-04-15T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.132Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-h96lfiiic","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-15T20:40:00.000Z","end":"2026-04-15T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-qnv2fdnzt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T12:00:00.000Z","end":"2026-04-16T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-9mczsdheo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T12:20:00.000Z","end":"2026-04-16T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-cv3e1m5wm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T12:40:00.000Z","end":"2026-04-16T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-fyvp7ej3r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T13:00:00.000Z","end":"2026-04-16T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-mo4uvkbng","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T13:20:00.000Z","end":"2026-04-16T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-3nfhh0aqc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T13:40:00.000Z","end":"2026-04-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-3nmqjbnvh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T14:00:00.000Z","end":"2026-04-16T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.975Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-bp8pejvt6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T14:20:00.000Z","end":"2026-04-16T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-o48p3z7wi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T14:40:00.000Z","end":"2026-04-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-45y4k8nkv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T15:00:00.000Z","end":"2026-04-16T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-5ac9jhzg4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T15:20:00.000Z","end":"2026-04-16T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-uojlbj6di","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T15:40:00.000Z","end":"2026-04-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-jxh3fxhnq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T16:00:00.000Z","end":"2026-04-16T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-f44ytv333","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T16:20:00.000Z","end":"2026-04-16T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-u4h58xf26","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T16:40:00.000Z","end":"2026-04-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-2l97uo0so","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T17:00:00.000Z","end":"2026-04-16T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-yg0j03gkt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T17:20:00.000Z","end":"2026-04-16T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.994Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-eghcawwb6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T17:40:00.000Z","end":"2026-04-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-yh97nqqzd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T18:00:00.000Z","end":"2026-04-16T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-bc3jhc9wy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T18:20:00.000Z","end":"2026-04-16T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-ibis9tscm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T18:40:00.000Z","end":"2026-04-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085599-0swaeog97","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T19:00:00.000Z","end":"2026-04-16T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.599Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-tcfiolwit","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T19:20:00.000Z","end":"2026-04-16T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-t2sryhphx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-16T19:40:00.000Z","end":"2026-04-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-j09f4ha69","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T20:00:00.000Z","end":"2026-04-16T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-iihyljk9u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T20:20:00.000Z","end":"2026-04-16T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-3pmtyll7w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-16T20:40:00.000Z","end":"2026-04-16T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-2fbny8k1h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T12:00:00.000Z","end":"2026-04-17T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-b8t66vqa8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T12:20:00.000Z","end":"2026-04-17T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.049Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-z1xx2tgjl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T12:40:00.000Z","end":"2026-04-17T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-xx345hxja","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T13:00:00.000Z","end":"2026-04-17T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-67f77lgzf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T13:20:00.000Z","end":"2026-04-17T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.042Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-eu9s3n4ys","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T13:40:00.000Z","end":"2026-04-17T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-2ffm2jkvh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T14:00:00.000Z","end":"2026-04-17T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-pytz0s1b0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T14:20:00.000Z","end":"2026-04-17T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-immgwm5kl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T14:40:00.000Z","end":"2026-04-17T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-idn5ow6vo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T15:00:00.000Z","end":"2026-04-17T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-gdnn7h5n6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T15:20:00.000Z","end":"2026-04-17T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-wtsphp7c6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T15:40:00.000Z","end":"2026-04-17T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-9vz4wtfy1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T16:00:00.000Z","end":"2026-04-17T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-ecldvl16r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T16:20:00.000Z","end":"2026-04-17T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-5f6pwy4v4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T16:40:00.000Z","end":"2026-04-17T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-2rpttp0bg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T17:00:00.000Z","end":"2026-04-17T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-qrsi3zebk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T17:20:00.000Z","end":"2026-04-17T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-5jjqsl1j6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T17:40:00.000Z","end":"2026-04-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-fhs1pq683","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T18:00:00.000Z","end":"2026-04-17T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-y8996548w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T18:20:00.000Z","end":"2026-04-17T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-b6mv3vson","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T18:40:00.000Z","end":"2026-04-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-h1cxx3pdc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T19:00:00.000Z","end":"2026-04-17T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-3ngtemh4t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T19:20:00.000Z","end":"2026-04-17T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-lacl6sfb8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-17T19:40:00.000Z","end":"2026-04-17T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-a0gv2bk50","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T20:00:00.000Z","end":"2026-04-17T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-ktn1818bh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T20:20:00.000Z","end":"2026-04-17T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-jidxroyye","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-17T20:40:00.000Z","end":"2026-04-17T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-r4d8k3f6v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T12:00:00.000Z","end":"2026-04-20T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-6va55kf2h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T12:20:00.000Z","end":"2026-04-20T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-xlv8ispbc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T12:40:00.000Z","end":"2026-04-20T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085600-9j0bpjdxc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T13:00:00.000Z","end":"2026-04-20T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.600Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-9dmfat035","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T13:20:00.000Z","end":"2026-04-20T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-xiew1akb0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T13:40:00.000Z","end":"2026-04-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-7x891kpwx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T14:00:00.000Z","end":"2026-04-20T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-sk9ngywfu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T14:20:00.000Z","end":"2026-04-20T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-pkgawnsc6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T14:40:00.000Z","end":"2026-04-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-08hpb8jsg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T15:00:00.000Z","end":"2026-04-20T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-6gn66jlj5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T15:20:00.000Z","end":"2026-04-20T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-g4f6hr0d1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T15:40:00.000Z","end":"2026-04-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-gw21n7g53","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T16:00:00.000Z","end":"2026-04-20T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-rc0c40b8x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T16:20:00.000Z","end":"2026-04-20T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-nak0ysk4m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T16:40:00.000Z","end":"2026-04-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-x6bd2okp6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T17:00:00.000Z","end":"2026-04-20T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.124Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-ao2q0o4fz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T17:20:00.000Z","end":"2026-04-20T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-mr1vfldwd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T17:40:00.000Z","end":"2026-04-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-d28h3ktoa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T18:00:00.000Z","end":"2026-04-20T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-5gk3vxnal","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T18:20:00.000Z","end":"2026-04-20T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-5vwp7ujdw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T18:40:00.000Z","end":"2026-04-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-8wp1lvmhd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T19:00:00.000Z","end":"2026-04-20T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.996Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-qbzzuqwx6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T19:20:00.000Z","end":"2026-04-20T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-urg099kqq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-20T19:40:00.000Z","end":"2026-04-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-43dk4e30l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T20:00:00.000Z","end":"2026-04-20T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-zno80yhwe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T20:20:00.000Z","end":"2026-04-20T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-cfhlg95kf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-20T20:40:00.000Z","end":"2026-04-20T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-9l4mgksby","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T12:00:00.000Z","end":"2026-04-21T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-u3u48dr9a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T12:20:00.000Z","end":"2026-04-21T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-6ihaozdol","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T12:40:00.000Z","end":"2026-04-21T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-gwcwjzhi7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T13:00:00.000Z","end":"2026-04-21T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-x89759dvj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T13:20:00.000Z","end":"2026-04-21T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.982Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-sos849zuv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T13:40:00.000Z","end":"2026-04-21T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-4aij3vhzz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T14:00:00.000Z","end":"2026-04-21T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.601Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-gd9xahmuq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T14:20:00.000Z","end":"2026-04-21T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085601-mebsmglnp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T14:40:00.000Z","end":"2026-04-21T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085602-aho9zevjv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T15:00:00.000Z","end":"2026-04-21T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.602Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085602-o3kygux9u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T15:20:00.000Z","end":"2026-04-21T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085602-mr2zoz3vn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T15:40:00.000Z","end":"2026-04-21T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085602-ovq5cs2jw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T16:00:00.000Z","end":"2026-04-21T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.602Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-gr5oxl8cr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T16:20:00.000Z","end":"2026-04-21T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-abn1qy2z7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T16:40:00.000Z","end":"2026-04-21T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-tgqrb0hcd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T17:00:00.000Z","end":"2026-04-21T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-o793z5ubn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T17:20:00.000Z","end":"2026-04-21T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-gy4snices","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T17:40:00.000Z","end":"2026-04-21T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-wvuyj2djx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T18:00:00.000Z","end":"2026-04-21T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-yn6xjc9vd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T18:20:00.000Z","end":"2026-04-21T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-26y8f0yrh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T18:40:00.000Z","end":"2026-04-21T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-yxgmgvnat","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T19:00:00.000Z","end":"2026-04-21T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-x46dglw5n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T19:20:00.000Z","end":"2026-04-21T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-ij870o9q2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T19:40:00.000Z","end":"2026-04-21T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-n04p26ell","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T20:00:00.000Z","end":"2026-04-21T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-58n7y9i9m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-21T20:20:00.000Z","end":"2026-04-21T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-54gwyzn17","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-21T20:40:00.000Z","end":"2026-04-21T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-iqoqigluq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T12:00:00.000Z","end":"2026-04-22T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-lvup2ltyt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T12:20:00.000Z","end":"2026-04-22T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-z8zhw32yr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T12:40:00.000Z","end":"2026-04-22T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-xuygwcmw3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T13:00:00.000Z","end":"2026-04-22T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-2nni1cpbu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T13:20:00.000Z","end":"2026-04-22T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-gualr6mri","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T13:40:00.000Z","end":"2026-04-22T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-zaqw0dhll","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T14:00:00.000Z","end":"2026-04-22T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-bty0l2erz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T14:20:00.000Z","end":"2026-04-22T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-oqbr7sfhf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T14:40:00.000Z","end":"2026-04-22T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-0e0o33jtc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T15:00:00.000Z","end":"2026-04-22T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-kgp5atgxx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T15:20:00.000Z","end":"2026-04-22T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-vlspn31y6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T15:40:00.000Z","end":"2026-04-22T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-m2e6z2rgq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T16:00:00.000Z","end":"2026-04-22T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085603-8w2bhzk9e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T16:20:00.000Z","end":"2026-04-22T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-f95thjogr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T16:40:00.000Z","end":"2026-04-22T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-73llak8p7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T17:00:00.000Z","end":"2026-04-22T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-vk1d4ldqi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T17:20:00.000Z","end":"2026-04-22T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-l91scjxw4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T17:40:00.000Z","end":"2026-04-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-duatsoqes","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T18:00:00.000Z","end":"2026-04-22T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-nzx6w6ufl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T18:20:00.000Z","end":"2026-04-22T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-8bwkrq2un","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T18:40:00.000Z","end":"2026-04-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-0qutdep19","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T19:00:00.000Z","end":"2026-04-22T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-1ktvpmcrz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T19:20:00.000Z","end":"2026-04-22T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-i2gtimiqt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T19:40:00.000Z","end":"2026-04-22T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-85o8lxetf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T20:00:00.000Z","end":"2026-04-22T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-m9gucu5u4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-22T20:20:00.000Z","end":"2026-04-22T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-7wpphw0md","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-22T20:40:00.000Z","end":"2026-04-22T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-c3ricubxb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T12:00:00.000Z","end":"2026-04-23T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-uzv9mw9x0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T12:20:00.000Z","end":"2026-04-23T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-70ytps1ez","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T12:40:00.000Z","end":"2026-04-23T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-3kni8w84i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T13:00:00.000Z","end":"2026-04-23T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-y2lrc07ou","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T13:20:00.000Z","end":"2026-04-23T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-xmqbyoyjn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T13:40:00.000Z","end":"2026-04-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-ajuxinyg8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T14:00:00.000Z","end":"2026-04-23T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-vnwivsm77","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T14:20:00.000Z","end":"2026-04-23T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-emk4frhgm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T14:40:00.000Z","end":"2026-04-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-o5bgqfyn1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T15:00:00.000Z","end":"2026-04-23T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-loqmarfzx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T15:20:00.000Z","end":"2026-04-23T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-uovtmh86e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T15:40:00.000Z","end":"2026-04-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-ysjgm88e7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T16:00:00.000Z","end":"2026-04-23T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-i6mx8hbpa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T16:20:00.000Z","end":"2026-04-23T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-fclcynd0t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T16:40:00.000Z","end":"2026-04-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-jog7fxq2z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T17:00:00.000Z","end":"2026-04-23T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-1866r4m7p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T17:20:00.000Z","end":"2026-04-23T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-dbma1ni37","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T17:40:00.000Z","end":"2026-04-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-3xqn1o0tw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T18:00:00.000Z","end":"2026-04-23T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-vi3k9uuf2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T18:20:00.000Z","end":"2026-04-23T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-yxwoiswxd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T18:40:00.000Z","end":"2026-04-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085604-luru4ja0y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T19:00:00.000Z","end":"2026-04-23T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-kowtkl6lx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T19:20:00.000Z","end":"2026-04-23T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-udbw4kbw4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T19:40:00.000Z","end":"2026-04-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-9pgn0q990","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-23T20:00:00.000Z","end":"2026-04-23T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-6a21zdnwh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T20:20:00.000Z","end":"2026-04-23T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-7j7sx0rug","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-23T20:40:00.000Z","end":"2026-04-23T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-ajj6n0s17","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T12:00:00.000Z","end":"2026-04-24T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-83lswj5i0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T12:20:00.000Z","end":"2026-04-24T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-fds3p7m61","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T12:40:00.000Z","end":"2026-04-24T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-vqvjbdf1f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T13:00:00.000Z","end":"2026-04-24T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-m81hgh1kq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T13:20:00.000Z","end":"2026-04-24T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-gcmbm0rdc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T13:40:00.000Z","end":"2026-04-24T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-2go2ltp44","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T14:00:00.000Z","end":"2026-04-24T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-qhecs2wb4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T14:20:00.000Z","end":"2026-04-24T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-afmfu986x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T14:40:00.000Z","end":"2026-04-24T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-r01435nl5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T15:00:00.000Z","end":"2026-04-24T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-obe5f0rir","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T15:20:00.000Z","end":"2026-04-24T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-y3p8aegno","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T15:40:00.000Z","end":"2026-04-24T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-i5bo5njm8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T16:00:00.000Z","end":"2026-04-24T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-j3p17qbuy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T16:20:00.000Z","end":"2026-04-24T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-ixt1pt110","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T16:40:00.000Z","end":"2026-04-24T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-bl1g2bg0f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T17:00:00.000Z","end":"2026-04-24T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-alk01zp19","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T17:20:00.000Z","end":"2026-04-24T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-fkme650ep","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T17:40:00.000Z","end":"2026-04-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-v8f0l7pqi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T18:00:00.000Z","end":"2026-04-24T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-i1d6mvac1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T18:20:00.000Z","end":"2026-04-24T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-qlfup13lb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T18:40:00.000Z","end":"2026-04-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-um34xifzh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T19:00:00.000Z","end":"2026-04-24T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-sjd1262q3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-24T19:20:00.000Z","end":"2026-04-24T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-smpnsht8x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T19:40:00.000Z","end":"2026-04-24T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-s2duv3dgo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T20:00:00.000Z","end":"2026-04-24T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-gasxg3sz3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T20:20:00.000Z","end":"2026-04-24T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-91o9mymqu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-24T20:40:00.000Z","end":"2026-04-24T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-6228d79m0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T12:00:00.000Z","end":"2026-04-27T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-eievmwdjc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T12:20:00.000Z","end":"2026-04-27T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-nwt8gbg1t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T12:40:00.000Z","end":"2026-04-27T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-mpo7p7hbw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T13:00:00.000Z","end":"2026-04-27T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085605-kigh582se","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T13:20:00.000Z","end":"2026-04-27T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-0lfb5pwfv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T13:40:00.000Z","end":"2026-04-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-hq1h86a0r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T14:00:00.000Z","end":"2026-04-27T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-mr1seegpo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T14:20:00.000Z","end":"2026-04-27T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-ckw6ih0q6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T14:40:00.000Z","end":"2026-04-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.114Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-d2sswrli9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T15:00:00.000Z","end":"2026-04-27T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-rnfj01hki","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T15:20:00.000Z","end":"2026-04-27T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-v942nxn6p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T15:40:00.000Z","end":"2026-04-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-j4twebe3e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T16:00:00.000Z","end":"2026-04-27T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-gdzo176me","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T16:20:00.000Z","end":"2026-04-27T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-6iwlqe3rl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T16:40:00.000Z","end":"2026-04-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-faiaxpdvk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T17:00:00.000Z","end":"2026-04-27T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-25pau9vln","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T17:20:00.000Z","end":"2026-04-27T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-87od9oy8h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T17:40:00.000Z","end":"2026-04-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-ouht0g7lf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T18:00:00.000Z","end":"2026-04-27T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-g9bmdlk44","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T18:20:00.000Z","end":"2026-04-27T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-tjnd6glid","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T18:40:00.000Z","end":"2026-04-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-tuhybf572","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T19:00:00.000Z","end":"2026-04-27T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-5s1l52k20","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T19:20:00.000Z","end":"2026-04-27T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-wrrjwuc2m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T19:40:00.000Z","end":"2026-04-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-p09z1s17v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T20:00:00.000Z","end":"2026-04-27T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085606-mmgybuof6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-27T20:20:00.000Z","end":"2026-04-27T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-h015b1x8p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-27T20:40:00.000Z","end":"2026-04-27T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-5ctugn0lo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T12:00:00.000Z","end":"2026-04-28T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-1bg17y3zm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T12:20:00.000Z","end":"2026-04-28T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-mc3zbvr6a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T12:40:00.000Z","end":"2026-04-28T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-5yz4s958u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T13:00:00.000Z","end":"2026-04-28T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-b162e4fy8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T13:20:00.000Z","end":"2026-04-28T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-qaj1cg0cv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T13:40:00.000Z","end":"2026-04-28T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-w2zxi8e7e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T14:00:00.000Z","end":"2026-04-28T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-206drlfvk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T14:20:00.000Z","end":"2026-04-28T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-d5r1ft56g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T14:40:00.000Z","end":"2026-04-28T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-uohorvb6f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T15:00:00.000Z","end":"2026-04-28T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-vmxnw786l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T15:20:00.000Z","end":"2026-04-28T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085607-4qsra6oe9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T15:40:00.000Z","end":"2026-04-28T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-ayfr9qtvi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T16:00:00.000Z","end":"2026-04-28T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-w1fo4d3n5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T16:20:00.000Z","end":"2026-04-28T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-fb9ud42tq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T16:40:00.000Z","end":"2026-04-28T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-mfzy359td","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T17:00:00.000Z","end":"2026-04-28T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-05r2zwz2r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T17:20:00.000Z","end":"2026-04-28T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-k39ktxgdh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T17:40:00.000Z","end":"2026-04-28T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-rgd86ne15","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T18:00:00.000Z","end":"2026-04-28T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-obnqr2y1v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T18:20:00.000Z","end":"2026-04-28T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-o474f8f3c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T18:40:00.000Z","end":"2026-04-28T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.137Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-rup6tqcbl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T19:00:00.000Z","end":"2026-04-28T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-mekmzahxm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T19:20:00.000Z","end":"2026-04-28T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-sqimhzuzi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T19:40:00.000Z","end":"2026-04-28T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-cujhpsk4j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-28T20:00:00.000Z","end":"2026-04-28T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-buiblc7uu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T20:20:00.000Z","end":"2026-04-28T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-y1lj37zwy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-28T20:40:00.000Z","end":"2026-04-28T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.079Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-98ntn45hl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T12:00:00.000Z","end":"2026-04-29T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-b9jarexf6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T12:20:00.000Z","end":"2026-04-29T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-rp9zprebo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T12:40:00.000Z","end":"2026-04-29T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-cutkhbqf0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T13:00:00.000Z","end":"2026-04-29T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-b4sblrcat","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T13:20:00.000Z","end":"2026-04-29T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-bdg4r773t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T13:40:00.000Z","end":"2026-04-29T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-uyorbnm9f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T14:00:00.000Z","end":"2026-04-29T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-q9eys7h3j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T14:20:00.000Z","end":"2026-04-29T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-okf9cdmrj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T14:40:00.000Z","end":"2026-04-29T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-mglso58c5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T15:00:00.000Z","end":"2026-04-29T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-rwc89jnh4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T15:20:00.000Z","end":"2026-04-29T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-yv4061ivc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T15:40:00.000Z","end":"2026-04-29T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-4lwuj61sb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T16:00:00.000Z","end":"2026-04-29T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-x0qpnzn8s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T16:20:00.000Z","end":"2026-04-29T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-4ui524bu9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T16:40:00.000Z","end":"2026-04-29T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-eswgomn5q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T17:00:00.000Z","end":"2026-04-29T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-rrpelxqzp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T17:20:00.000Z","end":"2026-04-29T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-yhxq1l4o0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T17:40:00.000Z","end":"2026-04-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085608-fo23rw05z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T18:00:00.000Z","end":"2026-04-29T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085609-jjrdpxhzk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T18:20:00.000Z","end":"2026-04-29T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085609-rra8iaik9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T18:40:00.000Z","end":"2026-04-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085609-b498v8tg6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T19:00:00.000Z","end":"2026-04-29T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085609-tj3ets8kj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T19:20:00.000Z","end":"2026-04-29T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085609-djtcnhmsm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T19:40:00.000Z","end":"2026-04-29T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085609-7s2updz8i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T20:00:00.000Z","end":"2026-04-29T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085609-uxx05hhug","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-29T20:20:00.000Z","end":"2026-04-29T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-j23dyuwr0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-29T20:40:00.000Z","end":"2026-04-29T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-kpgdlxyp3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T12:00:00.000Z","end":"2026-04-30T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-djvmu54kq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T12:20:00.000Z","end":"2026-04-30T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-9oju13e0o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T12:40:00.000Z","end":"2026-04-30T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-qki5va58m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T13:00:00.000Z","end":"2026-04-30T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-7ntcxffwq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T13:20:00.000Z","end":"2026-04-30T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-vqjrzaw5w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T13:40:00.000Z","end":"2026-04-30T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-7pgg54l1l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T14:00:00.000Z","end":"2026-04-30T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-ys155ljk4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T14:20:00.000Z","end":"2026-04-30T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-d3hrin3jz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T14:40:00.000Z","end":"2026-04-30T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-rau5q1h48","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T15:00:00.000Z","end":"2026-04-30T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-6ww3ciro2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T15:20:00.000Z","end":"2026-04-30T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-amxw3mfa3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T15:40:00.000Z","end":"2026-04-30T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-dmhfdi7v8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T16:00:00.000Z","end":"2026-04-30T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-ljxpchtki","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T16:20:00.000Z","end":"2026-04-30T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-mihgmxo9r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T16:40:00.000Z","end":"2026-04-30T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-qm15agmz5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T17:00:00.000Z","end":"2026-04-30T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-vy53lctl9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T17:20:00.000Z","end":"2026-04-30T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-197kcpa47","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T17:40:00.000Z","end":"2026-04-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-yqgh92t1x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T18:00:00.000Z","end":"2026-04-30T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-23cgbne4e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T18:20:00.000Z","end":"2026-04-30T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085610-3rtg3u1ll","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T18:40:00.000Z","end":"2026-04-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-e76ywwzo5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T19:00:00.000Z","end":"2026-04-30T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.960Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-q71e7x2vr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T19:20:00.000Z","end":"2026-04-30T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-n0xwsa8d0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T19:40:00.000Z","end":"2026-04-30T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-5wbsehsvw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-04-30T20:00:00.000Z","end":"2026-04-30T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-dba3cdunk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T20:20:00.000Z","end":"2026-04-30T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-llhvvixu3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-04-30T20:40:00.000Z","end":"2026-04-30T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-4pjg79gd3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T12:00:00.000Z","end":"2026-05-01T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-cr3w9nt94","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T12:20:00.000Z","end":"2026-05-01T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.131Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-ev7ljpqrg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T12:40:00.000Z","end":"2026-05-01T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-z5kc2jkvc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T13:00:00.000Z","end":"2026-05-01T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-nobdaqb4d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T13:20:00.000Z","end":"2026-05-01T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-f2mftagv4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T13:40:00.000Z","end":"2026-05-01T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-v9wc6hjv0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T14:00:00.000Z","end":"2026-05-01T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-50a6uc580","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T14:20:00.000Z","end":"2026-05-01T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-xj4sbd98a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T14:40:00.000Z","end":"2026-05-01T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-48nxbi8y3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T15:00:00.000Z","end":"2026-05-01T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-kuwtpglax","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T15:20:00.000Z","end":"2026-05-01T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-ucqicuncj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T15:40:00.000Z","end":"2026-05-01T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-hse2bq15n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T16:00:00.000Z","end":"2026-05-01T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-tu2matrt8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T16:20:00.000Z","end":"2026-05-01T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-m4tcyyhvl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T16:40:00.000Z","end":"2026-05-01T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-xc1knzk97","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T17:00:00.000Z","end":"2026-05-01T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-zty6gtf3x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T17:20:00.000Z","end":"2026-05-01T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-wjhozrlqo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T17:40:00.000Z","end":"2026-05-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-rx1fvbe60","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T18:00:00.000Z","end":"2026-05-01T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-gkq74b2x6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T18:20:00.000Z","end":"2026-05-01T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-ki6d8oghx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T18:40:00.000Z","end":"2026-05-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.987Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-ul5k1bikv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T19:00:00.000Z","end":"2026-05-01T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-ag0mfq3t6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T19:20:00.000Z","end":"2026-05-01T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-hc8qnkzq1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T19:40:00.000Z","end":"2026-05-01T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-0xxcfn4xz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T20:00:00.000Z","end":"2026-05-01T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085611-1wxj8w1sd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-01T20:20:00.000Z","end":"2026-05-01T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-6w08rjs8t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-01T20:40:00.000Z","end":"2026-05-01T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-sj7jw825e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T12:00:00.000Z","end":"2026-05-04T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-es29n9sph","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T12:20:00.000Z","end":"2026-05-04T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-djp81e7y0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T12:40:00.000Z","end":"2026-05-04T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-j6s6mysfm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T13:00:00.000Z","end":"2026-05-04T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-xrryyd00t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T13:20:00.000Z","end":"2026-05-04T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-1km9g8fek","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T13:40:00.000Z","end":"2026-05-04T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-uvjleg3vf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T14:00:00.000Z","end":"2026-05-04T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-fkbvsrdcq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T14:20:00.000Z","end":"2026-05-04T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-fyl88wmp2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T14:40:00.000Z","end":"2026-05-04T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-xj7s0dz10","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T15:00:00.000Z","end":"2026-05-04T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-l49spv8ii","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T15:20:00.000Z","end":"2026-05-04T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-u70hnlbi7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T15:40:00.000Z","end":"2026-05-04T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-fstgp27qf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T16:00:00.000Z","end":"2026-05-04T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-zuhw83lsf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T16:20:00.000Z","end":"2026-05-04T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-r2uvu6ptz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T16:40:00.000Z","end":"2026-05-04T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-47wt2tozw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T17:00:00.000Z","end":"2026-05-04T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-50yfwnyij","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T17:20:00.000Z","end":"2026-05-04T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-6clkrh0qb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T17:40:00.000Z","end":"2026-05-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-vrjaixom9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T18:00:00.000Z","end":"2026-05-04T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-x0964vw7v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T18:20:00.000Z","end":"2026-05-04T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-uawd64h6s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T18:40:00.000Z","end":"2026-05-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-k18ke7679","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T19:00:00.000Z","end":"2026-05-04T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-f3vmfwpy6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T19:20:00.000Z","end":"2026-05-04T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-3cyn04t17","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T19:40:00.000Z","end":"2026-05-04T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-2bvv3vpcj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-04T20:00:00.000Z","end":"2026-05-04T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-msp9qez3g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T20:20:00.000Z","end":"2026-05-04T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-q178542t7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-04T20:40:00.000Z","end":"2026-05-04T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-wrqzv2mpv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T12:00:00.000Z","end":"2026-05-05T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.010Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-fxwaphfwd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T12:20:00.000Z","end":"2026-05-05T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-o74peaxxi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T12:40:00.000Z","end":"2026-05-05T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-euo1vpkef","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T13:00:00.000Z","end":"2026-05-05T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.984Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-1woyrms1a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T13:20:00.000Z","end":"2026-05-05T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-pcmmz7rl2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T13:40:00.000Z","end":"2026-05-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-4xohfvk80","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T14:00:00.000Z","end":"2026-05-05T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085612-q8slo2uzl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T14:20:00.000Z","end":"2026-05-05T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.612Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-xsbu83xmh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T14:40:00.000Z","end":"2026-05-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-4jt64nuyw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T15:00:00.000Z","end":"2026-05-05T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-1tdj4u5ua","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T15:20:00.000Z","end":"2026-05-05T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-jnrowarrd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T15:40:00.000Z","end":"2026-05-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-fuoxl9y04","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T16:00:00.000Z","end":"2026-05-05T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-h21c99lyt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T16:20:00.000Z","end":"2026-05-05T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-sffujlvl6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T16:40:00.000Z","end":"2026-05-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-gx1umjwnt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T17:00:00.000Z","end":"2026-05-05T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-30mqiqex7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T17:20:00.000Z","end":"2026-05-05T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-hxou1cyn1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T17:40:00.000Z","end":"2026-05-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-yszy2e8pp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T18:00:00.000Z","end":"2026-05-05T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.064Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-9gaps4ugm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T18:20:00.000Z","end":"2026-05-05T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-5paytkvmd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T18:40:00.000Z","end":"2026-05-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-jeon9hh1t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T19:00:00.000Z","end":"2026-05-05T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-8ethcx3r7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T19:20:00.000Z","end":"2026-05-05T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-vbtjgcjqv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T19:40:00.000Z","end":"2026-05-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-5k57pjfrl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T20:00:00.000Z","end":"2026-05-05T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-up3o6phaq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-05T20:20:00.000Z","end":"2026-05-05T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-c7nxsykfe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-05T20:40:00.000Z","end":"2026-05-05T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-pu9og303q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T12:00:00.000Z","end":"2026-05-06T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-9n7o9du66","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T12:20:00.000Z","end":"2026-05-06T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-xkkcf0wfy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T12:40:00.000Z","end":"2026-05-06T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.119Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-i50dr9v81","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T13:00:00.000Z","end":"2026-05-06T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-7a744upwu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T13:20:00.000Z","end":"2026-05-06T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-d41yefx2v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T13:40:00.000Z","end":"2026-05-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.005Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-534q5a38q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T14:00:00.000Z","end":"2026-05-06T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-qa0m6899e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T14:20:00.000Z","end":"2026-05-06T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-y6tkm1rqi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T14:40:00.000Z","end":"2026-05-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-zq3yoqtvj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T15:00:00.000Z","end":"2026-05-06T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-9oc7mv1nd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T15:20:00.000Z","end":"2026-05-06T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-8zsce5la6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T15:40:00.000Z","end":"2026-05-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-zfy4smndm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T16:00:00.000Z","end":"2026-05-06T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-n6cb9fm28","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T16:20:00.000Z","end":"2026-05-06T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-8gsk7ccr5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T16:40:00.000Z","end":"2026-05-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.613Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085613-44wlkaoez","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T17:00:00.000Z","end":"2026-05-06T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.008Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-ll3z2h3s1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T17:20:00.000Z","end":"2026-05-06T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-daelgwm4z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T17:40:00.000Z","end":"2026-05-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-cyit91clq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T18:00:00.000Z","end":"2026-05-06T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-72d18uwyc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T18:20:00.000Z","end":"2026-05-06T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-neafyexc5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T18:40:00.000Z","end":"2026-05-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-sre4qcsp0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T19:00:00.000Z","end":"2026-05-06T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-1avbzmii0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T19:20:00.000Z","end":"2026-05-06T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-q2zouisoq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T19:40:00.000Z","end":"2026-05-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-h8xb6kfhd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T20:00:00.000Z","end":"2026-05-06T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-ubj1c1h4x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-06T20:20:00.000Z","end":"2026-05-06T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-7o0ms8ljt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-06T20:40:00.000Z","end":"2026-05-06T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-nbzhvvcd8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T12:00:00.000Z","end":"2026-05-07T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-7qbsd9k3z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T12:20:00.000Z","end":"2026-05-07T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-y7l8iwnaf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T12:40:00.000Z","end":"2026-05-07T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.976Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-27wyru4pv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T13:00:00.000Z","end":"2026-05-07T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-znlnoeat4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T13:20:00.000Z","end":"2026-05-07T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-kv34kbwts","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T13:40:00.000Z","end":"2026-05-07T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-lbsn3v8ym","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T14:00:00.000Z","end":"2026-05-07T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-nbghumabu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T14:20:00.000Z","end":"2026-05-07T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-xqmoy3w5h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T14:40:00.000Z","end":"2026-05-07T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-p0emcgfec","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T15:00:00.000Z","end":"2026-05-07T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-0ddyn3njl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T15:20:00.000Z","end":"2026-05-07T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-qsbqzrher","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T15:40:00.000Z","end":"2026-05-07T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-yp4ujxnr9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T16:00:00.000Z","end":"2026-05-07T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-pqsxxogrn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T16:20:00.000Z","end":"2026-05-07T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.012Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-9m1n89exh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T16:40:00.000Z","end":"2026-05-07T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-91qb2iis8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T17:00:00.000Z","end":"2026-05-07T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-v6bjhxegy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T17:20:00.000Z","end":"2026-05-07T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-35421rq1o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T17:40:00.000Z","end":"2026-05-07T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-5riybowqx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T18:00:00.000Z","end":"2026-05-07T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-4dr50p9ax","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T18:20:00.000Z","end":"2026-05-07T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-0jhnxi9ly","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T18:40:00.000Z","end":"2026-05-07T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085614-0tc3wgbg4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T19:00:00.000Z","end":"2026-05-07T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.614Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-fy6bkyfce","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T19:20:00.000Z","end":"2026-05-07T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-hujhtupay","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T19:40:00.000Z","end":"2026-05-07T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.031Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-1dwjcmmoz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-07T20:00:00.000Z","end":"2026-05-07T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-oh3eagaw5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T20:20:00.000Z","end":"2026-05-07T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.615Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-sh16el0kj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-07T20:40:00.000Z","end":"2026-05-07T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.615Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-shm8plwm5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T12:00:00.000Z","end":"2026-05-08T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.615Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-pppwoy88y","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T12:20:00.000Z","end":"2026-05-08T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.011Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-bdi3tetmx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T12:40:00.000Z","end":"2026-05-08T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-hpdjlc59q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T13:00:00.000Z","end":"2026-05-08T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.615Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-gm2hvwh8k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T13:20:00.000Z","end":"2026-05-08T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.615Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085615-1iqotfycj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T13:40:00.000Z","end":"2026-05-08T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.615Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-xdk1goh17","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T14:00:00.000Z","end":"2026-05-08T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-owg717xg7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T14:20:00.000Z","end":"2026-05-08T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-ryzth285t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T14:40:00.000Z","end":"2026-05-08T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-btmvlaml1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T15:00:00.000Z","end":"2026-05-08T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-gb5v8y7e3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T15:20:00.000Z","end":"2026-05-08T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.988Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-ra7spoq2h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T15:40:00.000Z","end":"2026-05-08T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-68pkl6twz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T16:00:00.000Z","end":"2026-05-08T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.616Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-7bs0jjfp3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T16:20:00.000Z","end":"2026-05-08T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-46hekjaqz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T16:40:00.000Z","end":"2026-05-08T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-x5qe9kaog","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T17:00:00.000Z","end":"2026-05-08T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-55br27yyg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T17:20:00.000Z","end":"2026-05-08T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.616Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-isyxt01jf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T17:40:00.000Z","end":"2026-05-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-s6im8b2xu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T18:00:00.000Z","end":"2026-05-08T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.616Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-f558311nk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T18:20:00.000Z","end":"2026-05-08T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.616Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-awtfku636","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T18:40:00.000Z","end":"2026-05-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-yl51mebx3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T19:00:00.000Z","end":"2026-05-08T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.616Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-an1e3797l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T19:20:00.000Z","end":"2026-05-08T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-itz0gi3v9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T19:40:00.000Z","end":"2026-05-08T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.616Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085616-purmmgzgq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T20:00:00.000Z","end":"2026-05-08T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.102Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-6rmwbxfx8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-08T20:20:00.000Z","end":"2026-05-08T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-ireov59jp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-08T20:40:00.000Z","end":"2026-05-08T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-qw6tu6qsj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T12:00:00.000Z","end":"2026-05-11T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.969Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-yabneipab","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T12:20:00.000Z","end":"2026-05-11T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-ddzvkaf79","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T12:40:00.000Z","end":"2026-05-11T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-6zn2ycb36","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T13:00:00.000Z","end":"2026-05-11T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-k0u11f2xe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T13:20:00.000Z","end":"2026-05-11T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.002Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-w09zl72ku","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-11T13:40:00.000Z","end":"2026-05-11T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-gcvu7j1nt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-11T14:00:00.000Z","end":"2026-05-11T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-hsimg07ua","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-11T14:20:00.000Z","end":"2026-05-11T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-pd2qtgkl8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T14:40:00.000Z","end":"2026-05-11T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-s0mhcgbbv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-11T15:00:00.000Z","end":"2026-05-11T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-jnmbxy3sy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T15:20:00.000Z","end":"2026-05-11T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-q3f0d3y75","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T15:40:00.000Z","end":"2026-05-11T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-p0rwe3467","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T16:00:00.000Z","end":"2026-05-11T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-da1j8hhpc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T16:20:00.000Z","end":"2026-05-11T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.019Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-m5k9ic7cf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T16:40:00.000Z","end":"2026-05-11T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-mtiy4hiz3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T17:00:00.000Z","end":"2026-05-11T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-r61zg7feh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-11T17:20:00.000Z","end":"2026-05-11T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-3x7pl1ktj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T17:40:00.000Z","end":"2026-05-11T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-jau79svn3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-11T18:00:00.000Z","end":"2026-05-11T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-tx9c45tlk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T18:20:00.000Z","end":"2026-05-11T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-omt5gq43k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T18:40:00.000Z","end":"2026-05-11T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-cwtnvdk3u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T19:00:00.000Z","end":"2026-05-11T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-rlz1r9mca","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T19:20:00.000Z","end":"2026-05-11T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-8ywp4nr57","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-11T19:40:00.000Z","end":"2026-05-11T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-m8lqjm2k6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-11T20:00:00.000Z","end":"2026-05-11T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-perqrgr76","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T20:20:00.000Z","end":"2026-05-11T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-7nhfpevtl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-11T20:40:00.000Z","end":"2026-05-11T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-o0ayer0eg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T12:00:00.000Z","end":"2026-05-12T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.112Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-dcr2vpl5d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T12:20:00.000Z","end":"2026-05-12T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-y8tvgv4ju","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T12:40:00.000Z","end":"2026-05-12T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-80kuqnope","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T13:00:00.000Z","end":"2026-05-12T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-zvejq26nn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T13:20:00.000Z","end":"2026-05-12T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-lrg9v76d7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T13:40:00.000Z","end":"2026-05-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085617-igp86x0ly","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T14:00:00.000Z","end":"2026-05-12T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.617Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-cwagx2t8l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T14:20:00.000Z","end":"2026-05-12T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-3w1yh2dbv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T14:40:00.000Z","end":"2026-05-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-9ypqy6m05","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T15:00:00.000Z","end":"2026-05-12T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-zw2idqtou","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T15:20:00.000Z","end":"2026-05-12T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.032Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-4vtoxgkq7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T15:40:00.000Z","end":"2026-05-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-x0s84ewff","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T16:00:00.000Z","end":"2026-05-12T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-kfioecaz8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T16:20:00.000Z","end":"2026-05-12T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-lf4zz1pe0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T16:40:00.000Z","end":"2026-05-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-d81k43sfw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T17:00:00.000Z","end":"2026-05-12T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-dphi9ui74","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T17:20:00.000Z","end":"2026-05-12T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.059Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-3pbsx1x4e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T17:40:00.000Z","end":"2026-05-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-weo0o8uv8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T18:00:00.000Z","end":"2026-05-12T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-e834ngdzy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T18:20:00.000Z","end":"2026-05-12T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-ce0gx5z7l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T18:40:00.000Z","end":"2026-05-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-ofb0mawvq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T19:00:00.000Z","end":"2026-05-12T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-sovl8bxgf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T19:20:00.000Z","end":"2026-05-12T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-9y4wq892b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T19:40:00.000Z","end":"2026-05-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.077Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-m5m849209","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T20:00:00.000Z","end":"2026-05-12T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-uepg5zvqn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-12T20:20:00.000Z","end":"2026-05-12T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-57g89zz3x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-12T20:40:00.000Z","end":"2026-05-12T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-nuf51ktz2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T12:00:00.000Z","end":"2026-05-13T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-pd5yuex5v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T12:20:00.000Z","end":"2026-05-13T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-xq308ze1m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T12:40:00.000Z","end":"2026-05-13T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-1nt8hpg0c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T13:00:00.000Z","end":"2026-05-13T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-5ok05x8oj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T13:20:00.000Z","end":"2026-05-13T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-ddcuwsfwi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T13:40:00.000Z","end":"2026-05-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-4b089cx7c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T14:00:00.000Z","end":"2026-05-13T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-ofjhu2nvv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T14:20:00.000Z","end":"2026-05-13T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-bkqeq6rxc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T14:40:00.000Z","end":"2026-05-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-9wncv9v3u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T15:00:00.000Z","end":"2026-05-13T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.618Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-7hmmy7fkx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T15:20:00.000Z","end":"2026-05-13T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-jcw4296c2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T15:40:00.000Z","end":"2026-05-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-cgeq13ow7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T16:00:00.000Z","end":"2026-05-13T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.989Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-e4kxqzr24","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T16:20:00.000Z","end":"2026-05-13T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-tv1dsnmto","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T16:40:00.000Z","end":"2026-05-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.058Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085618-912fy59dg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T17:00:00.000Z","end":"2026-05-13T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-inv3p1qzq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T17:20:00.000Z","end":"2026-05-13T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-khaczbdxm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T17:40:00.000Z","end":"2026-05-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-qm8smhafa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T18:00:00.000Z","end":"2026-05-13T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.974Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-pgl1484ij","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T18:20:00.000Z","end":"2026-05-13T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-iqsvhjv9m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T18:40:00.000Z","end":"2026-05-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-lmbqfmdoc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T19:00:00.000Z","end":"2026-05-13T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-9rnqaszkr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T19:20:00.000Z","end":"2026-05-13T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-xprhmrumr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T19:40:00.000Z","end":"2026-05-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-ug0mrpi2w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T20:00:00.000Z","end":"2026-05-13T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-f84eoeobf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-13T20:20:00.000Z","end":"2026-05-13T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-87pt633k9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-13T20:40:00.000Z","end":"2026-05-13T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-2iiwmy6gz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T12:00:00.000Z","end":"2026-05-14T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.993Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-azhphdj9k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-14T12:20:00.000Z","end":"2026-05-14T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-gg8xxu4w8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T12:40:00.000Z","end":"2026-05-14T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-mugn4vv6w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T13:00:00.000Z","end":"2026-05-14T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-u1fireaan","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T13:20:00.000Z","end":"2026-05-14T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-dho3ciqvj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T13:40:00.000Z","end":"2026-05-14T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-35t4h9s3u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-14T14:00:00.000Z","end":"2026-05-14T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-ax9l1v1yp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T14:20:00.000Z","end":"2026-05-14T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-karxcrnbs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T14:40:00.000Z","end":"2026-05-14T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-mxzw2yqff","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-14T15:00:00.000Z","end":"2026-05-14T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-k1an33di0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T15:20:00.000Z","end":"2026-05-14T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.958Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-fep49nd84","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-14T15:40:00.000Z","end":"2026-05-14T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-5hezbmaf0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T16:00:00.000Z","end":"2026-05-14T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-294yvfmbj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T16:20:00.000Z","end":"2026-05-14T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-xj5ep0n2q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T16:40:00.000Z","end":"2026-05-14T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-235z9djdp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T17:00:00.000Z","end":"2026-05-14T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.072Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-yawb3l8yn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T17:20:00.000Z","end":"2026-05-14T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-dzav7psel","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T17:40:00.000Z","end":"2026-05-14T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-nrgzif2ie","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-14T18:00:00.000Z","end":"2026-05-14T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-d2c683ja0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-14T18:20:00.000Z","end":"2026-05-14T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.619Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-5swhj4ti5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T18:40:00.000Z","end":"2026-05-14T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.128Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085619-ja31rdw56","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T19:00:00.000Z","end":"2026-05-14T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-y5c8miuuo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T19:20:00.000Z","end":"2026-05-14T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-6xiddhem8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T19:40:00.000Z","end":"2026-05-14T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-dnzhvkn2w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-14T20:00:00.000Z","end":"2026-05-14T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-pl2bq4g3r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-14T20:20:00.000Z","end":"2026-05-14T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-mt5x0frls","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-14T20:40:00.000Z","end":"2026-05-14T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-0ubfj3761","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-15T12:00:00.000Z","end":"2026-05-15T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-919httpyx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-15T12:20:00.000Z","end":"2026-05-15T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-zrcrwqxsd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T12:40:00.000Z","end":"2026-05-15T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-soif55xi0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T13:00:00.000Z","end":"2026-05-15T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-fsee3mlia","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T13:20:00.000Z","end":"2026-05-15T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-hny9cd27q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T13:40:00.000Z","end":"2026-05-15T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-cfhp6eznu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T14:00:00.000Z","end":"2026-05-15T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-kxw1ir0gm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T14:20:00.000Z","end":"2026-05-15T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-qjgg3tiaa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T14:40:00.000Z","end":"2026-05-15T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-iz1trrgqj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-15T15:00:00.000Z","end":"2026-05-15T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-ck64866aa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T15:20:00.000Z","end":"2026-05-15T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-dhgmihm9x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T15:40:00.000Z","end":"2026-05-15T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-73tzlkknp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-15T16:00:00.000Z","end":"2026-05-15T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-39omimwg9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T16:20:00.000Z","end":"2026-05-15T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-7kiay270j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T16:40:00.000Z","end":"2026-05-15T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-58jn0azhu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T17:00:00.000Z","end":"2026-05-15T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-3q6d4z35s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T17:20:00.000Z","end":"2026-05-15T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-re4oga25f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-15T17:40:00.000Z","end":"2026-05-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-5xnhah331","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T18:00:00.000Z","end":"2026-05-15T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-tsklut2og","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T18:20:00.000Z","end":"2026-05-15T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-qga186ugp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-15T18:40:00.000Z","end":"2026-05-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.957Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-z6u6ovhzy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-15T19:00:00.000Z","end":"2026-05-15T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.083Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-lzoje6oop","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T19:20:00.000Z","end":"2026-05-15T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-5l4rga50b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T19:40:00.000Z","end":"2026-05-15T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-snl4zk9ye","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T20:00:00.000Z","end":"2026-05-15T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-qx6bqil1v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T20:20:00.000Z","end":"2026-05-15T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-izlwu9gc4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-15T20:40:00.000Z","end":"2026-05-15T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-x4csv5wpc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T12:00:00.000Z","end":"2026-05-18T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-yeugdic76","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T12:20:00.000Z","end":"2026-05-18T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-ete5yvr3g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T12:40:00.000Z","end":"2026-05-18T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085620-aquj8awo9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T13:00:00.000Z","end":"2026-05-18T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.620Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-1fji6d9zf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T13:20:00.000Z","end":"2026-05-18T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-ui5c49hrx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T13:40:00.000Z","end":"2026-05-18T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-vf7sjicwo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T14:00:00.000Z","end":"2026-05-18T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.135Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-t9n6b55h4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T14:20:00.000Z","end":"2026-05-18T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-cc4egefzh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T14:40:00.000Z","end":"2026-05-18T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-ls4g75m0s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T15:00:00.000Z","end":"2026-05-18T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-3pqr0vss7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T15:20:00.000Z","end":"2026-05-18T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.956Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-1qq8u4pka","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T15:40:00.000Z","end":"2026-05-18T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-3h899glp6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T16:00:00.000Z","end":"2026-05-18T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-fge0s9f9t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T16:20:00.000Z","end":"2026-05-18T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-6dczxkdig","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T16:40:00.000Z","end":"2026-05-18T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-lr3fucz4d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T17:00:00.000Z","end":"2026-05-18T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-rcsslnp2q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T17:20:00.000Z","end":"2026-05-18T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-azys0fp7h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T17:40:00.000Z","end":"2026-05-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.003Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-2nmmi8hqt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T18:00:00.000Z","end":"2026-05-18T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-x89gjrslx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T18:20:00.000Z","end":"2026-05-18T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.992Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-f8fmz64vl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T18:40:00.000Z","end":"2026-05-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.970Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-2yd67045j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T19:00:00.000Z","end":"2026-05-18T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085621-j3iiyialo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T19:20:00.000Z","end":"2026-05-18T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.621Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-w3b5n4cp9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-18T19:40:00.000Z","end":"2026-05-18T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.021Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-33sn3ulsb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T20:00:00.000Z","end":"2026-05-18T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.622Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-x2gj5babr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T20:20:00.000Z","end":"2026-05-18T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.622Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-fa0r3f0lf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-18T20:40:00.000Z","end":"2026-05-18T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.622Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-t62akc40l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T12:00:00.000Z","end":"2026-05-19T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.981Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-lcqcbfq53","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T12:20:00.000Z","end":"2026-05-19T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.991Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-zxag64itz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T12:40:00.000Z","end":"2026-05-19T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-a55i6h1ta","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T13:00:00.000Z","end":"2026-05-19T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.965Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-4xi3ryx4m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T13:20:00.000Z","end":"2026-05-19T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-o6bi4db8e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T13:40:00.000Z","end":"2026-05-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085622-42mdu4n5k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-19T14:00:00.000Z","end":"2026-05-19T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.622Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-tpgdj45cr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T14:20:00.000Z","end":"2026-05-19T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-c9s7hj82p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-19T14:40:00.000Z","end":"2026-05-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.623Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-vco2vmftk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T15:00:00.000Z","end":"2026-05-19T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-owrc29bl2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T15:20:00.000Z","end":"2026-05-19T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-21e7k5285","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-19T15:40:00.000Z","end":"2026-05-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.623Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-1q54rx17b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T16:00:00.000Z","end":"2026-05-19T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.960Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-f3ghvcde0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-19T16:20:00.000Z","end":"2026-05-19T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.623Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-x3xx06ynh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T16:40:00.000Z","end":"2026-05-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-b8wk80ono","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T17:00:00.000Z","end":"2026-05-19T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.044Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-trbav2i47","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T17:20:00.000Z","end":"2026-05-19T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-g0ij3d71g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T17:40:00.000Z","end":"2026-05-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.998Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-03oe3p5p3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T18:00:00.000Z","end":"2026-05-19T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.979Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-pvskzj5i6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T18:20:00.000Z","end":"2026-05-19T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-3pse38i75","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T18:40:00.000Z","end":"2026-05-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-x4jpfrvqb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T19:00:00.000Z","end":"2026-05-19T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-l1273gjf4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-19T19:20:00.000Z","end":"2026-05-19T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.623Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-7rdzg3kze","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T19:40:00.000Z","end":"2026-05-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-34e68a7kv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T20:00:00.000Z","end":"2026-05-19T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-j4x75ddwu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T20:20:00.000Z","end":"2026-05-19T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-wievpyhgz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-19T20:40:00.000Z","end":"2026-05-19T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-glctsklx7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-20T12:00:00.000Z","end":"2026-05-20T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.623Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-xxcmk6ujm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-20T12:20:00.000Z","end":"2026-05-20T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.623Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-3x6h3a2ln","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T12:40:00.000Z","end":"2026-05-20T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.978Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-npfkql34h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-20T13:00:00.000Z","end":"2026-05-20T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.623Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-r8dp5135s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T13:20:00.000Z","end":"2026-05-20T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.071Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-ztgp5wyjm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T13:40:00.000Z","end":"2026-05-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-ognkzrc07","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-20T14:00:00.000Z","end":"2026-05-20T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.623Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085623-y33ptfkee","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T14:20:00.000Z","end":"2026-05-20T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-mmuavkck6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T14:40:00.000Z","end":"2026-05-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-6allq5iwr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T15:00:00.000Z","end":"2026-05-20T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.052Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-w9vdf8chy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T15:20:00.000Z","end":"2026-05-20T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-dnbnb9qd2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-20T15:40:00.000Z","end":"2026-05-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.624Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-zchwcfapu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T16:00:00.000Z","end":"2026-05-20T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.023Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-uk4gqgheh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T16:20:00.000Z","end":"2026-05-20T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-s64iyjeqo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T16:40:00.000Z","end":"2026-05-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-7dag7m9s7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T17:00:00.000Z","end":"2026-05-20T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.085Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-d2qaelel1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T17:20:00.000Z","end":"2026-05-20T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-9tm8q8a9e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T17:40:00.000Z","end":"2026-05-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.999Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-8ef3a56m1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-20T18:00:00.000Z","end":"2026-05-20T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.624Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-pxh0u6pf4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T18:20:00.000Z","end":"2026-05-20T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-8fv3jkbs2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T18:40:00.000Z","end":"2026-05-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-abif0frpi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-20T19:00:00.000Z","end":"2026-05-20T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.624Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-gbkx32ain","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T19:20:00.000Z","end":"2026-05-20T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-e969sg495","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T19:40:00.000Z","end":"2026-05-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.004Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-fxjcfiepo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T20:00:00.000Z","end":"2026-05-20T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-43ai3vgan","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T20:20:00.000Z","end":"2026-05-20T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.001Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-1ot2cxesr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-20T20:40:00.000Z","end":"2026-05-20T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-xc0u3s0qe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T12:00:00.000Z","end":"2026-05-21T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-ewvs32p7k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T12:20:00.000Z","end":"2026-05-21T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.013Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-v1brase8f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T12:40:00.000Z","end":"2026-05-21T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-vlhlrmb58","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T13:00:00.000Z","end":"2026-05-21T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-7fpc47vir","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T13:20:00.000Z","end":"2026-05-21T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.997Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-8nhdvwfo3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T13:40:00.000Z","end":"2026-05-21T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-c06ae6p5d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T14:00:00.000Z","end":"2026-05-21T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-arih9mtfh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T14:20:00.000Z","end":"2026-05-21T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.980Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-ovvdupzqj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T14:40:00.000Z","end":"2026-05-21T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-t7tzc19ik","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T15:00:00.000Z","end":"2026-05-21T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-hpes4fwo3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T15:20:00.000Z","end":"2026-05-21T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.973Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-s8znuylki","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T15:40:00.000Z","end":"2026-05-21T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085624-n924d5r88","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-21T16:00:00.000Z","end":"2026-05-21T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.624Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-q173ozf45","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T16:20:00.000Z","end":"2026-05-21T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-rhxre84l8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T16:40:00.000Z","end":"2026-05-21T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.037Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-cx40hqokk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T17:00:00.000Z","end":"2026-05-21T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.000Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-nk3nxzvwh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-21T17:20:00.000Z","end":"2026-05-21T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.625Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-0dwtc0vh3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T17:40:00.000Z","end":"2026-05-21T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-ae431cd2v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-21T18:00:00.000Z","end":"2026-05-21T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.625Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-apl00v1mu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T18:20:00.000Z","end":"2026-05-21T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-7uwwze4r1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T18:40:00.000Z","end":"2026-05-21T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.038Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-lsk2dvxs2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T19:00:00.000Z","end":"2026-05-21T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-ozy5i419c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-21T19:20:00.000Z","end":"2026-05-21T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.625Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-v2patzv89","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T19:40:00.000Z","end":"2026-05-21T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-emmmsiou4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T20:00:00.000Z","end":"2026-05-21T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-17cx4jgs3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T20:20:00.000Z","end":"2026-05-21T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.968Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-dgxxi4uzd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-21T20:40:00.000Z","end":"2026-05-21T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-4p1vlmjbf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T12:00:00.000Z","end":"2026-05-22T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-ffjsvm5b7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T12:20:00.000Z","end":"2026-05-22T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.066Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-futpmzkhk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T12:40:00.000Z","end":"2026-05-22T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-fv6xewejx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T13:00:00.000Z","end":"2026-05-22T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.985Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-lvp94ksj4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T13:20:00.000Z","end":"2026-05-22T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.092Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-198mpf1wf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T13:40:00.000Z","end":"2026-05-22T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.990Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-slgngoqhw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T14:00:00.000Z","end":"2026-05-22T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-cb0lvwg5m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T14:20:00.000Z","end":"2026-05-22T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.009Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-qm7f2a0cq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T14:40:00.000Z","end":"2026-05-22T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.977Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-oxy587y6i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T15:00:00.000Z","end":"2026-05-22T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.966Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-jvncl1zuv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-22T15:20:00.000Z","end":"2026-05-22T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.625Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-4m7jz55o8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T15:40:00.000Z","end":"2026-05-22T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.050Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-od18zj9ze","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-22T16:00:00.000Z","end":"2026-05-22T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.625Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-u35gcbf0c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T16:20:00.000Z","end":"2026-05-22T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.986Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-vv8oobpgw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T16:40:00.000Z","end":"2026-05-22T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.964Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-pdypo505i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T17:00:00.000Z","end":"2026-05-22T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.099Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-5isbnsed8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-22T17:20:00.000Z","end":"2026-05-22T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.625Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-05rkcc3ro","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T17:40:00.000Z","end":"2026-05-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-d89yvqjnn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T18:00:00.000Z","end":"2026-05-22T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-vqnr092sf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T18:20:00.000Z","end":"2026-05-22T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085625-rsem7tr6r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T18:40:00.000Z","end":"2026-05-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.955Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-d3agld6pr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T19:00:00.000Z","end":"2026-05-22T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-y64qlnks1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T19:20:00.000Z","end":"2026-05-22T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.057Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-f0u1i9btd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T19:40:00.000Z","end":"2026-05-22T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.963Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-ipl40u1xx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T20:00:00.000Z","end":"2026-05-22T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.095Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-as6ocktp4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T20:20:00.000Z","end":"2026-05-22T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-cxhcit174","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-22T20:40:00.000Z","end":"2026-05-22T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.967Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-bmq9bmzpo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-25T12:00:00.000Z","end":"2026-05-25T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.054Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-2buwsr5vt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-25T12:20:00.000Z","end":"2026-05-25T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.063Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-ojo69tbwe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T12:40:00.000Z","end":"2026-05-25T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-v7ppa20do","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T13:00:00.000Z","end":"2026-05-25T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-nsceohz09","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-25T13:20:00.000Z","end":"2026-05-25T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-dlivyukfd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T13:40:00.000Z","end":"2026-05-25T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-2vfk5vkat","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-25T14:00:00.000Z","end":"2026-05-25T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-2xragqcjk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T14:20:00.000Z","end":"2026-05-25T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-fn4zfxs8m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-25T14:40:00.000Z","end":"2026-05-25T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-4pepasote","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T15:00:00.000Z","end":"2026-05-25T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-bvb7flrpg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T15:20:00.000Z","end":"2026-05-25T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-rxnty0ulu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T15:40:00.000Z","end":"2026-05-25T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-c590htcff","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T16:00:00.000Z","end":"2026-05-25T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-08bs332xg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T16:20:00.000Z","end":"2026-05-25T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-csnnd5ne4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T16:40:00.000Z","end":"2026-05-25T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-cr2q8ue5j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-25T17:00:00.000Z","end":"2026-05-25T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-2t09uzwb4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T17:20:00.000Z","end":"2026-05-25T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-guf1v8835","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T17:40:00.000Z","end":"2026-05-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-s8a92eycx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T18:00:00.000Z","end":"2026-05-25T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-id09v13eb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T18:20:00.000Z","end":"2026-05-25T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-ad0eue1mz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T18:40:00.000Z","end":"2026-05-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-z481l9nti","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T19:00:00.000Z","end":"2026-05-25T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-n158780nx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T19:20:00.000Z","end":"2026-05-25T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-h40xov5uf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T19:40:00.000Z","end":"2026-05-25T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-70rsguhqx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T20:00:00.000Z","end":"2026-05-25T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-ilebmycxp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T20:20:00.000Z","end":"2026-05-25T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-jjxsm6sm9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-25T20:40:00.000Z","end":"2026-05-25T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-kqfz0py0e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T12:00:00.000Z","end":"2026-05-26T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-uz77h15f7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T12:20:00.000Z","end":"2026-05-26T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085626-1k4hoxdot","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T12:40:00.000Z","end":"2026-05-26T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.626Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-a0ehbmob9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T13:00:00.000Z","end":"2026-05-26T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-9f2pg3w0j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T13:20:00.000Z","end":"2026-05-26T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-t8ahpzxwt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T13:40:00.000Z","end":"2026-05-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.131Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-h9uldajxm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T14:00:00.000Z","end":"2026-05-26T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-ios5v3qr6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T14:20:00.000Z","end":"2026-05-26T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-6lczx505b","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T14:40:00.000Z","end":"2026-05-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-v3tdykqzv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T15:00:00.000Z","end":"2026-05-26T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-3ua4b74ti","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T15:20:00.000Z","end":"2026-05-26T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-82lvsejip","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T15:40:00.000Z","end":"2026-05-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-fpxaw10p3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T16:00:00.000Z","end":"2026-05-26T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-23ukjfq7u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T16:20:00.000Z","end":"2026-05-26T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-2kv2tx2g3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T16:40:00.000Z","end":"2026-05-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-k57pdqfik","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T17:00:00.000Z","end":"2026-05-26T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-f5rdy34kr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T17:20:00.000Z","end":"2026-05-26T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-4nzhaxkwu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T17:40:00.000Z","end":"2026-05-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-6x1jqa17n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T18:00:00.000Z","end":"2026-05-26T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-hjq5apbg2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T18:20:00.000Z","end":"2026-05-26T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-jshvtssfx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T18:40:00.000Z","end":"2026-05-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-43g3igzhe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T19:00:00.000Z","end":"2026-05-26T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-ftvmzf5bs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-26T19:20:00.000Z","end":"2026-05-26T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-brc51w7nz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T19:40:00.000Z","end":"2026-05-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-2t5jwc63u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T20:00:00.000Z","end":"2026-05-26T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-s5edf5inv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T20:20:00.000Z","end":"2026-05-26T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-npgclwaez","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-26T20:40:00.000Z","end":"2026-05-26T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-6ut9fpbd7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-27T12:00:00.000Z","end":"2026-05-27T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-w1xomxqn6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T12:20:00.000Z","end":"2026-05-27T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085627-qwalgum15","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T12:40:00.000Z","end":"2026-05-27T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.627Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085628-5768ov1e5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-27T13:00:00.000Z","end":"2026-05-27T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.117Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085628-4soeybyui","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T13:20:00.000Z","end":"2026-05-27T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.628Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-n7tsoisgy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T13:40:00.000Z","end":"2026-05-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-mp6gq32s4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T14:00:00.000Z","end":"2026-05-27T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-551gpdmy7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T14:20:00.000Z","end":"2026-05-27T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-qd558kjxl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T14:40:00.000Z","end":"2026-05-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-fun9pt6vw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T15:00:00.000Z","end":"2026-05-27T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-7c3uupasl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T15:20:00.000Z","end":"2026-05-27T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-hb1rdlqna","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T15:40:00.000Z","end":"2026-05-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-nay4hwf3l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T16:00:00.000Z","end":"2026-05-27T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-tn58pmp6w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T16:20:00.000Z","end":"2026-05-27T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-fmtvp8qq7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T16:40:00.000Z","end":"2026-05-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-uem3b2grx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T17:00:00.000Z","end":"2026-05-27T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-funvidqlz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T17:20:00.000Z","end":"2026-05-27T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-ptlsgddlu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T17:40:00.000Z","end":"2026-05-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-td4e8s6xm","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T18:00:00.000Z","end":"2026-05-27T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-qg96wrggp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T18:20:00.000Z","end":"2026-05-27T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-04qzfdjhv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T18:40:00.000Z","end":"2026-05-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-4lx8nnbq0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T19:00:00.000Z","end":"2026-05-27T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-gxoq9kdls","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T19:20:00.000Z","end":"2026-05-27T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-6y7ymyvrl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-27T19:40:00.000Z","end":"2026-05-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-b7cd6mb2o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-27T20:00:00.000Z","end":"2026-05-27T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-57aygid4d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-27T20:20:00.000Z","end":"2026-05-27T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-amxzsb0qy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-27T20:40:00.000Z","end":"2026-05-27T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.096Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-ou3fp6lb8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T12:00:00.000Z","end":"2026-05-28T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-qm2evzie9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-28T12:20:00.000Z","end":"2026-05-28T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.123Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-dblcas0bh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-28T12:40:00.000Z","end":"2026-05-28T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-92v0pkn4x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T13:00:00.000Z","end":"2026-05-28T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-476g6ozbk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T13:20:00.000Z","end":"2026-05-28T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-kjd0phe7o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T13:40:00.000Z","end":"2026-05-28T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-ckuqilyc4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-28T14:00:00.000Z","end":"2026-05-28T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-5o4lygl6n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T14:20:00.000Z","end":"2026-05-28T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-v5h9u0kau","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T14:40:00.000Z","end":"2026-05-28T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-h0z2b7nz5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T15:00:00.000Z","end":"2026-05-28T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-tija12zn7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-28T15:20:00.000Z","end":"2026-05-28T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.115Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-4vd3n4oc0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T15:40:00.000Z","end":"2026-05-28T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-nkcxxqyeh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T16:00:00.000Z","end":"2026-05-28T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085629-lwe3u6ui3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T16:20:00.000Z","end":"2026-05-28T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.629Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-eq955iruh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T16:40:00.000Z","end":"2026-05-28T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-1y3eghuss","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T17:00:00.000Z","end":"2026-05-28T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-8pnfjhwla","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T17:20:00.000Z","end":"2026-05-28T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-d0l00yav5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T17:40:00.000Z","end":"2026-05-28T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-bx5lcmc3t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-28T18:00:00.000Z","end":"2026-05-28T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-dhssrxxj8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-28T18:20:00.000Z","end":"2026-05-28T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.959Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-or3l3b1oe","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T18:40:00.000Z","end":"2026-05-28T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-v3bcz3rdw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T19:00:00.000Z","end":"2026-05-28T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-t7c63iqc7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-28T19:20:00.000Z","end":"2026-05-28T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-dum6burei","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T19:40:00.000Z","end":"2026-05-28T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-mx3d2ocf1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T20:00:00.000Z","end":"2026-05-28T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-4hjfp9sp3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-28T20:20:00.000Z","end":"2026-05-28T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-g37s7vobf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-28T20:40:00.000Z","end":"2026-05-28T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.093Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-mtpb9ou14","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T12:00:00.000Z","end":"2026-05-29T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.088Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-n0t06g47j","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T12:20:00.000Z","end":"2026-05-29T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-zwlzn7txu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T12:40:00.000Z","end":"2026-05-29T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.109Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-zuocceo24","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T13:00:00.000Z","end":"2026-05-29T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-4skavav8r","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T13:20:00.000Z","end":"2026-05-29T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-gea7kdh9p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T13:40:00.000Z","end":"2026-05-29T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-pz4p3cd8w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T14:00:00.000Z","end":"2026-05-29T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.062Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-o022hwory","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T14:20:00.000Z","end":"2026-05-29T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-1f8nbg6kh","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T14:40:00.000Z","end":"2026-05-29T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.094Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-tpnsfzpie","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T15:00:00.000Z","end":"2026-05-29T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-wxby2n5m3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T15:20:00.000Z","end":"2026-05-29T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.962Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-24qf7fqm5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T15:40:00.000Z","end":"2026-05-29T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-for888a1n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T16:00:00.000Z","end":"2026-05-29T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-l6y0lz71z","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T16:20:00.000Z","end":"2026-05-29T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-2ktr9rh2d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T16:40:00.000Z","end":"2026-05-29T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-crurct8vc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T17:00:00.000Z","end":"2026-05-29T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-4m3520go3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T17:20:00.000Z","end":"2026-05-29T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.113Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-02ky2idm8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T17:40:00.000Z","end":"2026-05-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-imqc5lsh9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T18:00:00.000Z","end":"2026-05-29T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-7z29cryu8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T18:20:00.000Z","end":"2026-05-29T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-naln0yvmc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T18:40:00.000Z","end":"2026-05-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-kv4ncqudp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T19:00:00.000Z","end":"2026-05-29T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-uv1ef4slc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-05-29T19:20:00.000Z","end":"2026-05-29T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.060Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085630-l2trqsgtl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T19:40:00.000Z","end":"2026-05-29T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.630Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-1z34rkmpp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T20:00:00.000Z","end":"2026-05-29T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-3kk27u9b4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T20:20:00.000Z","end":"2026-05-29T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-8441mipu7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-05-29T20:40:00.000Z","end":"2026-05-29T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-iepb0nvkr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T12:00:00.000Z","end":"2026-06-01T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-fmk5h474n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T12:20:00.000Z","end":"2026-06-01T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-bkhf4wfq6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T12:40:00.000Z","end":"2026-06-01T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-j4og04bdg","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T13:00:00.000Z","end":"2026-06-01T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-ls47telus","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T13:20:00.000Z","end":"2026-06-01T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.081Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-iv2sxyzzq","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T13:40:00.000Z","end":"2026-06-01T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.069Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-gvw8gfyi3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T14:00:00.000Z","end":"2026-06-01T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-zxkl92u6q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T14:20:00.000Z","end":"2026-06-01T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-pt05l8290","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T14:40:00.000Z","end":"2026-06-01T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-x973peq3l","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T15:00:00.000Z","end":"2026-06-01T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.048Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-t3f1r9aez","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T15:20:00.000Z","end":"2026-06-01T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-ppes0j1c6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T15:40:00.000Z","end":"2026-06-01T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-y20vmernb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T16:00:00.000Z","end":"2026-06-01T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-bev0zh6qw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T16:20:00.000Z","end":"2026-06-01T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-mnrmtyr4s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T16:40:00.000Z","end":"2026-06-01T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.055Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-9gu7cr03v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T17:00:00.000Z","end":"2026-06-01T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-c0nq68a82","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T17:20:00.000Z","end":"2026-06-01T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.084Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-s9y4c5hxw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T17:40:00.000Z","end":"2026-06-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-ldintw31q","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T18:00:00.000Z","end":"2026-06-01T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-5fk5qyubp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T18:20:00.000Z","end":"2026-06-01T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-rfy47j7hk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T18:40:00.000Z","end":"2026-06-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-56q9p663o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-01T19:00:00.000Z","end":"2026-06-01T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-kg49apsu3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T19:20:00.000Z","end":"2026-06-01T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-ls4i0j7qv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T19:40:00.000Z","end":"2026-06-01T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-fsfne6h64","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T20:00:00.000Z","end":"2026-06-01T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-xyw9d2of6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T20:20:00.000Z","end":"2026-06-01T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-ugqi77oum","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-01T20:40:00.000Z","end":"2026-06-01T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-gv9ixhax3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T12:00:00.000Z","end":"2026-06-02T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-ssw5qfgmt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-02T12:20:00.000Z","end":"2026-06-02T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.103Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-im570o1gi","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T12:40:00.000Z","end":"2026-06-02T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-34gb1sevy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T13:00:00.000Z","end":"2026-06-02T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085631-y3e1ziiux","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T13:20:00.000Z","end":"2026-06-02T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.631Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-xc7j6qmrx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T13:40:00.000Z","end":"2026-06-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-98kw7sd2m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-02T14:00:00.000Z","end":"2026-06-02T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.065Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-xbom9fub5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T14:20:00.000Z","end":"2026-06-02T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-lgcseypzx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T14:40:00.000Z","end":"2026-06-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-amdbkk4sz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-02T15:00:00.000Z","end":"2026-06-02T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.106Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-zugjjc86i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T15:20:00.000Z","end":"2026-06-02T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-hx60tf4b8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T15:40:00.000Z","end":"2026-06-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-3at96twcv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-02T16:00:00.000Z","end":"2026-06-02T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-18mpppbvy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T16:20:00.000Z","end":"2026-06-02T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-6crvug6dy","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T16:40:00.000Z","end":"2026-06-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-iilrxb2an","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-02T17:00:00.000Z","end":"2026-06-02T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.047Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-7dpzj8b6t","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T17:20:00.000Z","end":"2026-06-02T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-7bhkund6c","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-02T17:40:00.000Z","end":"2026-06-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.097Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-s0v8uh4qp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-02T18:00:00.000Z","end":"2026-06-02T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.074Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-xjwwgr7ec","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T18:20:00.000Z","end":"2026-06-02T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-v8ccoegx0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T18:40:00.000Z","end":"2026-06-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-4h0ym41gk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T19:00:00.000Z","end":"2026-06-02T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-4fe3ymbvr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T19:20:00.000Z","end":"2026-06-02T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-556uq58y9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T19:40:00.000Z","end":"2026-06-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-qlmvpi2rs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T20:00:00.000Z","end":"2026-06-02T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-axlk3lwm5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T20:20:00.000Z","end":"2026-06-02T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-sp8s63gt7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-02T20:40:00.000Z","end":"2026-06-02T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-swhmkm92v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T12:00:00.000Z","end":"2026-06-03T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.127Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-6icbzdex8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T12:20:00.000Z","end":"2026-06-03T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-qethb2ymc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T12:40:00.000Z","end":"2026-06-03T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.015Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-bf3k9o8i1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T13:00:00.000Z","end":"2026-06-03T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-pvjoqeb9e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T13:20:00.000Z","end":"2026-06-03T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-9wtei7xw2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T13:40:00.000Z","end":"2026-06-03T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-4rycp5ksa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T14:00:00.000Z","end":"2026-06-03T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.076Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-zvxd1dxlp","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T14:20:00.000Z","end":"2026-06-03T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-etsi02ji4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T14:40:00.000Z","end":"2026-06-03T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.632Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085632-637hrqjrx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T15:00:00.000Z","end":"2026-06-03T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-l2iiwsnbk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T15:20:00.000Z","end":"2026-06-03T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-39br8cviu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T15:40:00.000Z","end":"2026-06-03T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-l9wz6ewcr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T16:00:00.000Z","end":"2026-06-03T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.091Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-1ccb651bs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T16:20:00.000Z","end":"2026-06-03T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-ott859m23","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T16:40:00.000Z","end":"2026-06-03T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.036Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-76wskcqqz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T17:00:00.000Z","end":"2026-06-03T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-t4ttynbui","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T17:20:00.000Z","end":"2026-06-03T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.087Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-3ircgtaat","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T17:40:00.000Z","end":"2026-06-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-bvo3u6y05","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T18:00:00.000Z","end":"2026-06-03T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-3jd38j13f","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T18:20:00.000Z","end":"2026-06-03T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-9qe06hgzw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T18:40:00.000Z","end":"2026-06-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.133Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-5snxi3ibt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T19:00:00.000Z","end":"2026-06-03T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-frq8vygs2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T19:20:00.000Z","end":"2026-06-03T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-6f57k8cvb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T19:40:00.000Z","end":"2026-06-03T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.070Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-vzsejubw4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T20:00:00.000Z","end":"2026-06-03T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-n7s6dcwuk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-03T20:20:00.000Z","end":"2026-06-03T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.080Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-wz95dl9xw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-03T20:40:00.000Z","end":"2026-06-03T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-2ywj4urrv","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T12:00:00.000Z","end":"2026-06-04T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-kt0y5oihz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T12:20:00.000Z","end":"2026-06-04T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-q3on7obc1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T12:40:00.000Z","end":"2026-06-04T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-p4ehb5iv8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T13:00:00.000Z","end":"2026-06-04T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-zqj2y5w89","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T13:20:00.000Z","end":"2026-06-04T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-vnzi33902","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-04T13:40:00.000Z","end":"2026-06-04T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-edqa9x7h3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-04T14:00:00.000Z","end":"2026-06-04T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.029Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-a0jrrwqwt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-04T14:20:00.000Z","end":"2026-06-04T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-8ur4r7oof","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T14:40:00.000Z","end":"2026-06-04T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-a6w9qpaf2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T15:00:00.000Z","end":"2026-06-04T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-acljabj7k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T15:20:00.000Z","end":"2026-06-04T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-l3i6b3thz","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T15:40:00.000Z","end":"2026-06-04T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-q02w6c8qn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T16:00:00.000Z","end":"2026-06-04T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-qpx6dq5r8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-04T16:20:00.000Z","end":"2026-06-04T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.061Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-bnws9ed59","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-04T16:40:00.000Z","end":"2026-06-04T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.120Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-ht62xg6l6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T17:00:00.000Z","end":"2026-06-04T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-mucy6e5cd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T17:20:00.000Z","end":"2026-06-04T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-p1kbq8xi1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T17:40:00.000Z","end":"2026-06-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085633-jdwc9aabl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T18:00:00.000Z","end":"2026-06-04T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.633Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-dhhgbpg8u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T18:20:00.000Z","end":"2026-06-04T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-y6rqoj05m","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T18:40:00.000Z","end":"2026-06-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-g85x2bfyt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T19:00:00.000Z","end":"2026-06-04T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-63cek0gis","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T19:20:00.000Z","end":"2026-06-04T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-3e04sb5rl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-04T19:40:00.000Z","end":"2026-06-04T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-c9d619ra2","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T20:00:00.000Z","end":"2026-06-04T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-2ocep9hxc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-04T20:20:00.000Z","end":"2026-06-04T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-moo3j0fg3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-04T20:40:00.000Z","end":"2026-06-04T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.126Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-sgxj9jxgu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T12:00:00.000Z","end":"2026-06-05T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-rp5lb2pzt","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T12:20:00.000Z","end":"2026-06-05T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-13ln3d3vs","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T12:40:00.000Z","end":"2026-06-05T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-uiuwnigpx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T13:00:00.000Z","end":"2026-06-05T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.082Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-5etj62mky","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T13:20:00.000Z","end":"2026-06-05T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-al50v2v0k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T13:40:00.000Z","end":"2026-06-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-5t2t9oksc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T14:00:00.000Z","end":"2026-06-05T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-lnif14bj5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T14:20:00.000Z","end":"2026-06-05T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.116Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-j6b0on33e","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T14:40:00.000Z","end":"2026-06-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-avc83rsps","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T15:00:00.000Z","end":"2026-06-05T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.118Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-76jiwskko","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T15:20:00.000Z","end":"2026-06-05T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.028Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-k27bgbgqr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T15:40:00.000Z","end":"2026-06-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-ceb8rlp0g","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T16:00:00.000Z","end":"2026-06-05T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.039Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-j7l2dsn2i","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T16:20:00.000Z","end":"2026-06-05T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-xsfs4m93s","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T16:40:00.000Z","end":"2026-06-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-uzlf84bfa","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T17:00:00.000Z","end":"2026-06-05T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.040Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-ag7pen859","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T17:20:00.000Z","end":"2026-06-05T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.108Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-t2h7282vn","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T17:40:00.000Z","end":"2026-06-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-t1hwow2uc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T18:00:00.000Z","end":"2026-06-05T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-t6yf6aeaj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T18:20:00.000Z","end":"2026-06-05T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-vgjo1rmgj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T18:40:00.000Z","end":"2026-06-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-yhqdgdq1u","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T19:00:00.000Z","end":"2026-06-05T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.022Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-xj45fezei","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T19:20:00.000Z","end":"2026-06-05T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-o0h35zdtk","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T19:40:00.000Z","end":"2026-06-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.635Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085635-kw1jufoh9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T20:00:00.000Z","end":"2026-06-05T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.075Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-ym0nao6x5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-05T20:20:00.000Z","end":"2026-06-05T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.041Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-8znjd7g91","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-05T20:40:00.000Z","end":"2026-06-05T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-9xlsu18i4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T12:00:00.000Z","end":"2026-06-08T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-td7h2zg3h","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T12:20:00.000Z","end":"2026-06-08T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-f1hgwgjq3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T12:40:00.000Z","end":"2026-06-08T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.134Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-arr7sbl8v","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T13:00:00.000Z","end":"2026-06-08T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-x7tbbanl7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T13:20:00.000Z","end":"2026-06-08T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.105Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-9vgkytak3","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T13:40:00.000Z","end":"2026-06-08T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-uuw5wvebj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T14:00:00.000Z","end":"2026-06-08T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-0mgiqy37k","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T14:20:00.000Z","end":"2026-06-08T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-dtv0334fo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T14:40:00.000Z","end":"2026-06-08T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-6ov2c0hp0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T15:00:00.000Z","end":"2026-06-08T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-d4kyssxoo","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T15:20:00.000Z","end":"2026-06-08T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-xgf9gqp28","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T15:40:00.000Z","end":"2026-06-08T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-hja84i9aw","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T16:00:00.000Z","end":"2026-06-08T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.051Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-dau7p148x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T16:20:00.000Z","end":"2026-06-08T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.017Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-8py6xizcc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T16:40:00.000Z","end":"2026-06-08T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-4qop5b8hj","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T17:00:00.000Z","end":"2026-06-08T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.086Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-awy7un0vb","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T17:20:00.000Z","end":"2026-06-08T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-ydphpmvvr","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T17:40:00.000Z","end":"2026-06-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-qzm71lbe8","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T18:00:00.000Z","end":"2026-06-08T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-mw041u649","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T18:20:00.000Z","end":"2026-06-08T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.024Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-gu3w8yi5x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T18:40:00.000Z","end":"2026-06-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.121Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-5j19xaqed","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T19:00:00.000Z","end":"2026-06-08T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-bfmboeu29","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T19:20:00.000Z","end":"2026-06-08T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-9l7q8z4vx","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T19:40:00.000Z","end":"2026-06-08T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-8y4avulti","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T20:00:00.000Z","end":"2026-06-08T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.110Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-s0smqd1ib","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-08T20:20:00.000Z","end":"2026-06-08T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.016Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-5yvlggo5x","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-08T20:40:00.000Z","end":"2026-06-08T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-vybnved25","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T12:00:00.000Z","end":"2026-06-09T12:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.053Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-5k17s4z70","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T12:20:00.000Z","end":"2026-06-09T12:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.636Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085636-fnp8ifmv5","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T12:40:00.000Z","end":"2026-06-09T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.014Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-ey4beu676","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T13:00:00.000Z","end":"2026-06-09T13:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-cmv9ytev1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T13:20:00.000Z","end":"2026-06-09T13:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-7hb3uzzvl","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T13:40:00.000Z","end":"2026-06-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.107Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-er90qwg8w","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T14:00:00.000Z","end":"2026-06-09T14:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.026Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-q9v0z1vp6","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T14:20:00.000Z","end":"2026-06-09T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-uqixg3b09","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T14:40:00.000Z","end":"2026-06-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.104Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-4au917h2d","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T15:00:00.000Z","end":"2026-06-09T15:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.035Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-fh8a92ku0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T15:20:00.000Z","end":"2026-06-09T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-lovt819su","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T15:40:00.000Z","end":"2026-06-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-5b7b91cb0","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T16:00:00.000Z","end":"2026-06-09T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.125Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-g0eopnxud","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T16:20:00.000Z","end":"2026-06-09T16:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-kr68iq7xc","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T16:40:00.000Z","end":"2026-06-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-5rtcj0k00","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T17:00:00.000Z","end":"2026-06-09T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-4v8o2mwbd","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T17:20:00.000Z","end":"2026-06-09T17:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-xkw6njgh1","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T17:40:00.000Z","end":"2026-06-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-5q3mubsmf","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T18:00:00.000Z","end":"2026-06-09T18:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-3jscrjq3n","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T18:20:00.000Z","end":"2026-06-09T18:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.025Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-3u8cagnfu","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T18:40:00.000Z","end":"2026-06-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.043Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-qhf66wij4","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T19:00:00.000Z","end":"2026-06-09T19:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-ek4dh208o","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T19:20:00.000Z","end":"2026-06-09T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.098Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-78s061ov9","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T19:40:00.000Z","end":"2026-06-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.018Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-peiscw32a","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T20:00:00.000Z","end":"2026-06-09T20:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-5pzt8uba7","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"free","start":"2026-06-09T20:20:00.000Z","end":"2026-06-09T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-hxkev708p","resource_type":"Slot","schedule_id":"1765517085502-042iamhtf","status":"busy","start":"2026-06-09T20:40:00.000Z","end":"2026-06-09T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Family Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.030Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-7g93bf325","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T14:00:00.000Z","end":"2025-12-12T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085637-i6row0gy6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T14:25:00.000Z","end":"2025-12-12T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.637Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-shil4iw4j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T14:50:00.000Z","end":"2025-12-12T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-h0p4fr1b4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T15:15:00.000Z","end":"2025-12-12T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-sebk91ytx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T15:40:00.000Z","end":"2025-12-12T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-gsnje8ohu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T16:05:00.000Z","end":"2025-12-12T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-6k7tlj6ot","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T16:30:00.000Z","end":"2025-12-12T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-ex526zizx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T16:55:00.000Z","end":"2025-12-12T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-xc9ese6mo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T17:20:00.000Z","end":"2025-12-12T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-yk6xyme8m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T17:45:00.000Z","end":"2025-12-12T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-5hh9pm6p9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T18:10:00.000Z","end":"2025-12-12T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-xboy2nrl8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T18:35:00.000Z","end":"2025-12-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-r71iwhepu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T19:00:00.000Z","end":"2025-12-12T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-c0z4zjh4k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T19:25:00.000Z","end":"2025-12-12T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-511jdmd1v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T19:50:00.000Z","end":"2025-12-12T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-aecxnt6j4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T20:15:00.000Z","end":"2025-12-12T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-m56hurej6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T20:40:00.000Z","end":"2025-12-12T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-xbiflrz3m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-12T21:05:00.000Z","end":"2025-12-12T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-rej0kr22w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T21:30:00.000Z","end":"2025-12-12T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-ce3pz2pam","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T21:55:00.000Z","end":"2025-12-12T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-7x7tu5e2u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-12T22:20:00.000Z","end":"2025-12-12T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-wwxskeaqx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T14:00:00.000Z","end":"2025-12-15T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-rq2vjfxty","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T14:25:00.000Z","end":"2025-12-15T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-jfc9dhvuq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T14:50:00.000Z","end":"2025-12-15T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-ekwhwagjt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T15:15:00.000Z","end":"2025-12-15T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-wulsund22","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T15:40:00.000Z","end":"2025-12-15T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-pfbasb4no","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T16:05:00.000Z","end":"2025-12-15T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-4cdpu80ti","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T16:30:00.000Z","end":"2025-12-15T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-fqmo0h0vq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T16:55:00.000Z","end":"2025-12-15T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-w1flbjksy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T17:20:00.000Z","end":"2025-12-15T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-u67k0j1vj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T17:45:00.000Z","end":"2025-12-15T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-fnq9oua30","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T18:10:00.000Z","end":"2025-12-15T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-0uobzmpli","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T18:35:00.000Z","end":"2025-12-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-o5q8nqo3u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T19:00:00.000Z","end":"2025-12-15T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-w7t3s5c2n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T19:25:00.000Z","end":"2025-12-15T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-wom10mepv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T19:50:00.000Z","end":"2025-12-15T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.638Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085638-55r9cxk8y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T20:15:00.000Z","end":"2025-12-15T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-kjmkt38yy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T20:40:00.000Z","end":"2025-12-15T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-i63z6b6um","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-15T21:05:00.000Z","end":"2025-12-15T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-uwju05iw5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T21:30:00.000Z","end":"2025-12-15T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-4tro3hdgf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T21:55:00.000Z","end":"2025-12-15T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-quc5kucwg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-15T22:20:00.000Z","end":"2025-12-15T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-o23dfqnjn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-16T14:00:00.000Z","end":"2025-12-16T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-6t7fgd0q9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T14:25:00.000Z","end":"2025-12-16T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-rborjybve","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T14:50:00.000Z","end":"2025-12-16T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-1rlqrqve6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T15:15:00.000Z","end":"2025-12-16T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-7rh03vs1o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T15:40:00.000Z","end":"2025-12-16T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-7zr20mfv2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T16:05:00.000Z","end":"2025-12-16T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-my1izg4bb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T16:30:00.000Z","end":"2025-12-16T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-14gkgp0po","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-16T16:55:00.000Z","end":"2025-12-16T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-ej0duoow4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T17:20:00.000Z","end":"2025-12-16T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-4quhze0ml","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-16T17:45:00.000Z","end":"2025-12-16T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-17fwymhgt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-16T18:10:00.000Z","end":"2025-12-16T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-f4hejeiix","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T18:35:00.000Z","end":"2025-12-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-1o0o0gday","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-16T19:00:00.000Z","end":"2025-12-16T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-gwf1k6sg8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T19:25:00.000Z","end":"2025-12-16T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-doavmka76","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-16T19:50:00.000Z","end":"2025-12-16T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-a11eex4cu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T20:15:00.000Z","end":"2025-12-16T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-4zpsp88oc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-16T20:40:00.000Z","end":"2025-12-16T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-jklmbkhhv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-16T21:05:00.000Z","end":"2025-12-16T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-dekcz0pjl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T21:30:00.000Z","end":"2025-12-16T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-hst9mlynl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T21:55:00.000Z","end":"2025-12-16T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-nch2ls757","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-16T22:20:00.000Z","end":"2025-12-16T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-zwmg675yw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T14:00:00.000Z","end":"2025-12-17T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-l722cf6pz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T14:25:00.000Z","end":"2025-12-17T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-05ut8p3jj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T14:50:00.000Z","end":"2025-12-17T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085639-uxlhfoq0n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T15:15:00.000Z","end":"2025-12-17T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.639Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-wiv0j2fe2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T15:40:00.000Z","end":"2025-12-17T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.640Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-mlsggnhyt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T16:05:00.000Z","end":"2025-12-17T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.640Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-oovdgxh1q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T16:30:00.000Z","end":"2025-12-17T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.640Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-v0reyttrh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T16:55:00.000Z","end":"2025-12-17T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-04kyzlrak","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T17:20:00.000Z","end":"2025-12-17T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.640Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-sut3o3bsy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T17:45:00.000Z","end":"2025-12-17T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-nlp2b32cr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T18:10:00.000Z","end":"2025-12-17T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.640Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-eaa5cow02","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T18:35:00.000Z","end":"2025-12-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.640Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085640-edlxqdq8u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T19:00:00.000Z","end":"2025-12-17T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-1604t29mh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T19:25:00.000Z","end":"2025-12-17T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-ehirqa44h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T19:50:00.000Z","end":"2025-12-17T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.641Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-7a5p2r0wv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T20:15:00.000Z","end":"2025-12-17T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-1gmgsnopw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T20:40:00.000Z","end":"2025-12-17T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.641Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-i9q5d06wg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T21:05:00.000Z","end":"2025-12-17T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-cuijmuj94","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T21:30:00.000Z","end":"2025-12-17T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-83fb5u1hh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-17T21:55:00.000Z","end":"2025-12-17T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-sczl53sze","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-17T22:20:00.000Z","end":"2025-12-17T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.641Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-v9sctybmj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T14:00:00.000Z","end":"2025-12-18T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-s3086gmzp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T14:25:00.000Z","end":"2025-12-18T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-rqhz3v5yu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T14:50:00.000Z","end":"2025-12-18T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-yr77wnv8z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T15:15:00.000Z","end":"2025-12-18T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-kg6vu7rbg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T15:40:00.000Z","end":"2025-12-18T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.641Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-ci9mtg2m0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T16:05:00.000Z","end":"2025-12-18T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.641Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-qkfic0nvi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T16:30:00.000Z","end":"2025-12-18T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.641Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-7gw5m1bum","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T16:55:00.000Z","end":"2025-12-18T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085641-6ffct76x1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T17:20:00.000Z","end":"2025-12-18T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.641Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-50j9504o0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T17:45:00.000Z","end":"2025-12-18T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-h70xxt0gw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T18:10:00.000Z","end":"2025-12-18T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-8aiofig36","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T18:35:00.000Z","end":"2025-12-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-ve4dnll1e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T19:00:00.000Z","end":"2025-12-18T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-jhy2jihdc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T19:25:00.000Z","end":"2025-12-18T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-ep8y9k47u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T19:50:00.000Z","end":"2025-12-18T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-m6a8konsy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T20:15:00.000Z","end":"2025-12-18T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-x4pbfk6vs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T20:40:00.000Z","end":"2025-12-18T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-a7v6ywvfm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T21:05:00.000Z","end":"2025-12-18T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-61p6iuzor","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-18T21:30:00.000Z","end":"2025-12-18T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-gafnmdcpw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T21:55:00.000Z","end":"2025-12-18T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-pqrl2fywl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-18T22:20:00.000Z","end":"2025-12-18T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-tihv3i8vj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T14:00:00.000Z","end":"2025-12-19T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-s20vph0g1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-19T14:25:00.000Z","end":"2025-12-19T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-092c9oqde","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-19T14:50:00.000Z","end":"2025-12-19T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-f6hrylr6j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-19T15:15:00.000Z","end":"2025-12-19T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-0den2tyra","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T15:40:00.000Z","end":"2025-12-19T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-8hylhy2gt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T16:05:00.000Z","end":"2025-12-19T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-vlm2usqau","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T16:30:00.000Z","end":"2025-12-19T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-tbkdylcp8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T16:55:00.000Z","end":"2025-12-19T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-2uo8b3z1x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-19T17:20:00.000Z","end":"2025-12-19T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-88v7jcomo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T17:45:00.000Z","end":"2025-12-19T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-mnnpdt6wx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T18:10:00.000Z","end":"2025-12-19T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-lkup5e9pw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-19T18:35:00.000Z","end":"2025-12-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-ix6w2dh9y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T19:00:00.000Z","end":"2025-12-19T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.312Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-o8w99za7l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-19T19:25:00.000Z","end":"2025-12-19T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-39cjdnytw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T19:50:00.000Z","end":"2025-12-19T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-hq7ruov25","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T20:15:00.000Z","end":"2025-12-19T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-614k16vr2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T20:40:00.000Z","end":"2025-12-19T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-hs3a2m153","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-19T21:05:00.000Z","end":"2025-12-19T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-vkkcw2eq0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T21:30:00.000Z","end":"2025-12-19T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-sm33kmhq4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T21:55:00.000Z","end":"2025-12-19T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-nv8bgpma8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-19T22:20:00.000Z","end":"2025-12-19T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-sgwehlw71","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-22T14:00:00.000Z","end":"2025-12-22T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085642-pw38ifxox","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T14:25:00.000Z","end":"2025-12-22T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.642Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-cxqelwf4s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-22T14:50:00.000Z","end":"2025-12-22T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-f8nkp2o2t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-22T15:15:00.000Z","end":"2025-12-22T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-h6wbpz38w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T15:40:00.000Z","end":"2025-12-22T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-x5qk49vuu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T16:05:00.000Z","end":"2025-12-22T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-ivbd6yv2p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T16:30:00.000Z","end":"2025-12-22T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-7x06gt0bu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-22T16:55:00.000Z","end":"2025-12-22T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-qb29ybpag","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T17:20:00.000Z","end":"2025-12-22T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-0v4yti4oa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T17:45:00.000Z","end":"2025-12-22T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-iclf25k1v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T18:10:00.000Z","end":"2025-12-22T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-imeac6fsw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-22T18:35:00.000Z","end":"2025-12-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-3dzm4zqxt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T19:00:00.000Z","end":"2025-12-22T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-hzmqft6gg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-22T19:25:00.000Z","end":"2025-12-22T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-56frz30gh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T19:50:00.000Z","end":"2025-12-22T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-u1nselt3p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T20:15:00.000Z","end":"2025-12-22T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-omx5plydl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-22T20:40:00.000Z","end":"2025-12-22T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-4xogsew6w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T21:05:00.000Z","end":"2025-12-22T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-7vw6pt0g6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T21:30:00.000Z","end":"2025-12-22T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-hj14h6jnt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-22T21:55:00.000Z","end":"2025-12-22T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-wvyn606zz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-22T22:20:00.000Z","end":"2025-12-22T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-ldltrkn1k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T14:00:00.000Z","end":"2025-12-23T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-3sg8xscfj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T14:25:00.000Z","end":"2025-12-23T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-svwxxoink","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T14:50:00.000Z","end":"2025-12-23T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-q5719atwa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T15:15:00.000Z","end":"2025-12-23T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-lx13xoq3e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T15:40:00.000Z","end":"2025-12-23T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.219Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-wghpyzvuv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T16:05:00.000Z","end":"2025-12-23T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-fytt9327r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T16:30:00.000Z","end":"2025-12-23T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-o4ur2r6u4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T16:55:00.000Z","end":"2025-12-23T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-zolw6g6f0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T17:20:00.000Z","end":"2025-12-23T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-qhnsrylq6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T17:45:00.000Z","end":"2025-12-23T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-dcp2gzj70","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T18:10:00.000Z","end":"2025-12-23T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-2kzwq3trc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T18:35:00.000Z","end":"2025-12-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-tm09c49ht","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T19:00:00.000Z","end":"2025-12-23T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-cn07ex515","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T19:25:00.000Z","end":"2025-12-23T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-6rxi3ub77","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T19:50:00.000Z","end":"2025-12-23T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-ldv2ipgmd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T20:15:00.000Z","end":"2025-12-23T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085643-8oz97hg4c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T20:40:00.000Z","end":"2025-12-23T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.643Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-eor1unrqw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T21:05:00.000Z","end":"2025-12-23T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-jtiw5dfiq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-23T21:30:00.000Z","end":"2025-12-23T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-ko6pw35nz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T21:55:00.000Z","end":"2025-12-23T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-ffs4hp7j9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-23T22:20:00.000Z","end":"2025-12-23T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-cj3wj02c9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T14:00:00.000Z","end":"2025-12-24T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-rruiaky5h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T14:25:00.000Z","end":"2025-12-24T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-8xayzkxrg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T14:50:00.000Z","end":"2025-12-24T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-qojy4hvxk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T15:15:00.000Z","end":"2025-12-24T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-izcsolmz2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T15:40:00.000Z","end":"2025-12-24T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-gjxcqsoqj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T16:05:00.000Z","end":"2025-12-24T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-6m5aofcrx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T16:30:00.000Z","end":"2025-12-24T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-f7chwykk8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T16:55:00.000Z","end":"2025-12-24T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-kpg87j4kh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T17:20:00.000Z","end":"2025-12-24T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-0lx98r1lx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T17:45:00.000Z","end":"2025-12-24T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-5sh6hhi9a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T18:10:00.000Z","end":"2025-12-24T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-0xf3on5k5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T18:35:00.000Z","end":"2025-12-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.237Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-b5541arf4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T19:00:00.000Z","end":"2025-12-24T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-77xk8vgc8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T19:25:00.000Z","end":"2025-12-24T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-u6mch77rd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T19:50:00.000Z","end":"2025-12-24T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-s0w1y8axs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T20:15:00.000Z","end":"2025-12-24T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-pg1ixmomi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T20:40:00.000Z","end":"2025-12-24T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-d2te8q6eu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-24T21:05:00.000Z","end":"2025-12-24T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.644Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-fnhuds7ls","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T21:30:00.000Z","end":"2025-12-24T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085644-1gbsqdn4z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T21:55:00.000Z","end":"2025-12-24T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-86qppggyn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-24T22:20:00.000Z","end":"2025-12-24T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.300Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-tdkl23da0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T14:00:00.000Z","end":"2025-12-25T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.645Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-j50685sjx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T14:25:00.000Z","end":"2025-12-25T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-s0ie8prpe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T14:50:00.000Z","end":"2025-12-25T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-cf6zp0has","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T15:15:00.000Z","end":"2025-12-25T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-rq62pzxbr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T15:40:00.000Z","end":"2025-12-25T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-yvnlwnh48","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T16:05:00.000Z","end":"2025-12-25T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.645Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-6wgczdbzq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T16:30:00.000Z","end":"2025-12-25T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-c88c82bqy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T16:55:00.000Z","end":"2025-12-25T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.645Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-i6wvhh5hi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T17:20:00.000Z","end":"2025-12-25T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-vos5yg7m4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T17:45:00.000Z","end":"2025-12-25T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.645Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-pl0kn4cik","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T18:10:00.000Z","end":"2025-12-25T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.645Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085645-id6vg5pdd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T18:35:00.000Z","end":"2025-12-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-zj5zybnxt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T19:00:00.000Z","end":"2025-12-25T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.646Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-9nr9z119h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T19:25:00.000Z","end":"2025-12-25T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-cyfpzct8p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T19:50:00.000Z","end":"2025-12-25T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.646Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-nozgkjjjf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T20:15:00.000Z","end":"2025-12-25T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-xld4l09bg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T20:40:00.000Z","end":"2025-12-25T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.646Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-ts2yt5qwq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-25T21:05:00.000Z","end":"2025-12-25T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.646Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-e0yx7b2g5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T21:30:00.000Z","end":"2025-12-25T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-c6ef03m43","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T21:55:00.000Z","end":"2025-12-25T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-hzbe9ceky","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-25T22:20:00.000Z","end":"2025-12-25T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-znky0iesv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T14:00:00.000Z","end":"2025-12-26T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-wveboupje","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T14:25:00.000Z","end":"2025-12-26T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-law8p1get","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T14:50:00.000Z","end":"2025-12-26T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-zgpl3tsg6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T15:15:00.000Z","end":"2025-12-26T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-bspk1z1au","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-26T15:40:00.000Z","end":"2025-12-26T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.646Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-mc0iadys3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-26T16:05:00.000Z","end":"2025-12-26T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.646Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-845g8j7dp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-26T16:30:00.000Z","end":"2025-12-26T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.646Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-8vvzwqt9r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T16:55:00.000Z","end":"2025-12-26T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085646-rppx5cfa2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T17:20:00.000Z","end":"2025-12-26T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-ktplcycv3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-26T17:45:00.000Z","end":"2025-12-26T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-3l1ia3y06","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-26T18:10:00.000Z","end":"2025-12-26T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-35ritawun","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-26T18:35:00.000Z","end":"2025-12-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-67219wzio","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T19:00:00.000Z","end":"2025-12-26T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-uw169kvgg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T19:25:00.000Z","end":"2025-12-26T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-aq383ryia","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-26T19:50:00.000Z","end":"2025-12-26T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-vtbdtzz6w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T20:15:00.000Z","end":"2025-12-26T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-3nvx4g0e7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T20:40:00.000Z","end":"2025-12-26T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-1okkxh2bv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T21:05:00.000Z","end":"2025-12-26T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-d4omsngiv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T21:30:00.000Z","end":"2025-12-26T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-v3jlku9f5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-26T21:55:00.000Z","end":"2025-12-26T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-27z5m6p9o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-26T22:20:00.000Z","end":"2025-12-26T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-mpwondl2v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-29T14:00:00.000Z","end":"2025-12-29T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-h3i99tozf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-29T14:25:00.000Z","end":"2025-12-29T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-89x5987ke","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T14:50:00.000Z","end":"2025-12-29T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-kjghg7fzd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T15:15:00.000Z","end":"2025-12-29T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-g3l6kkwwt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-29T15:40:00.000Z","end":"2025-12-29T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-pn7trdiyc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T16:05:00.000Z","end":"2025-12-29T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-y78hkpmz0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T16:30:00.000Z","end":"2025-12-29T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-zaox5ls9j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T16:55:00.000Z","end":"2025-12-29T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-ohniv8frx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T17:20:00.000Z","end":"2025-12-29T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-h025atpzh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T17:45:00.000Z","end":"2025-12-29T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-q93o60kus","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T18:10:00.000Z","end":"2025-12-29T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-7oiekq0bc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-29T18:35:00.000Z","end":"2025-12-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-id6do8677","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T19:00:00.000Z","end":"2025-12-29T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-otri8s31h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T19:25:00.000Z","end":"2025-12-29T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-obt8iumdz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T19:50:00.000Z","end":"2025-12-29T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-eqzjney4l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-29T20:15:00.000Z","end":"2025-12-29T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-e4dp1f5qu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-29T20:40:00.000Z","end":"2025-12-29T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085647-f06i2s2b2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-29T21:05:00.000Z","end":"2025-12-29T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.647Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085648-4w97o7srw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T21:30:00.000Z","end":"2025-12-29T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-8iigj2j5z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-29T21:55:00.000Z","end":"2025-12-29T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-ihrkhprx7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-29T22:20:00.000Z","end":"2025-12-29T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-5txre0w69","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T14:00:00.000Z","end":"2025-12-30T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-736m4mk2f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T14:25:00.000Z","end":"2025-12-30T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-kz045t9w6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T14:50:00.000Z","end":"2025-12-30T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-qprnu1d8b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T15:15:00.000Z","end":"2025-12-30T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-x8xn5ac5y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T15:40:00.000Z","end":"2025-12-30T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-4b7fbxe5q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T16:05:00.000Z","end":"2025-12-30T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-5gm2cz1x1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-30T16:30:00.000Z","end":"2025-12-30T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-kdckaea1s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T16:55:00.000Z","end":"2025-12-30T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-dgqaxdkfk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T17:20:00.000Z","end":"2025-12-30T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-fwvaxf52m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T17:45:00.000Z","end":"2025-12-30T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-1jv73a542","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-30T18:10:00.000Z","end":"2025-12-30T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-sl83sayau","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T18:35:00.000Z","end":"2025-12-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-42fw8a9kd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T19:00:00.000Z","end":"2025-12-30T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-ynzdfqyzg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T19:25:00.000Z","end":"2025-12-30T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-jzau3n5pz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-30T19:50:00.000Z","end":"2025-12-30T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-dc2r663j4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T20:15:00.000Z","end":"2025-12-30T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-wlz8hblsu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-30T20:40:00.000Z","end":"2025-12-30T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-ul5hglqsv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T21:05:00.000Z","end":"2025-12-30T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-pl40x9yy3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-30T21:30:00.000Z","end":"2025-12-30T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-ia844sgi6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T21:55:00.000Z","end":"2025-12-30T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-r4x9sgznx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-30T22:20:00.000Z","end":"2025-12-30T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-18kd00ywa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-31T14:00:00.000Z","end":"2025-12-31T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-v7h9u7vpp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T14:25:00.000Z","end":"2025-12-31T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-r86usdqv6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T14:50:00.000Z","end":"2025-12-31T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-2a2g65auc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T15:15:00.000Z","end":"2025-12-31T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-o13fmpjnk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T15:40:00.000Z","end":"2025-12-31T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-bfr0917q4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T16:05:00.000Z","end":"2025-12-31T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-1sf85tt4m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T16:30:00.000Z","end":"2025-12-31T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085649-pa1u8es1f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T16:55:00.000Z","end":"2025-12-31T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.649Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-wf3dfzsmh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T17:20:00.000Z","end":"2025-12-31T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-e41lv0nnf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-31T17:45:00.000Z","end":"2025-12-31T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-6xp6bzd00","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T18:10:00.000Z","end":"2025-12-31T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-rbrox6h59","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-31T18:35:00.000Z","end":"2025-12-31T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-bl96n14yu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T19:00:00.000Z","end":"2025-12-31T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-a7k7ueg9l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T19:25:00.000Z","end":"2025-12-31T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-cpyn9m3mv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T19:50:00.000Z","end":"2025-12-31T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-di296j1do","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-31T20:15:00.000Z","end":"2025-12-31T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-65ud36vem","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T20:40:00.000Z","end":"2025-12-31T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-6e5mpfftr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-31T21:05:00.000Z","end":"2025-12-31T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-38120kvvi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-31T21:30:00.000Z","end":"2025-12-31T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-ip7azm7ss","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2025-12-31T21:55:00.000Z","end":"2025-12-31T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-vtdhiih17","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2025-12-31T22:20:00.000Z","end":"2025-12-31T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-z3nhuaj3x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-01T14:00:00.000Z","end":"2026-01-01T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-mlt4ppv94","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T14:25:00.000Z","end":"2026-01-01T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-bax8th6i1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T14:50:00.000Z","end":"2026-01-01T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-vw4d97psk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-01T15:15:00.000Z","end":"2026-01-01T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-vtbu0t4o2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T15:40:00.000Z","end":"2026-01-01T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-7e6dbhucw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-01T16:05:00.000Z","end":"2026-01-01T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-i3tfnblz8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T16:30:00.000Z","end":"2026-01-01T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-05cdcp0b2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T16:55:00.000Z","end":"2026-01-01T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-3hzdgzri6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-01T17:20:00.000Z","end":"2026-01-01T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-c6qfde3x9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T17:45:00.000Z","end":"2026-01-01T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-95qc6uel2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T18:10:00.000Z","end":"2026-01-01T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-0n2wjw3cr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T18:35:00.000Z","end":"2026-01-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-cqlxsbnw3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T19:00:00.000Z","end":"2026-01-01T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-wrdxvx8ow","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-01T19:25:00.000Z","end":"2026-01-01T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-v0sj4tqxg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-01T19:50:00.000Z","end":"2026-01-01T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-8czodn3tb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-01T20:15:00.000Z","end":"2026-01-01T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-bcteisqis","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T20:40:00.000Z","end":"2026-01-01T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-043ra7dch","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T21:05:00.000Z","end":"2026-01-01T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-nc7kjun67","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T21:30:00.000Z","end":"2026-01-01T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.650Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085650-scwus589o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-01T21:55:00.000Z","end":"2026-01-01T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-1rw72l0jr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-01T22:20:00.000Z","end":"2026-01-01T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-rxbuir53g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T14:00:00.000Z","end":"2026-01-02T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-x6qo7ocrl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-02T14:25:00.000Z","end":"2026-01-02T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-2knx3l1ap","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-02T14:50:00.000Z","end":"2026-01-02T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-z2614czag","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T15:15:00.000Z","end":"2026-01-02T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-kapk5q0hp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T15:40:00.000Z","end":"2026-01-02T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-2ffhw61u4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T16:05:00.000Z","end":"2026-01-02T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-khcjez5x3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-02T16:30:00.000Z","end":"2026-01-02T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-4r2460wtu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T16:55:00.000Z","end":"2026-01-02T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-e61y4k8jn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T17:20:00.000Z","end":"2026-01-02T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-v1sgtrbbx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-02T17:45:00.000Z","end":"2026-01-02T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-4dryyh4xl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T18:10:00.000Z","end":"2026-01-02T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-9vj3zse6l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T18:35:00.000Z","end":"2026-01-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-83e90m4e9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T19:00:00.000Z","end":"2026-01-02T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-mfdhc5uii","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T19:25:00.000Z","end":"2026-01-02T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-gxi9wpfnd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T19:50:00.000Z","end":"2026-01-02T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-xgar5zgc6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-02T20:15:00.000Z","end":"2026-01-02T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-yjypeuyci","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T20:40:00.000Z","end":"2026-01-02T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-lhc9iirya","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T21:05:00.000Z","end":"2026-01-02T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-vgob7bivb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-02T21:30:00.000Z","end":"2026-01-02T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-vpp86q6rz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-02T21:55:00.000Z","end":"2026-01-02T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-wl5lek8gm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-02T22:20:00.000Z","end":"2026-01-02T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-jjt333ywh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T14:00:00.000Z","end":"2026-01-05T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-m6ssf08ad","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T14:25:00.000Z","end":"2026-01-05T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-sm78uijs2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T14:50:00.000Z","end":"2026-01-05T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-k4kti8omp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T15:15:00.000Z","end":"2026-01-05T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-yxaz6o0pj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T15:40:00.000Z","end":"2026-01-05T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-fb56fzpz4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T16:05:00.000Z","end":"2026-01-05T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-r0ph3m9fu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T16:30:00.000Z","end":"2026-01-05T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.289Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-7h493iqqg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T16:55:00.000Z","end":"2026-01-05T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-rkbncg7su","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T17:20:00.000Z","end":"2026-01-05T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-e4xp1jvv0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T17:45:00.000Z","end":"2026-01-05T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-idn4d8xmn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T18:10:00.000Z","end":"2026-01-05T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.651Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085651-cdzinr7pa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T18:35:00.000Z","end":"2026-01-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-8fd1t57xw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T19:00:00.000Z","end":"2026-01-05T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-qer13wjqu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T19:25:00.000Z","end":"2026-01-05T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-18l9hidp6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T19:50:00.000Z","end":"2026-01-05T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-1so12qocq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T20:15:00.000Z","end":"2026-01-05T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-12dtich9b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T20:40:00.000Z","end":"2026-01-05T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-m8lwdzqw9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T21:05:00.000Z","end":"2026-01-05T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-q36qgm814","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-05T21:30:00.000Z","end":"2026-01-05T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-crz1nk1iy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T21:55:00.000Z","end":"2026-01-05T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-n6s9hgpmm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-05T22:20:00.000Z","end":"2026-01-05T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-m7llh4pf9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T14:00:00.000Z","end":"2026-01-06T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-n6pq8zgoa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T14:25:00.000Z","end":"2026-01-06T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-hhit8tpe3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T14:50:00.000Z","end":"2026-01-06T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-934ga955j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T15:15:00.000Z","end":"2026-01-06T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-3op6ln1c7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T15:40:00.000Z","end":"2026-01-06T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-c432ujipf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T16:05:00.000Z","end":"2026-01-06T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-5jbs1no52","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T16:30:00.000Z","end":"2026-01-06T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-z8v9umhbl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T16:55:00.000Z","end":"2026-01-06T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-lsuqhy1dy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T17:20:00.000Z","end":"2026-01-06T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-hc2ams1ay","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T17:45:00.000Z","end":"2026-01-06T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-b7zl9bcng","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T18:10:00.000Z","end":"2026-01-06T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-xid4cj4xm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T18:35:00.000Z","end":"2026-01-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-9zyq5fa14","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T19:00:00.000Z","end":"2026-01-06T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-64nuun0sy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T19:25:00.000Z","end":"2026-01-06T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-l8kgzkre8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T19:50:00.000Z","end":"2026-01-06T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-bvqttutnv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T20:15:00.000Z","end":"2026-01-06T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-781sb55mo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T20:40:00.000Z","end":"2026-01-06T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-2w29egwvq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T21:05:00.000Z","end":"2026-01-06T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-a6jh2jhiy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-06T21:30:00.000Z","end":"2026-01-06T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-c8emrg787","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T21:55:00.000Z","end":"2026-01-06T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-9iddxe15y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-06T22:20:00.000Z","end":"2026-01-06T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-wli4qe4hw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-07T14:00:00.000Z","end":"2026-01-07T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-n2ji861wd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-07T14:25:00.000Z","end":"2026-01-07T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.652Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-jt2g2n85j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T14:50:00.000Z","end":"2026-01-07T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-uvxrjhoay","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T15:15:00.000Z","end":"2026-01-07T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-qg74aidl1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T15:40:00.000Z","end":"2026-01-07T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-n6s02akaq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T16:05:00.000Z","end":"2026-01-07T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085652-7f3j24vae","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T16:30:00.000Z","end":"2026-01-07T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-9bllpxvda","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T16:55:00.000Z","end":"2026-01-07T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-iny3ld8fn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T17:20:00.000Z","end":"2026-01-07T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-a7yirmc6p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-07T17:45:00.000Z","end":"2026-01-07T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-kd8v2uq6u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T18:10:00.000Z","end":"2026-01-07T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-06besx9zu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T18:35:00.000Z","end":"2026-01-07T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-b48iesryb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T19:00:00.000Z","end":"2026-01-07T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-n2f5tzt5w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T19:25:00.000Z","end":"2026-01-07T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-c0zyvj8l4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-07T19:50:00.000Z","end":"2026-01-07T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-8svjy64ug","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-07T20:15:00.000Z","end":"2026-01-07T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-m4gs7jqea","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-07T20:40:00.000Z","end":"2026-01-07T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-stnh1vtvh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T21:05:00.000Z","end":"2026-01-07T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-3vj37oezu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T21:30:00.000Z","end":"2026-01-07T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-6p9uo5k4m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T21:55:00.000Z","end":"2026-01-07T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-n09htch4c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-07T22:20:00.000Z","end":"2026-01-07T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-tcjqgijyf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T14:00:00.000Z","end":"2026-01-08T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-ef3lee8w3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T14:25:00.000Z","end":"2026-01-08T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-5w86xzcbt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T14:50:00.000Z","end":"2026-01-08T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-rcqcx6pzh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T15:15:00.000Z","end":"2026-01-08T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-ufeqtx7bn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T15:40:00.000Z","end":"2026-01-08T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-gggupqjl0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T16:05:00.000Z","end":"2026-01-08T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-7vwvpyee7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T16:30:00.000Z","end":"2026-01-08T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-8rgf78zb6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-08T16:55:00.000Z","end":"2026-01-08T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-mysrvuvx7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T17:20:00.000Z","end":"2026-01-08T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-gy7ur3d9d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-08T17:45:00.000Z","end":"2026-01-08T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-iuhx1wc29","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T18:10:00.000Z","end":"2026-01-08T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-x6ch0ytd9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-08T18:35:00.000Z","end":"2026-01-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-ks8ubw7t2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-08T19:00:00.000Z","end":"2026-01-08T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-8ydg2tmo2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T19:25:00.000Z","end":"2026-01-08T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-yznh4vicq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-08T19:50:00.000Z","end":"2026-01-08T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.653Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085653-yn8skjov5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T20:15:00.000Z","end":"2026-01-08T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-i7wza6so1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T20:40:00.000Z","end":"2026-01-08T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-4wkbk0dru","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-08T21:05:00.000Z","end":"2026-01-08T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-je6q6xybc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-08T21:30:00.000Z","end":"2026-01-08T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-mf2ecpnwa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-08T21:55:00.000Z","end":"2026-01-08T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-t813jw8ah","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-08T22:20:00.000Z","end":"2026-01-08T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-leg1qly26","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T14:00:00.000Z","end":"2026-01-09T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-c070cq1s0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T14:25:00.000Z","end":"2026-01-09T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-g55682c6y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T14:50:00.000Z","end":"2026-01-09T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-ahhqodjz9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T15:15:00.000Z","end":"2026-01-09T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-z15a7dq28","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T15:40:00.000Z","end":"2026-01-09T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-h3vs0ej29","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-09T16:05:00.000Z","end":"2026-01-09T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-tgu54as06","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-09T16:30:00.000Z","end":"2026-01-09T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-8mrts5vtk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-09T16:55:00.000Z","end":"2026-01-09T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-a3c9n0gmh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T17:20:00.000Z","end":"2026-01-09T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-hg3z4r7hv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T17:45:00.000Z","end":"2026-01-09T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-yhefr3lkz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-09T18:10:00.000Z","end":"2026-01-09T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-9ky5dq7i4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-09T18:35:00.000Z","end":"2026-01-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-l2nfyy4jq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T19:00:00.000Z","end":"2026-01-09T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-bfvj5fxin","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T19:25:00.000Z","end":"2026-01-09T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-k4h6ujjjb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T19:50:00.000Z","end":"2026-01-09T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-0ae4yomd6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-09T20:15:00.000Z","end":"2026-01-09T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-3odd0be71","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T20:40:00.000Z","end":"2026-01-09T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-pldpce9qk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-09T21:05:00.000Z","end":"2026-01-09T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-3s0v68frc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T21:30:00.000Z","end":"2026-01-09T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.325Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-t1w4hjkqk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-09T21:55:00.000Z","end":"2026-01-09T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-nubtqow57","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-09T22:20:00.000Z","end":"2026-01-09T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-6ullxinyy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T14:00:00.000Z","end":"2026-01-12T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-xiups975t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T14:25:00.000Z","end":"2026-01-12T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-8sy2gq8wv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T14:50:00.000Z","end":"2026-01-12T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-8hm742vhh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T15:15:00.000Z","end":"2026-01-12T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-57kqtebn7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T15:40:00.000Z","end":"2026-01-12T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-14ux3aevp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T16:05:00.000Z","end":"2026-01-12T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-pa99cvwoi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T16:30:00.000Z","end":"2026-01-12T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085655-rwyuhknec","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T16:55:00.000Z","end":"2026-01-12T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.655Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-dp4xnc2nj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T17:20:00.000Z","end":"2026-01-12T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-8qydp5rm3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T17:45:00.000Z","end":"2026-01-12T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-kx3764wiw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T18:10:00.000Z","end":"2026-01-12T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-9pm68bdnc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T18:35:00.000Z","end":"2026-01-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-ktt0v8egn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T19:00:00.000Z","end":"2026-01-12T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-7mchln7u8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T19:25:00.000Z","end":"2026-01-12T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-185fgwua4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T19:50:00.000Z","end":"2026-01-12T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-5wacq3pvx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T20:15:00.000Z","end":"2026-01-12T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-wg3q7fe1e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T20:40:00.000Z","end":"2026-01-12T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-jkik9i5sh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T21:05:00.000Z","end":"2026-01-12T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-1r31w0jfl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T21:30:00.000Z","end":"2026-01-12T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-at4hr4w6h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-12T21:55:00.000Z","end":"2026-01-12T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-ov5t2jhfy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-12T22:20:00.000Z","end":"2026-01-12T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-s3urpbq1s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T14:00:00.000Z","end":"2026-01-13T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-wqycfogd6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-13T14:25:00.000Z","end":"2026-01-13T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-vehknk7na","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T14:50:00.000Z","end":"2026-01-13T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-u7qechf09","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T15:15:00.000Z","end":"2026-01-13T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-gcgsocq9i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-13T15:40:00.000Z","end":"2026-01-13T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-5gvlonuej","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T16:05:00.000Z","end":"2026-01-13T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-5wlso18m9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T16:30:00.000Z","end":"2026-01-13T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-t3p2ss08w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-13T16:55:00.000Z","end":"2026-01-13T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-cxzrpa0fm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T17:20:00.000Z","end":"2026-01-13T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-sonxqtrmu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T17:45:00.000Z","end":"2026-01-13T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-bm60suejn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-13T18:10:00.000Z","end":"2026-01-13T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-uci0775se","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-13T18:35:00.000Z","end":"2026-01-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-1k74ggju3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T19:00:00.000Z","end":"2026-01-13T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-8tg3ec4nk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-13T19:25:00.000Z","end":"2026-01-13T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-czx495ts7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T19:50:00.000Z","end":"2026-01-13T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-4h2vjwd0d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T20:15:00.000Z","end":"2026-01-13T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-2w1uyokc0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-13T20:40:00.000Z","end":"2026-01-13T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-8m7tamrg7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T21:05:00.000Z","end":"2026-01-13T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-7pw7ficcq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T21:30:00.000Z","end":"2026-01-13T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-263y6fw5f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-13T21:55:00.000Z","end":"2026-01-13T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.656Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085656-4a3vw85w0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-13T22:20:00.000Z","end":"2026-01-13T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-n1n0uide6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T14:00:00.000Z","end":"2026-01-14T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-if9rdcz54","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T14:25:00.000Z","end":"2026-01-14T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-hr9gavndv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T14:50:00.000Z","end":"2026-01-14T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-kdkskrmqe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T15:15:00.000Z","end":"2026-01-14T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-7ts827clt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T15:40:00.000Z","end":"2026-01-14T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-5nfuoprfy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T16:05:00.000Z","end":"2026-01-14T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-g5n1hgu38","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T16:30:00.000Z","end":"2026-01-14T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-k9wb9qmes","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T16:55:00.000Z","end":"2026-01-14T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-e20ik16gs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T17:20:00.000Z","end":"2026-01-14T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-h10hrnbhk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T17:45:00.000Z","end":"2026-01-14T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-2m9peij31","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T18:10:00.000Z","end":"2026-01-14T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-dou276fhn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T18:35:00.000Z","end":"2026-01-14T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-q493jvt37","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T19:00:00.000Z","end":"2026-01-14T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-026zz5zci","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T19:25:00.000Z","end":"2026-01-14T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-cwcz58wce","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T19:50:00.000Z","end":"2026-01-14T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-ibsqm65tt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T20:15:00.000Z","end":"2026-01-14T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-yv1n66ony","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T20:40:00.000Z","end":"2026-01-14T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-g0lruckav","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T21:05:00.000Z","end":"2026-01-14T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-5xi7tlpng","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-14T21:30:00.000Z","end":"2026-01-14T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-iw2qnr071","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T21:55:00.000Z","end":"2026-01-14T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-xwgvo0fy2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-14T22:20:00.000Z","end":"2026-01-14T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-sty252hat","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-15T14:00:00.000Z","end":"2026-01-15T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-i1msqfwal","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-15T14:25:00.000Z","end":"2026-01-15T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-24gl0leqs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T14:50:00.000Z","end":"2026-01-15T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-v27vspxxk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T15:15:00.000Z","end":"2026-01-15T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-p62zq1a2r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T15:40:00.000Z","end":"2026-01-15T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-4no3y6be7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T16:05:00.000Z","end":"2026-01-15T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-voi4e38vr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-15T16:30:00.000Z","end":"2026-01-15T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.657Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-r0wdwyhjo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T16:55:00.000Z","end":"2026-01-15T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-gbq9rnezz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T17:20:00.000Z","end":"2026-01-15T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-lhhzhc01k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T17:45:00.000Z","end":"2026-01-15T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085657-7k0qznl13","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T18:10:00.000Z","end":"2026-01-15T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-gkh11tv1e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T18:35:00.000Z","end":"2026-01-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-vahnjp40u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T19:00:00.000Z","end":"2026-01-15T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-sq9oatii7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T19:25:00.000Z","end":"2026-01-15T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-hwvwc0scg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-15T19:50:00.000Z","end":"2026-01-15T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-l4w1fz2nb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T20:15:00.000Z","end":"2026-01-15T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-jz8gt22kk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T20:40:00.000Z","end":"2026-01-15T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-mmd1bj8f5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-15T21:05:00.000Z","end":"2026-01-15T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-jefwv2ogo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T21:30:00.000Z","end":"2026-01-15T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-pyem5tg5m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T21:55:00.000Z","end":"2026-01-15T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-bcrr6sf52","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-15T22:20:00.000Z","end":"2026-01-15T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-j1z6sssb5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T14:00:00.000Z","end":"2026-01-16T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-s1yahlqvt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T14:25:00.000Z","end":"2026-01-16T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-knwkr1brr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T14:50:00.000Z","end":"2026-01-16T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-3g4dhpta1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T15:15:00.000Z","end":"2026-01-16T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-nbs7kma0e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T15:40:00.000Z","end":"2026-01-16T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-4tpcmryye","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T16:05:00.000Z","end":"2026-01-16T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-2amahhaux","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T16:30:00.000Z","end":"2026-01-16T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-i2nd7mgpz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T16:55:00.000Z","end":"2026-01-16T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-5svtvkgvf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T17:20:00.000Z","end":"2026-01-16T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-z1pej8eoz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T17:45:00.000Z","end":"2026-01-16T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-dmx4j2obt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T18:10:00.000Z","end":"2026-01-16T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-np35tk971","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T18:35:00.000Z","end":"2026-01-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-vt3xo6pkd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T19:00:00.000Z","end":"2026-01-16T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-eu0o0nd41","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T19:25:00.000Z","end":"2026-01-16T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-mp9q25jvm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T19:50:00.000Z","end":"2026-01-16T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-t2ipxlglq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T20:15:00.000Z","end":"2026-01-16T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-9ujz3fwzq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T20:40:00.000Z","end":"2026-01-16T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-1vyw99fua","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T21:05:00.000Z","end":"2026-01-16T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-do5wn5okb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T21:30:00.000Z","end":"2026-01-16T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-27c01ibhs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-16T21:55:00.000Z","end":"2026-01-16T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085658-bt6j5bgtc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-16T22:20:00.000Z","end":"2026-01-16T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.658Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-tvqocifqd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T14:00:00.000Z","end":"2026-01-19T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-92mi6xsh6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T14:25:00.000Z","end":"2026-01-19T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-1kuem6lbn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-19T14:50:00.000Z","end":"2026-01-19T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-5uf61zzs6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-19T15:15:00.000Z","end":"2026-01-19T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-un6srbdkq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T15:40:00.000Z","end":"2026-01-19T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-1mjbk7s4j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T16:05:00.000Z","end":"2026-01-19T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-bn9acazjb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T16:30:00.000Z","end":"2026-01-19T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-q5xo8bpd3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-19T16:55:00.000Z","end":"2026-01-19T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-ow0eldrni","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T17:20:00.000Z","end":"2026-01-19T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-7xypfvxj9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T17:45:00.000Z","end":"2026-01-19T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-5phdvvd7e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T18:10:00.000Z","end":"2026-01-19T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-992d44yd8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-19T18:35:00.000Z","end":"2026-01-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-puwq3yt0c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-19T19:00:00.000Z","end":"2026-01-19T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-ewts0mom0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T19:25:00.000Z","end":"2026-01-19T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-ytv8naq6v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T19:50:00.000Z","end":"2026-01-19T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-zopi64i3w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T20:15:00.000Z","end":"2026-01-19T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-ptnzv9b1y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-19T20:40:00.000Z","end":"2026-01-19T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-xg82dnvkq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T21:05:00.000Z","end":"2026-01-19T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-52m91bpmq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-19T21:30:00.000Z","end":"2026-01-19T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-6sk29rlgv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T21:55:00.000Z","end":"2026-01-19T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-gqzw3fl1p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-19T22:20:00.000Z","end":"2026-01-19T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-6bdt22130","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-20T14:00:00.000Z","end":"2026-01-20T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-mxt9wq5hl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T14:25:00.000Z","end":"2026-01-20T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-hxqsw2on5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T14:50:00.000Z","end":"2026-01-20T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-lg9bhhqoh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T15:15:00.000Z","end":"2026-01-20T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-yy8vu89hk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T15:40:00.000Z","end":"2026-01-20T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-fgatdctfi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-20T16:05:00.000Z","end":"2026-01-20T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-ot8pwmt3m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T16:30:00.000Z","end":"2026-01-20T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-m3ie5cti6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T16:55:00.000Z","end":"2026-01-20T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-3dtqzj9l9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T17:20:00.000Z","end":"2026-01-20T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-m8fg8bs93","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T17:45:00.000Z","end":"2026-01-20T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-fxtkkbbof","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T18:10:00.000Z","end":"2026-01-20T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085659-kyfmo8nwu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T18:35:00.000Z","end":"2026-01-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.659Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085660-qo3ra5n4i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T19:00:00.000Z","end":"2026-01-20T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.660Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085660-r3nb42cmt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-20T19:25:00.000Z","end":"2026-01-20T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085660-7ksymfj6n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T19:50:00.000Z","end":"2026-01-20T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.660Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085660-3rwcmtonu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T20:15:00.000Z","end":"2026-01-20T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.660Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085660-z7c89u20f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-20T20:40:00.000Z","end":"2026-01-20T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-lfby674l2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T21:05:00.000Z","end":"2026-01-20T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.661Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-qvc7k5lli","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T21:30:00.000Z","end":"2026-01-20T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.661Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-5j2w01qcv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T21:55:00.000Z","end":"2026-01-20T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.661Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-zdz5ootf9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-20T22:20:00.000Z","end":"2026-01-20T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.661Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-1opcatnng","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T14:00:00.000Z","end":"2026-01-21T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-1awejsl4p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T14:25:00.000Z","end":"2026-01-21T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-ddklsuas6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T14:50:00.000Z","end":"2026-01-21T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-oacqgox3k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T15:15:00.000Z","end":"2026-01-21T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-ujazioksj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-21T15:40:00.000Z","end":"2026-01-21T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.661Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-ek5cdkbzc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T16:05:00.000Z","end":"2026-01-21T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085661-clzveeda7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T16:30:00.000Z","end":"2026-01-21T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-2fmwxrg2r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T16:55:00.000Z","end":"2026-01-21T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-okkn6p5w2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T17:20:00.000Z","end":"2026-01-21T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-zcvhnfclh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-21T17:45:00.000Z","end":"2026-01-21T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-gemecsl69","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-21T18:10:00.000Z","end":"2026-01-21T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-e64b1fsmq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-21T18:35:00.000Z","end":"2026-01-21T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-mzbmnt7uq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T19:00:00.000Z","end":"2026-01-21T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-6se613r80","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T19:25:00.000Z","end":"2026-01-21T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-8w7wepic8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T19:50:00.000Z","end":"2026-01-21T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-n1jahokyz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-21T20:15:00.000Z","end":"2026-01-21T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-1j0r55fa6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T20:40:00.000Z","end":"2026-01-21T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-ctata9czi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T21:05:00.000Z","end":"2026-01-21T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-hai5d5ztd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-21T21:30:00.000Z","end":"2026-01-21T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-jyg5pm296","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-21T21:55:00.000Z","end":"2026-01-21T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-sz1saskyd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-21T22:20:00.000Z","end":"2026-01-21T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-0tnsm0192","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-22T14:00:00.000Z","end":"2026-01-22T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-ic587kxy8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-22T14:25:00.000Z","end":"2026-01-22T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-5e55wt9pp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T14:50:00.000Z","end":"2026-01-22T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-u9nl9pukv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T15:15:00.000Z","end":"2026-01-22T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.245Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-nj7jggwwa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-22T15:40:00.000Z","end":"2026-01-22T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-kqhcxjdr5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-22T16:05:00.000Z","end":"2026-01-22T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-03xu00d3j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T16:30:00.000Z","end":"2026-01-22T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-kk0ki4eqw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T16:55:00.000Z","end":"2026-01-22T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-0xxvq8c1f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T17:20:00.000Z","end":"2026-01-22T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-klzszz2nk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-22T17:45:00.000Z","end":"2026-01-22T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-6s5ttra9i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T18:10:00.000Z","end":"2026-01-22T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-lyzeg9gwy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T18:35:00.000Z","end":"2026-01-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-tf2ss5aqh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T19:00:00.000Z","end":"2026-01-22T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-b3bc3chy5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-22T19:25:00.000Z","end":"2026-01-22T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.662Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-a5p1x06z2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T19:50:00.000Z","end":"2026-01-22T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085662-7jou6djrm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T20:15:00.000Z","end":"2026-01-22T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-p52q4xcwj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T20:40:00.000Z","end":"2026-01-22T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-kzjflwe45","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T21:05:00.000Z","end":"2026-01-22T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.244Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-1jgy49fux","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T21:30:00.000Z","end":"2026-01-22T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-zfzjtpdrx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-22T21:55:00.000Z","end":"2026-01-22T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-9jrtfz80o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-22T22:20:00.000Z","end":"2026-01-22T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-nt6o6u3na","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T14:00:00.000Z","end":"2026-01-23T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-e0j9lma66","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T14:25:00.000Z","end":"2026-01-23T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-keg1tyhnc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-23T14:50:00.000Z","end":"2026-01-23T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-rfilpx8jt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-23T15:15:00.000Z","end":"2026-01-23T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-cimi3loq6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-23T15:40:00.000Z","end":"2026-01-23T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-gp1f536gc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T16:05:00.000Z","end":"2026-01-23T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-oexf987st","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T16:30:00.000Z","end":"2026-01-23T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-4qytwjony","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-23T16:55:00.000Z","end":"2026-01-23T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-93zfk1ql4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-23T17:20:00.000Z","end":"2026-01-23T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-61cygziyv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-23T17:45:00.000Z","end":"2026-01-23T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-eegov1yoh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T18:10:00.000Z","end":"2026-01-23T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-yvmzqrwef","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T18:35:00.000Z","end":"2026-01-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-7id4j736z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T19:00:00.000Z","end":"2026-01-23T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-cdvc23ffc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T19:25:00.000Z","end":"2026-01-23T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-zqn0mrls3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T19:50:00.000Z","end":"2026-01-23T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-bjjdlevfu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T20:15:00.000Z","end":"2026-01-23T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-eaadwobb6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-23T20:40:00.000Z","end":"2026-01-23T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-kl08ohfdi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T21:05:00.000Z","end":"2026-01-23T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-sxs7g71lr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T21:30:00.000Z","end":"2026-01-23T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-zh8hwenjr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-23T21:55:00.000Z","end":"2026-01-23T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-debcaszei","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-23T22:20:00.000Z","end":"2026-01-23T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-75zomkrt6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T14:00:00.000Z","end":"2026-01-26T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-plx4kgtai","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-26T14:25:00.000Z","end":"2026-01-26T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-unsyjb6nv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T14:50:00.000Z","end":"2026-01-26T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-0c8dkf251","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T15:15:00.000Z","end":"2026-01-26T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-h8ku8tnla","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-26T15:40:00.000Z","end":"2026-01-26T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085663-0z8fefwlp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T16:05:00.000Z","end":"2026-01-26T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.663Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-uqy96xv1o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T16:30:00.000Z","end":"2026-01-26T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-nk9nfmtq8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T16:55:00.000Z","end":"2026-01-26T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-3cv4ye1hb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-26T17:20:00.000Z","end":"2026-01-26T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-4wlb8sfgn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-26T17:45:00.000Z","end":"2026-01-26T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-6pgbrd8mn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T18:10:00.000Z","end":"2026-01-26T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-ctgqlqsh0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T18:35:00.000Z","end":"2026-01-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-pu41iv53s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-26T19:00:00.000Z","end":"2026-01-26T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-cs1hebdy7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-26T19:25:00.000Z","end":"2026-01-26T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-jvtl7n2bj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T19:50:00.000Z","end":"2026-01-26T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-7psh144ro","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T20:15:00.000Z","end":"2026-01-26T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-rxzh6b3dg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T20:40:00.000Z","end":"2026-01-26T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-5pfrgp6ge","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-26T21:05:00.000Z","end":"2026-01-26T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-fx1k5or5c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T21:30:00.000Z","end":"2026-01-26T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-867v58gjq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-26T21:55:00.000Z","end":"2026-01-26T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-mt2358ygy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-26T22:20:00.000Z","end":"2026-01-26T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.289Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-w36qo0dr0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T14:00:00.000Z","end":"2026-01-27T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-cc9qtes03","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-27T14:25:00.000Z","end":"2026-01-27T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-m26xbw3i4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-27T14:50:00.000Z","end":"2026-01-27T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-iruwzehsv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T15:15:00.000Z","end":"2026-01-27T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-9448w0oxs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T15:40:00.000Z","end":"2026-01-27T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-c08aps8ef","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-27T16:05:00.000Z","end":"2026-01-27T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-0o0l49qnp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-27T16:30:00.000Z","end":"2026-01-27T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-03bt4maz8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-27T16:55:00.000Z","end":"2026-01-27T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-jfb2ibamh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-27T17:20:00.000Z","end":"2026-01-27T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.664Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-kj81yoplu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T17:45:00.000Z","end":"2026-01-27T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-k9tahuchi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T18:10:00.000Z","end":"2026-01-27T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-c9n98dxp5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T18:35:00.000Z","end":"2026-01-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-znava8p0f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T19:00:00.000Z","end":"2026-01-27T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085664-5fdyihy32","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T19:25:00.000Z","end":"2026-01-27T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-i10zdfw2c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-27T19:50:00.000Z","end":"2026-01-27T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.665Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-vp29dogll","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T20:15:00.000Z","end":"2026-01-27T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.325Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-0rz86bsve","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T20:40:00.000Z","end":"2026-01-27T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-8dsi41e07","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T21:05:00.000Z","end":"2026-01-27T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-zsy71md4u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T21:30:00.000Z","end":"2026-01-27T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-390hem6a6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-27T21:55:00.000Z","end":"2026-01-27T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.665Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-gcrmxwhy8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-27T22:20:00.000Z","end":"2026-01-27T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-7hvkjy4ni","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T14:00:00.000Z","end":"2026-01-28T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-az1wveaum","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T14:25:00.000Z","end":"2026-01-28T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.665Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-suv0vjp7n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T14:50:00.000Z","end":"2026-01-28T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.665Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085665-d0h1k05q2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T15:15:00.000Z","end":"2026-01-28T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-88gjodnrg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T15:40:00.000Z","end":"2026-01-28T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-fqpr6wlcu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T16:05:00.000Z","end":"2026-01-28T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-3lufnprha","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T16:30:00.000Z","end":"2026-01-28T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-7son4vii1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T16:55:00.000Z","end":"2026-01-28T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-1e2jmc0nx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T17:20:00.000Z","end":"2026-01-28T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-xye7p5vsa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T17:45:00.000Z","end":"2026-01-28T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-fslrotx1m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T18:10:00.000Z","end":"2026-01-28T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-q58h9wiuo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T18:35:00.000Z","end":"2026-01-28T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-4g11aaibf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T19:00:00.000Z","end":"2026-01-28T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-2v67y6uip","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T19:25:00.000Z","end":"2026-01-28T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-oswaip9nb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T19:50:00.000Z","end":"2026-01-28T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-ilt2pa1dl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T20:15:00.000Z","end":"2026-01-28T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-5qop537ax","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T20:40:00.000Z","end":"2026-01-28T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-anb3vg5se","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T21:05:00.000Z","end":"2026-01-28T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-g0wvayvdq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T21:30:00.000Z","end":"2026-01-28T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-u54hjidtv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-28T21:55:00.000Z","end":"2026-01-28T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-atzj1dl4m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-28T22:20:00.000Z","end":"2026-01-28T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-ynk1vhsmw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T14:00:00.000Z","end":"2026-01-29T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-znyr9igyb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T14:25:00.000Z","end":"2026-01-29T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-gboz5cm32","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-29T14:50:00.000Z","end":"2026-01-29T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-2f9xaj9z8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T15:15:00.000Z","end":"2026-01-29T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-t74nsrjrq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T15:40:00.000Z","end":"2026-01-29T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085666-7wgs6xitf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-29T16:05:00.000Z","end":"2026-01-29T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.666Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-dhpgpc1zu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T16:30:00.000Z","end":"2026-01-29T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-uxbrj0syq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T16:55:00.000Z","end":"2026-01-29T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-eigshc0j9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T17:20:00.000Z","end":"2026-01-29T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.229Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-bsnqbn0lw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T17:45:00.000Z","end":"2026-01-29T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.312Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-dlcfct2cz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T18:10:00.000Z","end":"2026-01-29T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-cdhbnfyyk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-29T18:35:00.000Z","end":"2026-01-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-lxv0aoe2a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T19:00:00.000Z","end":"2026-01-29T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-1sl5rk08g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-29T19:25:00.000Z","end":"2026-01-29T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-gnbi0t49r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-29T19:50:00.000Z","end":"2026-01-29T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-axn0mxptt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T20:15:00.000Z","end":"2026-01-29T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-e761v308c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-29T20:40:00.000Z","end":"2026-01-29T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-arebcl3yt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T21:05:00.000Z","end":"2026-01-29T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-09qbnnay9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T21:30:00.000Z","end":"2026-01-29T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-xgutapos8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-29T21:55:00.000Z","end":"2026-01-29T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-9in06kil6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-29T22:20:00.000Z","end":"2026-01-29T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-x3qxnzhaa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T14:00:00.000Z","end":"2026-01-30T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-ctfuho12a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T14:25:00.000Z","end":"2026-01-30T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-jjfg9ns85","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T14:50:00.000Z","end":"2026-01-30T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-kqfo4yht3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T15:15:00.000Z","end":"2026-01-30T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-er3wfahuw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T15:40:00.000Z","end":"2026-01-30T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-028l2h8jp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T16:05:00.000Z","end":"2026-01-30T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-mimn2qgfr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T16:30:00.000Z","end":"2026-01-30T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-76hvytq5s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T16:55:00.000Z","end":"2026-01-30T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-xtkf13898","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T17:20:00.000Z","end":"2026-01-30T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-t0hkd9lie","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T17:45:00.000Z","end":"2026-01-30T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-vvpp0n9wh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T18:10:00.000Z","end":"2026-01-30T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-emphyhzyl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T18:35:00.000Z","end":"2026-01-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-20bl0o6yn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T19:00:00.000Z","end":"2026-01-30T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-w2ubrn2e0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T19:25:00.000Z","end":"2026-01-30T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-lgqvfo3ql","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T19:50:00.000Z","end":"2026-01-30T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.667Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085667-96aunq4ux","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T20:15:00.000Z","end":"2026-01-30T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085668-woumob5ob","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T20:40:00.000Z","end":"2026-01-30T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085668-ttsihncbz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T21:05:00.000Z","end":"2026-01-30T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.668Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085668-iy9bmfl4r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T21:30:00.000Z","end":"2026-01-30T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.668Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085668-pmx98q9o7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-01-30T21:55:00.000Z","end":"2026-01-30T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.668Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085668-o3e1ers4c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-01-30T22:20:00.000Z","end":"2026-01-30T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-8ab3h5zc3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-02T14:00:00.000Z","end":"2026-02-02T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-xnv2iht2t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T14:25:00.000Z","end":"2026-02-02T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-bra88blix","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T14:50:00.000Z","end":"2026-02-02T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-hhz9t5h4w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T15:15:00.000Z","end":"2026-02-02T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-nunf0odts","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T15:40:00.000Z","end":"2026-02-02T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-k6k7b09dd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T16:05:00.000Z","end":"2026-02-02T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-2sbuhuokg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-02T16:30:00.000Z","end":"2026-02-02T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-4mkhfc67t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-02T16:55:00.000Z","end":"2026-02-02T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-92eplzp74","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T17:20:00.000Z","end":"2026-02-02T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-o1ki6or1z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T17:45:00.000Z","end":"2026-02-02T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-mfbu8id1u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T18:10:00.000Z","end":"2026-02-02T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-t35ltmzi8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T18:35:00.000Z","end":"2026-02-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-3mrslydov","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T19:00:00.000Z","end":"2026-02-02T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-mq0om426e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-02T19:25:00.000Z","end":"2026-02-02T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-ci6wmtbdx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T19:50:00.000Z","end":"2026-02-02T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-3cegkx0sv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T20:15:00.000Z","end":"2026-02-02T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-a7chd7tdq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-02T20:40:00.000Z","end":"2026-02-02T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-q5jxvjrab","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T21:05:00.000Z","end":"2026-02-02T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-j0n99bmrr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T21:30:00.000Z","end":"2026-02-02T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-ukj01xmn9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-02T21:55:00.000Z","end":"2026-02-02T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-07rsfo7c6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-02T22:20:00.000Z","end":"2026-02-02T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.229Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-bzwq1lhcf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T14:00:00.000Z","end":"2026-02-03T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085669-xlo7cvs7m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T14:25:00.000Z","end":"2026-02-03T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.669Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-vnq28jw3l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T14:50:00.000Z","end":"2026-02-03T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-zkwobu5dh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T15:15:00.000Z","end":"2026-02-03T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-lds1ie94m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T15:40:00.000Z","end":"2026-02-03T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-w1wi74ova","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T16:05:00.000Z","end":"2026-02-03T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-mf0dt4dhp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T16:30:00.000Z","end":"2026-02-03T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-upyojqv5u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T16:55:00.000Z","end":"2026-02-03T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-z8aw9hs0q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T17:20:00.000Z","end":"2026-02-03T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-mjuce72di","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T17:45:00.000Z","end":"2026-02-03T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-n5ang8bx4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T18:10:00.000Z","end":"2026-02-03T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-7gy3ythbr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T18:35:00.000Z","end":"2026-02-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-3zrbg3kvy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T19:00:00.000Z","end":"2026-02-03T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-dx2zi88lc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T19:25:00.000Z","end":"2026-02-03T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-jk5cv6ipb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T19:50:00.000Z","end":"2026-02-03T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-71ap81qhu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T20:15:00.000Z","end":"2026-02-03T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-x093d8tt6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T20:40:00.000Z","end":"2026-02-03T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-wllkqdzt6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T21:05:00.000Z","end":"2026-02-03T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-iu3xink6g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T21:30:00.000Z","end":"2026-02-03T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-9s9xrgr7p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-03T21:55:00.000Z","end":"2026-02-03T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-iojp4uys7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-03T22:20:00.000Z","end":"2026-02-03T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-xsb95nhzi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T14:00:00.000Z","end":"2026-02-04T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-jnmaqvyfc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T14:25:00.000Z","end":"2026-02-04T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-cx50j6ahl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T14:50:00.000Z","end":"2026-02-04T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-6jo8aei0b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T15:15:00.000Z","end":"2026-02-04T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-333ph7c21","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T15:40:00.000Z","end":"2026-02-04T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-i4vi9thbw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T16:05:00.000Z","end":"2026-02-04T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-zmvw41k0t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T16:30:00.000Z","end":"2026-02-04T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-pkrovcyhm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T16:55:00.000Z","end":"2026-02-04T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-pif4vnxdi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T17:20:00.000Z","end":"2026-02-04T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-0myxs2lat","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T17:45:00.000Z","end":"2026-02-04T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-32vizxxjc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T18:10:00.000Z","end":"2026-02-04T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-j2gu5avea","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T18:35:00.000Z","end":"2026-02-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-o92g1bi2y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T19:00:00.000Z","end":"2026-02-04T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-hbvmejgkr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T19:25:00.000Z","end":"2026-02-04T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-iervv2vpc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T19:50:00.000Z","end":"2026-02-04T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-qlccfg3id","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T20:15:00.000Z","end":"2026-02-04T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-i8oju7sdi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T20:40:00.000Z","end":"2026-02-04T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085670-lm74n5iat","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T21:05:00.000Z","end":"2026-02-04T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.670Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-br7m2urom","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T21:30:00.000Z","end":"2026-02-04T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-vviaz6o30","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-04T21:55:00.000Z","end":"2026-02-04T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-x1sy8oeve","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-04T22:20:00.000Z","end":"2026-02-04T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-bry1d352c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T14:00:00.000Z","end":"2026-02-05T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-2866qdp26","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T14:25:00.000Z","end":"2026-02-05T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-7ahbka62c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T14:50:00.000Z","end":"2026-02-05T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-d9rwurosn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T15:15:00.000Z","end":"2026-02-05T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-pvzjvnxrk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T15:40:00.000Z","end":"2026-02-05T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-4ex6p0y1d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T16:05:00.000Z","end":"2026-02-05T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-aqqga97us","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T16:30:00.000Z","end":"2026-02-05T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.278Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-etgv14tjw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T16:55:00.000Z","end":"2026-02-05T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-2kkoynbrh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T17:20:00.000Z","end":"2026-02-05T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-q9lecqcph","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T17:45:00.000Z","end":"2026-02-05T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-82ea70wh6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T18:10:00.000Z","end":"2026-02-05T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-1ngpogfcu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T18:35:00.000Z","end":"2026-02-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-0f6c423bz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T19:00:00.000Z","end":"2026-02-05T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-erh2jp8zp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T19:25:00.000Z","end":"2026-02-05T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-160ihnc6p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T19:50:00.000Z","end":"2026-02-05T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-usekxkpod","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T20:15:00.000Z","end":"2026-02-05T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-gnf2bd8bb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T20:40:00.000Z","end":"2026-02-05T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-xm08r581u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T21:05:00.000Z","end":"2026-02-05T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-fj1ik6ocd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T21:30:00.000Z","end":"2026-02-05T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-ojzedpqz6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-05T21:55:00.000Z","end":"2026-02-05T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-1grvp7hb1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-05T22:20:00.000Z","end":"2026-02-05T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-j0nn0czp0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T14:00:00.000Z","end":"2026-02-06T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-zgn6e85w1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T14:25:00.000Z","end":"2026-02-06T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.229Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-qk0ylv9of","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T14:50:00.000Z","end":"2026-02-06T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-eqjujx7l0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T15:15:00.000Z","end":"2026-02-06T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-uiwc3ms05","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T15:40:00.000Z","end":"2026-02-06T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-a39cdna9x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T16:05:00.000Z","end":"2026-02-06T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-7gju2zesb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T16:30:00.000Z","end":"2026-02-06T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-79vp8za6b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T16:55:00.000Z","end":"2026-02-06T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-bgbdyo4oi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T17:20:00.000Z","end":"2026-02-06T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-fkif4ir4o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T17:45:00.000Z","end":"2026-02-06T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-pnlwz0p76","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T18:10:00.000Z","end":"2026-02-06T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.671Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085671-2hbnq312f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T18:35:00.000Z","end":"2026-02-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-2aa7tiq7y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T19:00:00.000Z","end":"2026-02-06T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-nhddu1hv5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T19:25:00.000Z","end":"2026-02-06T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-qtiwqpksu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T19:50:00.000Z","end":"2026-02-06T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-mkssu52l6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T20:15:00.000Z","end":"2026-02-06T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-kz8w9w72h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T20:40:00.000Z","end":"2026-02-06T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-k8hst1a4w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-06T21:05:00.000Z","end":"2026-02-06T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-ky3st3zpl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T21:30:00.000Z","end":"2026-02-06T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-02stwyppt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T21:55:00.000Z","end":"2026-02-06T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-7758j45j2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-06T22:20:00.000Z","end":"2026-02-06T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-u9vc9unge","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T14:00:00.000Z","end":"2026-02-09T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-k9jd9zh0l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T14:25:00.000Z","end":"2026-02-09T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-b3d5dcy7m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T14:50:00.000Z","end":"2026-02-09T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-zryf2fcsi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-09T15:15:00.000Z","end":"2026-02-09T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-sdqde1tau","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T15:40:00.000Z","end":"2026-02-09T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-g2mputixw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-09T16:05:00.000Z","end":"2026-02-09T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-79vvif6zm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-09T16:30:00.000Z","end":"2026-02-09T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-7mier62pw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-09T16:55:00.000Z","end":"2026-02-09T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-45hpc2bwb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-09T17:20:00.000Z","end":"2026-02-09T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-tuomw9yqa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-09T17:45:00.000Z","end":"2026-02-09T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-dtguaoqfs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T18:10:00.000Z","end":"2026-02-09T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-zxh9dfjkn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T18:35:00.000Z","end":"2026-02-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-926ayalhz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-09T19:00:00.000Z","end":"2026-02-09T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-3fhr8su1p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T19:25:00.000Z","end":"2026-02-09T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-v13oej0u4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T19:50:00.000Z","end":"2026-02-09T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-8lz039egr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T20:15:00.000Z","end":"2026-02-09T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-53crkhh82","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T20:40:00.000Z","end":"2026-02-09T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-2iixqbxxn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T21:05:00.000Z","end":"2026-02-09T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-zj6xl80qv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T21:30:00.000Z","end":"2026-02-09T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-9mb6y09kk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-09T21:55:00.000Z","end":"2026-02-09T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-kcay27an8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-09T22:20:00.000Z","end":"2026-02-09T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.672Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085672-9ns1gyo1q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T14:00:00.000Z","end":"2026-02-10T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-djngyefa3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T14:25:00.000Z","end":"2026-02-10T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-i89j7k71h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T14:50:00.000Z","end":"2026-02-10T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-ozemjtfm3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T15:15:00.000Z","end":"2026-02-10T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-eef5ghmlo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-10T15:40:00.000Z","end":"2026-02-10T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.673Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-mk669mtvu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-10T16:05:00.000Z","end":"2026-02-10T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.673Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-hel41pkg1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-10T16:30:00.000Z","end":"2026-02-10T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.673Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-60kkk2582","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-10T16:55:00.000Z","end":"2026-02-10T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.673Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-54kow1cyh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T17:20:00.000Z","end":"2026-02-10T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-f5ayd5xqt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T17:45:00.000Z","end":"2026-02-10T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.312Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-ohd4w4pyo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T18:10:00.000Z","end":"2026-02-10T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-iq13ase3e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T18:35:00.000Z","end":"2026-02-10T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-igmdvjgx1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T19:00:00.000Z","end":"2026-02-10T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-v4k02qphy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T19:25:00.000Z","end":"2026-02-10T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-o1ul8899o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-10T19:50:00.000Z","end":"2026-02-10T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.673Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-w2ekc90ku","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-10T20:15:00.000Z","end":"2026-02-10T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.673Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-iifli5lh9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T20:40:00.000Z","end":"2026-02-10T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-fvu9w75t8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T21:05:00.000Z","end":"2026-02-10T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-iksv3l9mo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-10T21:30:00.000Z","end":"2026-02-10T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.673Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-rl136fgk8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-10T21:55:00.000Z","end":"2026-02-10T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.673Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-bhyy4kfqt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-10T22:20:00.000Z","end":"2026-02-10T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-7j0e9poj5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T14:00:00.000Z","end":"2026-02-11T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-6vibgg2h3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T14:25:00.000Z","end":"2026-02-11T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-u1dq8yu3q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T14:50:00.000Z","end":"2026-02-11T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085673-3jk4nji3f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T15:15:00.000Z","end":"2026-02-11T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-njxtca7nq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T15:40:00.000Z","end":"2026-02-11T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-ryd3q3k5t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-11T16:05:00.000Z","end":"2026-02-11T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.674Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-zit2zqd0w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-11T16:30:00.000Z","end":"2026-02-11T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.674Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-f156gv3bc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-11T16:55:00.000Z","end":"2026-02-11T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.674Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-xx7654avw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T17:20:00.000Z","end":"2026-02-11T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-977g3six6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-11T17:45:00.000Z","end":"2026-02-11T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.674Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-yjg5n02em","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-11T18:10:00.000Z","end":"2026-02-11T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.674Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-7zbj3diaf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T18:35:00.000Z","end":"2026-02-11T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-7fdqu1lc8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T19:00:00.000Z","end":"2026-02-11T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-02fzzdp8k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T19:25:00.000Z","end":"2026-02-11T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-zo966skw5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T19:50:00.000Z","end":"2026-02-11T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-t86n8wcoc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T20:15:00.000Z","end":"2026-02-11T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085674-otsnsf6xn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T20:40:00.000Z","end":"2026-02-11T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085675-8je1rv8pe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T21:05:00.000Z","end":"2026-02-11T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085675-6y8ciol89","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-11T21:30:00.000Z","end":"2026-02-11T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.675Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085675-jv8y76sg9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T21:55:00.000Z","end":"2026-02-11T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085675-dcxf5we1b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-11T22:20:00.000Z","end":"2026-02-11T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085675-2deyluqvz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T14:00:00.000Z","end":"2026-02-12T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.675Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085675-3ja4bgn28","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T14:25:00.000Z","end":"2026-02-12T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.675Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085675-blzguokoy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T14:50:00.000Z","end":"2026-02-12T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.675Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085675-14eyc3d51","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T15:15:00.000Z","end":"2026-02-12T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-r8o4sfuyp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T15:40:00.000Z","end":"2026-02-12T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-1errkn5fc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T16:05:00.000Z","end":"2026-02-12T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-0g79ft61v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T16:30:00.000Z","end":"2026-02-12T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-bju03u96e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T16:55:00.000Z","end":"2026-02-12T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-pscqdpqx5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T17:20:00.000Z","end":"2026-02-12T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-qmlpaafgx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T17:45:00.000Z","end":"2026-02-12T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-wpjlfdexi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T18:10:00.000Z","end":"2026-02-12T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-5ifr5glpd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T18:35:00.000Z","end":"2026-02-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-dvt8bon6y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T19:00:00.000Z","end":"2026-02-12T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-yotake2ny","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T19:25:00.000Z","end":"2026-02-12T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-77xja2x33","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T19:50:00.000Z","end":"2026-02-12T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-ru61wbb37","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T20:15:00.000Z","end":"2026-02-12T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-on9qm9yrr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T20:40:00.000Z","end":"2026-02-12T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-b3td90kq3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-12T21:05:00.000Z","end":"2026-02-12T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-9o8urq9ih","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T21:30:00.000Z","end":"2026-02-12T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-7fy4psi5f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T21:55:00.000Z","end":"2026-02-12T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-ft3bgi4jg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-12T22:20:00.000Z","end":"2026-02-12T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-cqid1gq05","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T14:00:00.000Z","end":"2026-02-13T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-lgjfze720","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T14:25:00.000Z","end":"2026-02-13T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-0u3dqu195","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T14:50:00.000Z","end":"2026-02-13T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-0ftg8u8n7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T15:15:00.000Z","end":"2026-02-13T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-0r8vfgxc9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T15:40:00.000Z","end":"2026-02-13T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-50heuillf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T16:05:00.000Z","end":"2026-02-13T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-epebp3ivf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T16:30:00.000Z","end":"2026-02-13T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-btmozajnq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T16:55:00.000Z","end":"2026-02-13T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-1l5xlpiqh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T17:20:00.000Z","end":"2026-02-13T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-w9zuguptc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T17:45:00.000Z","end":"2026-02-13T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-jxfsdlxnv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T18:10:00.000Z","end":"2026-02-13T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-f6vrzwh8b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T18:35:00.000Z","end":"2026-02-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-o9h3udkxu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T19:00:00.000Z","end":"2026-02-13T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-3tf71poo3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T19:25:00.000Z","end":"2026-02-13T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-19tr2t9tw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T19:50:00.000Z","end":"2026-02-13T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-ylokfe78p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T20:15:00.000Z","end":"2026-02-13T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-m255p6ya8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T20:40:00.000Z","end":"2026-02-13T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-6mdqwjo2h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-13T21:05:00.000Z","end":"2026-02-13T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.676Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-v7vvatspy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T21:30:00.000Z","end":"2026-02-13T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085676-j7pjl47oh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T21:55:00.000Z","end":"2026-02-13T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-y99sfr98g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-13T22:20:00.000Z","end":"2026-02-13T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-rfqfcc8mw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T14:00:00.000Z","end":"2026-02-16T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-rn2bwky9y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T14:25:00.000Z","end":"2026-02-16T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-zll9qeq56","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T14:50:00.000Z","end":"2026-02-16T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-ots6z42vi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T15:15:00.000Z","end":"2026-02-16T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-ys5k205i8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T15:40:00.000Z","end":"2026-02-16T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-55tp3pt9z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T16:05:00.000Z","end":"2026-02-16T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-y0wsihph0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T16:30:00.000Z","end":"2026-02-16T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-eq5iade3g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T16:55:00.000Z","end":"2026-02-16T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-3n6bfypm8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T17:20:00.000Z","end":"2026-02-16T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-8juj91ebh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T17:45:00.000Z","end":"2026-02-16T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-s16vc8gx7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T18:10:00.000Z","end":"2026-02-16T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-t73yof0yb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T18:35:00.000Z","end":"2026-02-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-hbas6nyw2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T19:00:00.000Z","end":"2026-02-16T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-ulm55ax4h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T19:25:00.000Z","end":"2026-02-16T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-frwsandff","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T19:50:00.000Z","end":"2026-02-16T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-xz3ppoqf5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T20:15:00.000Z","end":"2026-02-16T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-yfkjt2p0x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T20:40:00.000Z","end":"2026-02-16T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-aw589l3x3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T21:05:00.000Z","end":"2026-02-16T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-wpkvd5b7v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T21:30:00.000Z","end":"2026-02-16T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-tcjkgyz5z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-16T21:55:00.000Z","end":"2026-02-16T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-2dlzyzppl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-16T22:20:00.000Z","end":"2026-02-16T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-465uvc5qg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-17T14:00:00.000Z","end":"2026-02-17T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-46u6hwx13","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T14:25:00.000Z","end":"2026-02-17T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-5t1e6u8i7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T14:50:00.000Z","end":"2026-02-17T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-7bsklfc4z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T15:15:00.000Z","end":"2026-02-17T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-pcgt401ru","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T15:40:00.000Z","end":"2026-02-17T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-urdgr1421","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T16:05:00.000Z","end":"2026-02-17T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-h3c3gzvmn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T16:30:00.000Z","end":"2026-02-17T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-6c9t6lsbi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T16:55:00.000Z","end":"2026-02-17T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-2ddafu300","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T17:20:00.000Z","end":"2026-02-17T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-tzlnv6lmm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T17:45:00.000Z","end":"2026-02-17T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-whdq58ixg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T18:10:00.000Z","end":"2026-02-17T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-4x1czt3lo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T18:35:00.000Z","end":"2026-02-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085677-0y5pvsi9v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T19:00:00.000Z","end":"2026-02-17T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.677Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-z9qe6ftgy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T19:25:00.000Z","end":"2026-02-17T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-0cw0n1eyt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T19:50:00.000Z","end":"2026-02-17T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-vyrfx89be","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T20:15:00.000Z","end":"2026-02-17T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-ne23bdr3q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-17T20:40:00.000Z","end":"2026-02-17T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-uxld3fh99","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-17T21:05:00.000Z","end":"2026-02-17T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-j6zatg2s3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T21:30:00.000Z","end":"2026-02-17T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-4lrczi1z2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-17T21:55:00.000Z","end":"2026-02-17T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-23mhh0b13","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-17T22:20:00.000Z","end":"2026-02-17T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-l1e48xwj0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-18T14:00:00.000Z","end":"2026-02-18T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-h5k22swkz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T14:25:00.000Z","end":"2026-02-18T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-mbjduergq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T14:50:00.000Z","end":"2026-02-18T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-1pbz19y1j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-18T15:15:00.000Z","end":"2026-02-18T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-8ilip5kxy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T15:40:00.000Z","end":"2026-02-18T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-1jv4pefla","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T16:05:00.000Z","end":"2026-02-18T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-d7tuez12i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T16:30:00.000Z","end":"2026-02-18T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-zu20n58gi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T16:55:00.000Z","end":"2026-02-18T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-q0aktuha9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-18T17:20:00.000Z","end":"2026-02-18T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-mjtx98tum","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T17:45:00.000Z","end":"2026-02-18T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-0kf99yata","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-18T18:10:00.000Z","end":"2026-02-18T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-5xwiz9wsx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-18T18:35:00.000Z","end":"2026-02-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-m0nndzzl6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T19:00:00.000Z","end":"2026-02-18T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-z5t84sjtu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-18T19:25:00.000Z","end":"2026-02-18T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-2fkf8u627","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T19:50:00.000Z","end":"2026-02-18T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-1h26y9psf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T20:15:00.000Z","end":"2026-02-18T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.267Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-vfhkojzi2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T20:40:00.000Z","end":"2026-02-18T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-17mtycu7a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T21:05:00.000Z","end":"2026-02-18T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-9g4fhed8e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-18T21:30:00.000Z","end":"2026-02-18T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-jeud2jir5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-18T21:55:00.000Z","end":"2026-02-18T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-6665qbbjw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-18T22:20:00.000Z","end":"2026-02-18T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-zgb73d5b9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T14:00:00.000Z","end":"2026-02-19T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-aapr7ja4o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T14:25:00.000Z","end":"2026-02-19T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-rlgrv60a5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-19T14:50:00.000Z","end":"2026-02-19T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.678Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085678-ek5skb5j9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T15:15:00.000Z","end":"2026-02-19T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-lr1emv0tw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-19T15:40:00.000Z","end":"2026-02-19T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-aiiktxfh3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T16:05:00.000Z","end":"2026-02-19T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-fk4mwl5jk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T16:30:00.000Z","end":"2026-02-19T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-jcz0bj0kt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T16:55:00.000Z","end":"2026-02-19T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-9p82lkdj6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T17:20:00.000Z","end":"2026-02-19T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-183ct1qs8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-19T17:45:00.000Z","end":"2026-02-19T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-tyunb2dux","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T18:10:00.000Z","end":"2026-02-19T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-2q8350jfw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T18:35:00.000Z","end":"2026-02-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-ia78kbtum","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T19:00:00.000Z","end":"2026-02-19T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-9hmzchb05","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T19:25:00.000Z","end":"2026-02-19T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-dwtpsqzh1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T19:50:00.000Z","end":"2026-02-19T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-b2vm4zlnc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-19T20:15:00.000Z","end":"2026-02-19T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-4n4b3dm4j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-19T20:40:00.000Z","end":"2026-02-19T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-2feeurckv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-19T21:05:00.000Z","end":"2026-02-19T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-dogjwlw9n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T21:30:00.000Z","end":"2026-02-19T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-pyagfohgq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T21:55:00.000Z","end":"2026-02-19T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-czr5u1hbj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-19T22:20:00.000Z","end":"2026-02-19T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-y410glnod","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T14:00:00.000Z","end":"2026-02-20T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-g470nqwff","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T14:25:00.000Z","end":"2026-02-20T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-ke9owyg3f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T14:50:00.000Z","end":"2026-02-20T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-dq56t0q7i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T15:15:00.000Z","end":"2026-02-20T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-ng5j6v80v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T15:40:00.000Z","end":"2026-02-20T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-nezeaec6e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T16:05:00.000Z","end":"2026-02-20T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-zfz24h1wk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T16:30:00.000Z","end":"2026-02-20T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-tdreo1n3h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T16:55:00.000Z","end":"2026-02-20T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-z21oqiqoq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T17:20:00.000Z","end":"2026-02-20T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-c2o7gxeuv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T17:45:00.000Z","end":"2026-02-20T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-unfr7ud7w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T18:10:00.000Z","end":"2026-02-20T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-hq9nypvq8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T18:35:00.000Z","end":"2026-02-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-w5rkzq244","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T19:00:00.000Z","end":"2026-02-20T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-yqgmx6gw9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T19:25:00.000Z","end":"2026-02-20T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-g1jvat8p5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T19:50:00.000Z","end":"2026-02-20T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-n5ao2ulhu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T20:15:00.000Z","end":"2026-02-20T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-xpas5q1n4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T20:40:00.000Z","end":"2026-02-20T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-ciipybl74","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T21:05:00.000Z","end":"2026-02-20T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-xrcgk7u86","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T21:30:00.000Z","end":"2026-02-20T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-urwf502kx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-20T21:55:00.000Z","end":"2026-02-20T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085679-cfz1az0w0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-20T22:20:00.000Z","end":"2026-02-20T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.679Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-gq4fxjkc1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T14:00:00.000Z","end":"2026-02-23T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-qmpfhf262","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T14:25:00.000Z","end":"2026-02-23T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-42pn7zivt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T14:50:00.000Z","end":"2026-02-23T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-2c9zq91id","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T15:15:00.000Z","end":"2026-02-23T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-me5eacf5g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T15:40:00.000Z","end":"2026-02-23T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-8zlpcv6sf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T16:05:00.000Z","end":"2026-02-23T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-txupmalzz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T16:30:00.000Z","end":"2026-02-23T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-7y73ia2k5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T16:55:00.000Z","end":"2026-02-23T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-vufzsubpn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T17:20:00.000Z","end":"2026-02-23T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-zu82sagb5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T17:45:00.000Z","end":"2026-02-23T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-hbuos7rnh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T18:10:00.000Z","end":"2026-02-23T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-8qs1guikt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T18:35:00.000Z","end":"2026-02-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-wwmty7jog","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T19:00:00.000Z","end":"2026-02-23T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-moxj0ugi7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T19:25:00.000Z","end":"2026-02-23T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-e2bsr0tqw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T19:50:00.000Z","end":"2026-02-23T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-xdo9m5jb0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T20:15:00.000Z","end":"2026-02-23T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-dr1y8smrc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T20:40:00.000Z","end":"2026-02-23T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-syodd0nyi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T21:05:00.000Z","end":"2026-02-23T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-xnodsnd0z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-23T21:30:00.000Z","end":"2026-02-23T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-vlgkly5o1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T21:55:00.000Z","end":"2026-02-23T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-gk0lictu3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-23T22:20:00.000Z","end":"2026-02-23T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-0lsdrfwer","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T14:00:00.000Z","end":"2026-02-24T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.238Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-mp8ixvvn7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T14:25:00.000Z","end":"2026-02-24T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-uw3ah2wnx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-24T14:50:00.000Z","end":"2026-02-24T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.680Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085680-2r5ntmzs3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T15:15:00.000Z","end":"2026-02-24T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085681-v6plwzgob","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T15:40:00.000Z","end":"2026-02-24T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085681-6ot5dhok0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-24T16:05:00.000Z","end":"2026-02-24T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.681Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085681-dznbb50h8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T16:30:00.000Z","end":"2026-02-24T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085681-eoag1muqo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T16:55:00.000Z","end":"2026-02-24T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085681-rhax1rqct","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-24T17:20:00.000Z","end":"2026-02-24T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.681Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085681-puv9arnkn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T17:45:00.000Z","end":"2026-02-24T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085681-vabs491o9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T18:10:00.000Z","end":"2026-02-24T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085681-dqjcaa317","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T18:35:00.000Z","end":"2026-02-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-k1kgz4u1j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T19:00:00.000Z","end":"2026-02-24T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-kdidaj6xe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T19:25:00.000Z","end":"2026-02-24T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-vjskf4nu1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-24T19:50:00.000Z","end":"2026-02-24T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-x7g1c7ab7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-24T20:15:00.000Z","end":"2026-02-24T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-lwhj9t65r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T20:40:00.000Z","end":"2026-02-24T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-cldpyffsz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-24T21:05:00.000Z","end":"2026-02-24T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-1jvqfvbxs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T21:30:00.000Z","end":"2026-02-24T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-6l7sn5qp8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T21:55:00.000Z","end":"2026-02-24T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-j7a4lmvvs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-24T22:20:00.000Z","end":"2026-02-24T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-j3tbf9i2s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T14:00:00.000Z","end":"2026-02-25T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-1imkurg7n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T14:25:00.000Z","end":"2026-02-25T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-tgw6t7mb6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T14:50:00.000Z","end":"2026-02-25T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-o72xs08v4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T15:15:00.000Z","end":"2026-02-25T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-v17ll2b98","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T15:40:00.000Z","end":"2026-02-25T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-cgkyjbkjm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T16:05:00.000Z","end":"2026-02-25T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-7fqzwyxe9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T16:30:00.000Z","end":"2026-02-25T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-tl6tkdsf2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T16:55:00.000Z","end":"2026-02-25T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-m5g6jtq5y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T17:20:00.000Z","end":"2026-02-25T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-e453ed4gn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-25T17:45:00.000Z","end":"2026-02-25T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-uhdm3epvp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-25T18:10:00.000Z","end":"2026-02-25T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-kfi4jimxy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-25T18:35:00.000Z","end":"2026-02-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-pu68gj29v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T19:00:00.000Z","end":"2026-02-25T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-qz8jszf3h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-25T19:25:00.000Z","end":"2026-02-25T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-fueuvs5cb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-25T19:50:00.000Z","end":"2026-02-25T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-ixvdyw014","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-25T20:15:00.000Z","end":"2026-02-25T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-rxq9qpc38","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T20:40:00.000Z","end":"2026-02-25T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-funfkopt5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T21:05:00.000Z","end":"2026-02-25T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-jx9khsupu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-25T21:30:00.000Z","end":"2026-02-25T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-ju7a222vl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-25T21:55:00.000Z","end":"2026-02-25T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-y33zw50md","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-25T22:20:00.000Z","end":"2026-02-25T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.682Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085682-2m472422r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T14:00:00.000Z","end":"2026-02-26T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-wp6sxqlcf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T14:25:00.000Z","end":"2026-02-26T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-27xx1nd2h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T14:50:00.000Z","end":"2026-02-26T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-p73g6yyxy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T15:15:00.000Z","end":"2026-02-26T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-6kgaxzpjs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-26T15:40:00.000Z","end":"2026-02-26T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-vmp25uje0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T16:05:00.000Z","end":"2026-02-26T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-oyvw868g6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-26T16:30:00.000Z","end":"2026-02-26T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-odro20pwd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T16:55:00.000Z","end":"2026-02-26T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-ufl77g6gb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T17:20:00.000Z","end":"2026-02-26T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-i0chhy0hz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T17:45:00.000Z","end":"2026-02-26T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-w1tdwup25","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T18:10:00.000Z","end":"2026-02-26T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-t4r64nxzp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-26T18:35:00.000Z","end":"2026-02-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-8zaerxkye","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-26T19:00:00.000Z","end":"2026-02-26T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-wa8gadnmk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T19:25:00.000Z","end":"2026-02-26T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-rkp3vljtv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T19:50:00.000Z","end":"2026-02-26T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-xqncuiw28","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T20:15:00.000Z","end":"2026-02-26T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-dxfoi0898","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T20:40:00.000Z","end":"2026-02-26T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-5puxe65k0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-26T21:05:00.000Z","end":"2026-02-26T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-6k8je61s7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-26T21:30:00.000Z","end":"2026-02-26T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-jrpjmu6bq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-26T21:55:00.000Z","end":"2026-02-26T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-f8dvr2pix","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-26T22:20:00.000Z","end":"2026-02-26T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-bxu5na3kt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T14:00:00.000Z","end":"2026-02-27T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-mqb32aax4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T14:25:00.000Z","end":"2026-02-27T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-8wyiig38a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T14:50:00.000Z","end":"2026-02-27T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-bxoz1x8g3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T15:15:00.000Z","end":"2026-02-27T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-lmspzacbb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T15:40:00.000Z","end":"2026-02-27T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-mdlffbj7f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T16:05:00.000Z","end":"2026-02-27T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-kevpij5eq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T16:30:00.000Z","end":"2026-02-27T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-m40qa3gnv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T16:55:00.000Z","end":"2026-02-27T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-wif37vbpi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T17:20:00.000Z","end":"2026-02-27T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-eyupgwl56","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T17:45:00.000Z","end":"2026-02-27T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-37p7n6olp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T18:10:00.000Z","end":"2026-02-27T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-f6dmvip17","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T18:35:00.000Z","end":"2026-02-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-jamyd1dhb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T19:00:00.000Z","end":"2026-02-27T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-v3kbqz7gv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T19:25:00.000Z","end":"2026-02-27T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-bzs1qtcbw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T19:50:00.000Z","end":"2026-02-27T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-fbkpfjhzw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T20:15:00.000Z","end":"2026-02-27T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085683-ud2od3ri6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T20:40:00.000Z","end":"2026-02-27T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.683Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-rcr8xx04p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T21:05:00.000Z","end":"2026-02-27T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-gvxpiua8m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T21:30:00.000Z","end":"2026-02-27T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-tlnssdro6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-02-27T21:55:00.000Z","end":"2026-02-27T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-868vtl18t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-02-27T22:20:00.000Z","end":"2026-02-27T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-up5do1qv7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T14:00:00.000Z","end":"2026-03-02T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-k23qeme7m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T14:25:00.000Z","end":"2026-03-02T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-v198tyzjg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T14:50:00.000Z","end":"2026-03-02T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-5ymt12w9d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T15:15:00.000Z","end":"2026-03-02T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-bvuwqmw6j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T15:40:00.000Z","end":"2026-03-02T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-5n2s40t07","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T16:05:00.000Z","end":"2026-03-02T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-yvpbsu8rp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T16:30:00.000Z","end":"2026-03-02T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-xqksmrvzk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T16:55:00.000Z","end":"2026-03-02T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-018v1g4fj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T17:20:00.000Z","end":"2026-03-02T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-lp5jbr86m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T17:45:00.000Z","end":"2026-03-02T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-3twsw12gt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T18:10:00.000Z","end":"2026-03-02T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-3ydl1fuh2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T18:35:00.000Z","end":"2026-03-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-ty3xguvo2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T19:00:00.000Z","end":"2026-03-02T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-955og3awa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T19:25:00.000Z","end":"2026-03-02T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-v5u5a0i0q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T19:50:00.000Z","end":"2026-03-02T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-rbtu5xb84","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T20:15:00.000Z","end":"2026-03-02T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-zf2r6z4bi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T20:40:00.000Z","end":"2026-03-02T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-jpdengk13","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T21:05:00.000Z","end":"2026-03-02T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-2bft8vi8m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-02T21:30:00.000Z","end":"2026-03-02T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-71cb1x1al","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T21:55:00.000Z","end":"2026-03-02T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-agkyqq7d8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-02T22:20:00.000Z","end":"2026-03-02T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-2r1igg4d0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-03T14:00:00.000Z","end":"2026-03-03T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-dtcvncoc8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-03T14:25:00.000Z","end":"2026-03-03T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-5fl8yub96","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T14:50:00.000Z","end":"2026-03-03T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-jr3hscw6u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T15:15:00.000Z","end":"2026-03-03T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-bpluvboq6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T15:40:00.000Z","end":"2026-03-03T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-5fskzqg0g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T16:05:00.000Z","end":"2026-03-03T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-hvawqqsm8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T16:30:00.000Z","end":"2026-03-03T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-qcnq9bzsc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T16:55:00.000Z","end":"2026-03-03T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-u77mmfk5s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T17:20:00.000Z","end":"2026-03-03T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-pzjpa6h11","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T17:45:00.000Z","end":"2026-03-03T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-uluvykxqq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-03T18:10:00.000Z","end":"2026-03-03T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085684-gwa2k56jr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T18:35:00.000Z","end":"2026-03-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.684Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-8g0lb92mg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-03T19:00:00.000Z","end":"2026-03-03T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-aksqu33vt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T19:25:00.000Z","end":"2026-03-03T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-p1jfrdnl4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T19:50:00.000Z","end":"2026-03-03T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-303a6nd8z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T20:15:00.000Z","end":"2026-03-03T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-i38zkxeau","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T20:40:00.000Z","end":"2026-03-03T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-hqzpm8565","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T21:05:00.000Z","end":"2026-03-03T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-7kri3morz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-03T21:30:00.000Z","end":"2026-03-03T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-zbqph9css","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T21:55:00.000Z","end":"2026-03-03T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-a6lgda7wf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-03T22:20:00.000Z","end":"2026-03-03T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-n1tbkr2yi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T14:00:00.000Z","end":"2026-03-04T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-6c4qf65lp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T14:25:00.000Z","end":"2026-03-04T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-vhyjejjre","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T14:50:00.000Z","end":"2026-03-04T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-ptfe0w6iu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T15:15:00.000Z","end":"2026-03-04T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-3ohxrkfti","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T15:40:00.000Z","end":"2026-03-04T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-soe9yohk0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T16:05:00.000Z","end":"2026-03-04T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-jo7d2mqng","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T16:30:00.000Z","end":"2026-03-04T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-890auaesf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T16:55:00.000Z","end":"2026-03-04T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-v8tiv9lgc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T17:20:00.000Z","end":"2026-03-04T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-w22zymyd6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T17:45:00.000Z","end":"2026-03-04T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-p7kij5j52","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T18:10:00.000Z","end":"2026-03-04T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-y41fl55va","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T18:35:00.000Z","end":"2026-03-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-4aq5ucdv6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T19:00:00.000Z","end":"2026-03-04T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-t7h500fee","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T19:25:00.000Z","end":"2026-03-04T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-cby7u8vei","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T19:50:00.000Z","end":"2026-03-04T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-u1bk9b179","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T20:15:00.000Z","end":"2026-03-04T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-62g28oelp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T20:40:00.000Z","end":"2026-03-04T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-wvocty7ny","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T21:05:00.000Z","end":"2026-03-04T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-dkviqaaua","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T21:30:00.000Z","end":"2026-03-04T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-9qyn65nbc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-04T21:55:00.000Z","end":"2026-03-04T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-w91tovtd9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-04T22:20:00.000Z","end":"2026-03-04T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-czd2yeao3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T14:00:00.000Z","end":"2026-03-05T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085685-3vvz7en0p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T14:25:00.000Z","end":"2026-03-05T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.685Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-1qr8zqgzk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T14:50:00.000Z","end":"2026-03-05T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-lybejcvwx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T15:15:00.000Z","end":"2026-03-05T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.686Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-vav5tzqfk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T15:40:00.000Z","end":"2026-03-05T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-imco0zygw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T16:05:00.000Z","end":"2026-03-05T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-5sqbljyby","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T16:30:00.000Z","end":"2026-03-05T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.686Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-84uuskgtc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T16:55:00.000Z","end":"2026-03-05T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.686Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-dloua4y3s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T17:20:00.000Z","end":"2026-03-05T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-pr53m5mgu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T17:45:00.000Z","end":"2026-03-05T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.686Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-cvgmkbz0p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T18:10:00.000Z","end":"2026-03-05T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-2b7un16d5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T18:35:00.000Z","end":"2026-03-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.686Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-fsfjqmmy9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T19:00:00.000Z","end":"2026-03-05T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-yv6yo4w2j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T19:25:00.000Z","end":"2026-03-05T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.686Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-x0ghos95m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T19:50:00.000Z","end":"2026-03-05T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-h84e4pcie","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T20:15:00.000Z","end":"2026-03-05T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-nmyh42qlg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T20:40:00.000Z","end":"2026-03-05T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.686Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085686-p5dzi9y0y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T21:05:00.000Z","end":"2026-03-05T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.686Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-bmmwseyr6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T21:30:00.000Z","end":"2026-03-05T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-30v0puwvv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-05T21:55:00.000Z","end":"2026-03-05T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.687Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-xk7uthx4l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-05T22:20:00.000Z","end":"2026-03-05T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-duhwdy06j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T14:00:00.000Z","end":"2026-03-06T14:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.687Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-u02f8gk11","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T14:25:00.000Z","end":"2026-03-06T14:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-9219yv690","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T14:50:00.000Z","end":"2026-03-06T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-a334wddvc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T15:15:00.000Z","end":"2026-03-06T15:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-g273gj6yp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T15:40:00.000Z","end":"2026-03-06T16:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.687Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-n7y7n8f7t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T16:05:00.000Z","end":"2026-03-06T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.687Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-44wp7zeqj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T16:30:00.000Z","end":"2026-03-06T16:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-6niv8jg7e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T16:55:00.000Z","end":"2026-03-06T17:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.687Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-si5z64ki2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T17:20:00.000Z","end":"2026-03-06T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.687Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-e0p217bsy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T17:45:00.000Z","end":"2026-03-06T18:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085687-0rig5ezlm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T18:10:00.000Z","end":"2026-03-06T18:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-cqj9wg5fp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T18:35:00.000Z","end":"2026-03-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-uz4sbogpb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T19:00:00.000Z","end":"2026-03-06T19:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-c87ifetwf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T19:25:00.000Z","end":"2026-03-06T19:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-t287jyke1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T19:50:00.000Z","end":"2026-03-06T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-8dtdwg6bj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T20:15:00.000Z","end":"2026-03-06T20:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-y2n5834e8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T20:40:00.000Z","end":"2026-03-06T21:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-4oqx1mbey","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-06T21:05:00.000Z","end":"2026-03-06T21:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-kerbqyo67","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T21:30:00.000Z","end":"2026-03-06T21:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-2dzri3wq0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T21:55:00.000Z","end":"2026-03-06T22:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-3cd499hjp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-06T22:20:00.000Z","end":"2026-03-06T22:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-q7q90uncm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-09T13:00:00.000Z","end":"2026-03-09T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-wb2ky8ud9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-09T13:25:00.000Z","end":"2026-03-09T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-262v6zrpm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-09T13:50:00.000Z","end":"2026-03-09T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-aqeiqvwgi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T14:15:00.000Z","end":"2026-03-09T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-kn0unv0wm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T14:40:00.000Z","end":"2026-03-09T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-jkmdmrm39","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T15:05:00.000Z","end":"2026-03-09T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-mkufwk134","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T15:30:00.000Z","end":"2026-03-09T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-k9nf3i821","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T15:55:00.000Z","end":"2026-03-09T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-eq3qxqfwa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-09T16:20:00.000Z","end":"2026-03-09T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-8sy1fy6z2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T16:45:00.000Z","end":"2026-03-09T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-tg0rd9svk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T17:10:00.000Z","end":"2026-03-09T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-8a5bdl47u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T17:35:00.000Z","end":"2026-03-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-qw6jvvdrq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T18:00:00.000Z","end":"2026-03-09T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-6l06rr2s6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T18:25:00.000Z","end":"2026-03-09T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-g81bha516","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T18:50:00.000Z","end":"2026-03-09T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-fhzhv48u2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-09T19:15:00.000Z","end":"2026-03-09T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-dlqjymdiv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T19:40:00.000Z","end":"2026-03-09T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-r6mi1o1z1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-09T20:05:00.000Z","end":"2026-03-09T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.245Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-7067bivk2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T20:30:00.000Z","end":"2026-03-09T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-nmtkxtiwx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-09T20:55:00.000Z","end":"2026-03-09T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-ja62wdqiq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-09T21:20:00.000Z","end":"2026-03-09T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-oxg8xxwyb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T13:00:00.000Z","end":"2026-03-10T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-3oy0k0hvv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T13:25:00.000Z","end":"2026-03-10T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-41wpf77h9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T13:50:00.000Z","end":"2026-03-10T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-d5ynvjgej","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T14:15:00.000Z","end":"2026-03-10T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-px8g4oru9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T14:40:00.000Z","end":"2026-03-10T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085688-pp9prajdn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T15:05:00.000Z","end":"2026-03-10T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.688Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-ib9y6y01e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T15:30:00.000Z","end":"2026-03-10T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-91o3j4mc5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T15:55:00.000Z","end":"2026-03-10T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-ymva0vjh2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T16:20:00.000Z","end":"2026-03-10T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-gwxw2gbu0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T16:45:00.000Z","end":"2026-03-10T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-wdh4hng62","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T17:10:00.000Z","end":"2026-03-10T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-e9dztx3h4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T17:35:00.000Z","end":"2026-03-10T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-rqwls7hlw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T18:00:00.000Z","end":"2026-03-10T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-8gymhr7f8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T18:25:00.000Z","end":"2026-03-10T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-jp4vnlbom","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T18:50:00.000Z","end":"2026-03-10T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-ozj2vb525","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T19:15:00.000Z","end":"2026-03-10T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-r0zefoefc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T19:40:00.000Z","end":"2026-03-10T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-i06h1uvcv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-10T20:05:00.000Z","end":"2026-03-10T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-4k2vbcji2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T20:30:00.000Z","end":"2026-03-10T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-yl9iaz10s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T20:55:00.000Z","end":"2026-03-10T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-l2ew1mbf0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-10T21:20:00.000Z","end":"2026-03-10T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-3jhefv3vx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T13:00:00.000Z","end":"2026-03-11T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-htum77i4c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T13:25:00.000Z","end":"2026-03-11T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-njlnpp2u1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T13:50:00.000Z","end":"2026-03-11T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-xvm7dphvc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T14:15:00.000Z","end":"2026-03-11T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-agz627czg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T14:40:00.000Z","end":"2026-03-11T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.689Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-6h28zn8ce","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T15:05:00.000Z","end":"2026-03-11T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085689-kp6suupfq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T15:30:00.000Z","end":"2026-03-11T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.690Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-055yp4fek","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T15:55:00.000Z","end":"2026-03-11T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-fdxjwbdfx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T16:20:00.000Z","end":"2026-03-11T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.690Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-1vk68b6go","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T16:45:00.000Z","end":"2026-03-11T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.690Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-2yxv7jzr2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T17:10:00.000Z","end":"2026-03-11T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-c8t0stxsy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T17:35:00.000Z","end":"2026-03-11T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.690Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-w74ag4fht","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T18:00:00.000Z","end":"2026-03-11T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.690Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-gnb1z84kd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T18:25:00.000Z","end":"2026-03-11T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.206Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-oiwqf5u2k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T18:50:00.000Z","end":"2026-03-11T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-p0mpyl8gp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T19:15:00.000Z","end":"2026-03-11T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.690Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-gubgcqq4x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-11T19:40:00.000Z","end":"2026-03-11T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.690Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-4rt2im0qm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T20:05:00.000Z","end":"2026-03-11T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-p8x8z8k5x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T20:30:00.000Z","end":"2026-03-11T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-vhp03tz9x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T20:55:00.000Z","end":"2026-03-11T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-9a0jsm6ma","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-11T21:20:00.000Z","end":"2026-03-11T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085690-o9dsvzwqo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T13:00:00.000Z","end":"2026-03-12T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-s44sp3jg4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T13:25:00.000Z","end":"2026-03-12T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-e1s7boqgr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-12T13:50:00.000Z","end":"2026-03-12T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-ijqvp1anv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-12T14:15:00.000Z","end":"2026-03-12T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-x8xx0i4dq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T14:40:00.000Z","end":"2026-03-12T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-5kg7uz7jr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T15:05:00.000Z","end":"2026-03-12T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-d7rlk48je","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T15:30:00.000Z","end":"2026-03-12T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-ktbp3g34o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T15:55:00.000Z","end":"2026-03-12T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.245Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-vne7x1pkp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-12T16:20:00.000Z","end":"2026-03-12T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-wvvd7y5z5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T16:45:00.000Z","end":"2026-03-12T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-amkoo7wbs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T17:10:00.000Z","end":"2026-03-12T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.256Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-wpzpyofrx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T17:35:00.000Z","end":"2026-03-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-4ab4pf1ix","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-12T18:00:00.000Z","end":"2026-03-12T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-1r3wfyd01","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T18:25:00.000Z","end":"2026-03-12T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-ag67j43pj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-12T18:50:00.000Z","end":"2026-03-12T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-7m2gwg94b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T19:15:00.000Z","end":"2026-03-12T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-vb4yanucd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-12T19:40:00.000Z","end":"2026-03-12T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-b2t1h64x2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T20:05:00.000Z","end":"2026-03-12T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-8adao1yu4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-12T20:30:00.000Z","end":"2026-03-12T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-e80og1sdc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-12T20:55:00.000Z","end":"2026-03-12T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-82wv467gn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-12T21:20:00.000Z","end":"2026-03-12T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.256Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-tvgd4n2rf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-13T13:00:00.000Z","end":"2026-03-13T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-qw6ka7rg8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T13:25:00.000Z","end":"2026-03-13T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-6srcn5ush","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T13:50:00.000Z","end":"2026-03-13T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-m6fli9f9h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T14:15:00.000Z","end":"2026-03-13T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-wo6wxegor","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T14:40:00.000Z","end":"2026-03-13T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-d0lzm3vzl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T15:05:00.000Z","end":"2026-03-13T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-q088x74x8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T15:30:00.000Z","end":"2026-03-13T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-njwfnin5c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T15:55:00.000Z","end":"2026-03-13T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-gnnmtfnzk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-13T16:20:00.000Z","end":"2026-03-13T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-2mnwixn3d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T16:45:00.000Z","end":"2026-03-13T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085691-stvk0y1l9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T17:10:00.000Z","end":"2026-03-13T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.691Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-xebahuflq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T17:35:00.000Z","end":"2026-03-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-zu82j4ift","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T18:00:00.000Z","end":"2026-03-13T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-jyfbv7rba","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-13T18:25:00.000Z","end":"2026-03-13T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-rdxypxuzz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-13T18:50:00.000Z","end":"2026-03-13T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-2k6qtq0ws","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-13T19:15:00.000Z","end":"2026-03-13T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-vu9m658hw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T19:40:00.000Z","end":"2026-03-13T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-lkbfg3qot","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-13T20:05:00.000Z","end":"2026-03-13T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-mfl51v79l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-13T20:30:00.000Z","end":"2026-03-13T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-usa9zfs7y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-13T20:55:00.000Z","end":"2026-03-13T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-0h14cl9aq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-13T21:20:00.000Z","end":"2026-03-13T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-q3zf9y7v0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T13:00:00.000Z","end":"2026-03-16T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-kpe4zsqe5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T13:25:00.000Z","end":"2026-03-16T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-6xzyga0vl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T13:50:00.000Z","end":"2026-03-16T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-7218n4ath","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T14:15:00.000Z","end":"2026-03-16T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-wpqkbf5tc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T14:40:00.000Z","end":"2026-03-16T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-e50rzzplo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-16T15:05:00.000Z","end":"2026-03-16T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-rty98lcpa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-16T15:30:00.000Z","end":"2026-03-16T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-oi6livbu5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-16T15:55:00.000Z","end":"2026-03-16T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-p706kb7ih","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-16T16:20:00.000Z","end":"2026-03-16T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-vslf3476z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T16:45:00.000Z","end":"2026-03-16T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.289Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-3sp5h2q81","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-16T17:10:00.000Z","end":"2026-03-16T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-n0k7ehjfy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-16T17:35:00.000Z","end":"2026-03-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-7256zxo9o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T18:00:00.000Z","end":"2026-03-16T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-ka9mnjsam","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T18:25:00.000Z","end":"2026-03-16T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-d26k2sfvj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-16T18:50:00.000Z","end":"2026-03-16T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-l7aolppq2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T19:15:00.000Z","end":"2026-03-16T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-ezsgjw5ce","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T19:40:00.000Z","end":"2026-03-16T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-owltusrm8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-16T20:05:00.000Z","end":"2026-03-16T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-p3vzpzlvw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T20:30:00.000Z","end":"2026-03-16T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-ioclaqv26","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T20:55:00.000Z","end":"2026-03-16T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-mtxa3dzg8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-16T21:20:00.000Z","end":"2026-03-16T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-5vofo30wi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T13:00:00.000Z","end":"2026-03-17T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-7kihott32","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T13:25:00.000Z","end":"2026-03-17T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-blpo8swhe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T13:50:00.000Z","end":"2026-03-17T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-gofnopz5r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T14:15:00.000Z","end":"2026-03-17T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.692Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-ufibj7pg7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T14:40:00.000Z","end":"2026-03-17T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085692-gk2gnt76u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T15:05:00.000Z","end":"2026-03-17T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-xrzx4qwaf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T15:30:00.000Z","end":"2026-03-17T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-g7e9rcrd8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T15:55:00.000Z","end":"2026-03-17T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-afimv12d8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T16:20:00.000Z","end":"2026-03-17T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-e45dul5t0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T16:45:00.000Z","end":"2026-03-17T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-nxaf2oqj1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T17:10:00.000Z","end":"2026-03-17T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-o4symvzg4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T17:35:00.000Z","end":"2026-03-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-6t5qsn4a4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T18:00:00.000Z","end":"2026-03-17T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-fiiz7g66o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T18:25:00.000Z","end":"2026-03-17T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-t9k6xihkr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T18:50:00.000Z","end":"2026-03-17T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-l56w340jx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T19:15:00.000Z","end":"2026-03-17T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-ketw39fb1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T19:40:00.000Z","end":"2026-03-17T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-myyy4uutv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T20:05:00.000Z","end":"2026-03-17T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-hxxgu1mvl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-17T20:30:00.000Z","end":"2026-03-17T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-m0dop0gyd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T20:55:00.000Z","end":"2026-03-17T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-qrm17mp6h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-17T21:20:00.000Z","end":"2026-03-17T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-gxqabwn6z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T13:00:00.000Z","end":"2026-03-18T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-0awt3owje","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T13:25:00.000Z","end":"2026-03-18T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-4sdwg86ga","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T13:50:00.000Z","end":"2026-03-18T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-a1nt4qc7g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T14:15:00.000Z","end":"2026-03-18T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085693-skgr9ucq1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T14:40:00.000Z","end":"2026-03-18T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.693Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-dkib91ymf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T15:05:00.000Z","end":"2026-03-18T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-dy06cnfg7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T15:30:00.000Z","end":"2026-03-18T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.694Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-nug4jubfw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T15:55:00.000Z","end":"2026-03-18T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.694Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-xeypu5rnd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T16:20:00.000Z","end":"2026-03-18T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.694Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-n4sj3b3b2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T16:45:00.000Z","end":"2026-03-18T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.694Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-hw1h1zl3e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T17:10:00.000Z","end":"2026-03-18T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-uuiwvxsyp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T17:35:00.000Z","end":"2026-03-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.694Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-ukstywp2p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T18:00:00.000Z","end":"2026-03-18T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.208Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-yko3d1agq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T18:25:00.000Z","end":"2026-03-18T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-zzo12uerm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T18:50:00.000Z","end":"2026-03-18T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.694Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085694-ttekllem5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T19:15:00.000Z","end":"2026-03-18T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-jk4ts10uk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T19:40:00.000Z","end":"2026-03-18T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-h0j3s8zjo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T20:05:00.000Z","end":"2026-03-18T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-k51apbhzh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T20:30:00.000Z","end":"2026-03-18T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-6jk4ajjh4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-18T20:55:00.000Z","end":"2026-03-18T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-flyje5zak","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-18T21:20:00.000Z","end":"2026-03-18T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.289Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-28ixkgh9x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T13:00:00.000Z","end":"2026-03-19T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-ddhpns1ki","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T13:25:00.000Z","end":"2026-03-19T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-v55diy5r7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T13:50:00.000Z","end":"2026-03-19T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-mal9lbjbb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T14:15:00.000Z","end":"2026-03-19T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-r8u07p9jo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-19T14:40:00.000Z","end":"2026-03-19T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-1w5vwff9m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T15:05:00.000Z","end":"2026-03-19T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-1om3r8v1k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T15:30:00.000Z","end":"2026-03-19T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-14k5aqx6z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-19T15:55:00.000Z","end":"2026-03-19T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-wih33ern4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T16:20:00.000Z","end":"2026-03-19T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-z7lii03u0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-19T16:45:00.000Z","end":"2026-03-19T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-l4ommef90","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T17:10:00.000Z","end":"2026-03-19T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-z45bra5bm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-19T17:35:00.000Z","end":"2026-03-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-cjlp5vp4r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-19T18:00:00.000Z","end":"2026-03-19T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-bh86m4e3h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-19T18:25:00.000Z","end":"2026-03-19T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-xxax7ir05","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T18:50:00.000Z","end":"2026-03-19T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-9il8ju063","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T19:15:00.000Z","end":"2026-03-19T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-k026dosf2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-19T19:40:00.000Z","end":"2026-03-19T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-yup62p0hy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T20:05:00.000Z","end":"2026-03-19T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-rxuu8lf46","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-19T20:30:00.000Z","end":"2026-03-19T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-9ows3r7j1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T20:55:00.000Z","end":"2026-03-19T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-chh46jlgx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-19T21:20:00.000Z","end":"2026-03-19T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-uguu8minv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T13:00:00.000Z","end":"2026-03-20T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-6l9l4m9jx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T13:25:00.000Z","end":"2026-03-20T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-wcssflz3d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T13:50:00.000Z","end":"2026-03-20T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.695Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085695-rnwnjzr1v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T14:15:00.000Z","end":"2026-03-20T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-ipjmgyewc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T14:40:00.000Z","end":"2026-03-20T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-z22ac6ua5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T15:05:00.000Z","end":"2026-03-20T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-dkc6u98ap","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T15:30:00.000Z","end":"2026-03-20T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-tbr1ogafv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T15:55:00.000Z","end":"2026-03-20T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-d0itmypwp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T16:20:00.000Z","end":"2026-03-20T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-jpmovxfug","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T16:45:00.000Z","end":"2026-03-20T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-1pg2sgi7y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T17:10:00.000Z","end":"2026-03-20T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-u9puqnag7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T17:35:00.000Z","end":"2026-03-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-a916jh5is","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T18:00:00.000Z","end":"2026-03-20T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-pd5172zjl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T18:25:00.000Z","end":"2026-03-20T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-qjsod5i87","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T18:50:00.000Z","end":"2026-03-20T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-mn8qsnv9y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T19:15:00.000Z","end":"2026-03-20T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-hn0narxhy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T19:40:00.000Z","end":"2026-03-20T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-q65ig9ukw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-20T20:05:00.000Z","end":"2026-03-20T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-4um30l6zm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T20:30:00.000Z","end":"2026-03-20T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-gou68yd86","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T20:55:00.000Z","end":"2026-03-20T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-nwph4bekl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-20T21:20:00.000Z","end":"2026-03-20T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-g0hutdhe6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T13:00:00.000Z","end":"2026-03-23T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-15j7ocpci","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T13:25:00.000Z","end":"2026-03-23T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-hxdkkk4iv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T13:50:00.000Z","end":"2026-03-23T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-krx91fymh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T14:15:00.000Z","end":"2026-03-23T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-efkdz1007","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T14:40:00.000Z","end":"2026-03-23T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-5o2c265vw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T15:05:00.000Z","end":"2026-03-23T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-ed7f1ofcj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T15:30:00.000Z","end":"2026-03-23T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-go9a23kjj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T15:55:00.000Z","end":"2026-03-23T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-uo02ic26d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T16:20:00.000Z","end":"2026-03-23T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-bal7iqfy7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T16:45:00.000Z","end":"2026-03-23T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-he1gourcb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T17:10:00.000Z","end":"2026-03-23T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-b1l9nd2tw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T17:35:00.000Z","end":"2026-03-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-7mejpfu4a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T18:00:00.000Z","end":"2026-03-23T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-5feupoxdv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T18:25:00.000Z","end":"2026-03-23T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.696Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-ombjpk74k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T18:50:00.000Z","end":"2026-03-23T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085696-dqchzdmnd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T19:15:00.000Z","end":"2026-03-23T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-okukoneeh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T19:40:00.000Z","end":"2026-03-23T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-ej0v90tt7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-23T20:05:00.000Z","end":"2026-03-23T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-0xzwgfsnr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T20:30:00.000Z","end":"2026-03-23T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-rvppvzxpr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T20:55:00.000Z","end":"2026-03-23T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-p4i7mq5go","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-23T21:20:00.000Z","end":"2026-03-23T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-3k8yr1a4l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T13:00:00.000Z","end":"2026-03-24T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-muwwomuq7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T13:25:00.000Z","end":"2026-03-24T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-9ltip05o2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T13:50:00.000Z","end":"2026-03-24T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-qqium8cnt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T14:15:00.000Z","end":"2026-03-24T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-n4n3ywzau","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T14:40:00.000Z","end":"2026-03-24T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-o3iht2uyp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T15:05:00.000Z","end":"2026-03-24T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-8uc6d2cxz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T15:30:00.000Z","end":"2026-03-24T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-fxtocqzxn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T15:55:00.000Z","end":"2026-03-24T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-9cx43fw8g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T16:20:00.000Z","end":"2026-03-24T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-gvec3rfsc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T16:45:00.000Z","end":"2026-03-24T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-fmc823kck","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T17:10:00.000Z","end":"2026-03-24T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-epnzikqiw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T17:35:00.000Z","end":"2026-03-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-kfv6cqzyt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T18:00:00.000Z","end":"2026-03-24T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-tl9sz0vz7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T18:25:00.000Z","end":"2026-03-24T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-0nb2q477s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T18:50:00.000Z","end":"2026-03-24T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-6q9oixqq6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T19:15:00.000Z","end":"2026-03-24T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-zg56563rw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-24T19:40:00.000Z","end":"2026-03-24T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-1brckyza3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T20:05:00.000Z","end":"2026-03-24T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-9x7zi2g79","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T20:30:00.000Z","end":"2026-03-24T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-2w320jshg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T20:55:00.000Z","end":"2026-03-24T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-89cobvh76","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-24T21:20:00.000Z","end":"2026-03-24T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-sb0ypypx6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T13:00:00.000Z","end":"2026-03-25T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-mwtevf81q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T13:25:00.000Z","end":"2026-03-25T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-25cv7tgho","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T13:50:00.000Z","end":"2026-03-25T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-5rmqek7ey","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T14:15:00.000Z","end":"2026-03-25T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-guhadfhs5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T14:40:00.000Z","end":"2026-03-25T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-eapglwrnk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T15:05:00.000Z","end":"2026-03-25T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-105t9w8cd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T15:30:00.000Z","end":"2026-03-25T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-ttsa4iolz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T15:55:00.000Z","end":"2026-03-25T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-jaogi3t7c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T16:20:00.000Z","end":"2026-03-25T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-1u2l1hzgk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T16:45:00.000Z","end":"2026-03-25T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-6xienqs6i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T17:10:00.000Z","end":"2026-03-25T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085697-7eot8fhmy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T17:35:00.000Z","end":"2026-03-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.697Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-n8r7fny6s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T18:00:00.000Z","end":"2026-03-25T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-3849n0iae","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T18:25:00.000Z","end":"2026-03-25T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-iyasdmjt3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T18:50:00.000Z","end":"2026-03-25T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-udgwm0rjo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T19:15:00.000Z","end":"2026-03-25T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-ll96oxs1o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T19:40:00.000Z","end":"2026-03-25T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-n9adve4eb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-25T20:05:00.000Z","end":"2026-03-25T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-yuxuxvbx9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T20:30:00.000Z","end":"2026-03-25T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-0v4vksr4m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T20:55:00.000Z","end":"2026-03-25T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-uhkez6a4k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-25T21:20:00.000Z","end":"2026-03-25T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-qgsw7rtgj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T13:00:00.000Z","end":"2026-03-26T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-aw2cq4aug","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T13:25:00.000Z","end":"2026-03-26T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-5dxtusb26","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T13:50:00.000Z","end":"2026-03-26T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-c1q219pfd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T14:15:00.000Z","end":"2026-03-26T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-bfbhnwrdi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T14:40:00.000Z","end":"2026-03-26T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-ezitpzmjt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T15:05:00.000Z","end":"2026-03-26T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-x3ix1so05","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T15:30:00.000Z","end":"2026-03-26T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-emto2177o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T15:55:00.000Z","end":"2026-03-26T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-v1u3g3lwj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T16:20:00.000Z","end":"2026-03-26T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-vd9fyivsj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T16:45:00.000Z","end":"2026-03-26T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-ct3xop0fd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T17:10:00.000Z","end":"2026-03-26T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-s9qkils86","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T17:35:00.000Z","end":"2026-03-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-0e8nbtows","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T18:00:00.000Z","end":"2026-03-26T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-y2j6winnc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T18:25:00.000Z","end":"2026-03-26T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-mhgr3stkj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T18:50:00.000Z","end":"2026-03-26T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-q2fi3hu7e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T19:15:00.000Z","end":"2026-03-26T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-urtf4i4bt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T19:40:00.000Z","end":"2026-03-26T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-9j3pjr40g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T20:05:00.000Z","end":"2026-03-26T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-b566yzkmd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-26T20:30:00.000Z","end":"2026-03-26T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-rzj1oyfn7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T20:55:00.000Z","end":"2026-03-26T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-756nvpjn3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-26T21:20:00.000Z","end":"2026-03-26T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-xxjfd21ox","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T13:00:00.000Z","end":"2026-03-27T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-hk596b2d0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T13:25:00.000Z","end":"2026-03-27T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-b8qirm1e6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T13:50:00.000Z","end":"2026-03-27T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-egale9ae1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-27T14:15:00.000Z","end":"2026-03-27T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085698-kfykx2gh8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T14:40:00.000Z","end":"2026-03-27T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.698Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-oapwvgv77","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T15:05:00.000Z","end":"2026-03-27T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-pdcmkts9b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-27T15:30:00.000Z","end":"2026-03-27T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-8p1ntfre9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-27T15:55:00.000Z","end":"2026-03-27T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-xrduuvll3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-27T16:20:00.000Z","end":"2026-03-27T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-0fa9pcy6q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T16:45:00.000Z","end":"2026-03-27T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-e552qsjes","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T17:10:00.000Z","end":"2026-03-27T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-s255vp0xl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-27T17:35:00.000Z","end":"2026-03-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-lovuhhpk2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T18:00:00.000Z","end":"2026-03-27T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-plf895ni5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T18:25:00.000Z","end":"2026-03-27T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-6h8oc4d32","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T18:50:00.000Z","end":"2026-03-27T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-j9lfglqvp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-27T19:15:00.000Z","end":"2026-03-27T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-e079rctl9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-27T19:40:00.000Z","end":"2026-03-27T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-guh8mow8d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T20:05:00.000Z","end":"2026-03-27T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-xmf4whc6o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T20:30:00.000Z","end":"2026-03-27T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-joaqydwiv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-27T20:55:00.000Z","end":"2026-03-27T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-tp1p0045g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-27T21:20:00.000Z","end":"2026-03-27T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-179cao2e9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T13:00:00.000Z","end":"2026-03-30T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085699-h7uaysxmy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T13:25:00.000Z","end":"2026-03-30T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.699Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-w680bbh0n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T13:50:00.000Z","end":"2026-03-30T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.700Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-kqksl8wt1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T14:15:00.000Z","end":"2026-03-30T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.700Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-a1uukorbj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T14:40:00.000Z","end":"2026-03-30T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-0f2isnz8k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T15:05:00.000Z","end":"2026-03-30T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.700Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-1pltb43ir","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T15:30:00.000Z","end":"2026-03-30T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.700Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-c8fb1tyw2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T15:55:00.000Z","end":"2026-03-30T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.700Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-ttl0sse0k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T16:20:00.000Z","end":"2026-03-30T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-ftjkwondn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T16:45:00.000Z","end":"2026-03-30T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.314Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085700-ry9id0ssp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T17:10:00.000Z","end":"2026-03-30T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-t4d3x2932","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T17:35:00.000Z","end":"2026-03-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-ohjqprblu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T18:00:00.000Z","end":"2026-03-30T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-4rlporg2w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T18:25:00.000Z","end":"2026-03-30T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-ywqzbivme","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T18:50:00.000Z","end":"2026-03-30T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-f8ce9sxrz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T19:15:00.000Z","end":"2026-03-30T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-8207g0lkk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T19:40:00.000Z","end":"2026-03-30T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-b3fl31anb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T20:05:00.000Z","end":"2026-03-30T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-xyqasz07r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T20:30:00.000Z","end":"2026-03-30T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-6zuhfyf8h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-30T20:55:00.000Z","end":"2026-03-30T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-8e990i9v1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-30T21:20:00.000Z","end":"2026-03-30T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-2dv94xkjf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T13:00:00.000Z","end":"2026-03-31T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-7hdo6macw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T13:25:00.000Z","end":"2026-03-31T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.323Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-n2yycsi3d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T13:50:00.000Z","end":"2026-03-31T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-1c5yiv96g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T14:15:00.000Z","end":"2026-03-31T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-0d79u1r8c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T14:40:00.000Z","end":"2026-03-31T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-lsnj2bi2q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T15:05:00.000Z","end":"2026-03-31T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-pyjjo96fb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T15:30:00.000Z","end":"2026-03-31T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-kv4oov2uf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T15:55:00.000Z","end":"2026-03-31T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-b7cxvo1xw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T16:20:00.000Z","end":"2026-03-31T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-0ux2yv5rq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T16:45:00.000Z","end":"2026-03-31T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-b9a9mxjvl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T17:10:00.000Z","end":"2026-03-31T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-4r9f8cbg1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T17:35:00.000Z","end":"2026-03-31T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-59c3mgyj3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T18:00:00.000Z","end":"2026-03-31T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-w8r8or3r4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T18:25:00.000Z","end":"2026-03-31T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-7cttwcdps","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T18:50:00.000Z","end":"2026-03-31T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-ojrzqq7xr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T19:15:00.000Z","end":"2026-03-31T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-zapux68nf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T19:40:00.000Z","end":"2026-03-31T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-rtjtb2c2h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T20:05:00.000Z","end":"2026-03-31T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-7vxhmtyah","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T20:30:00.000Z","end":"2026-03-31T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-sxl8yk232","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-03-31T20:55:00.000Z","end":"2026-03-31T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-tv14moydg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-03-31T21:20:00.000Z","end":"2026-03-31T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-1end1tizf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T13:00:00.000Z","end":"2026-04-01T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-ho9zzrf0b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T13:25:00.000Z","end":"2026-04-01T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-z6herk91e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T13:50:00.000Z","end":"2026-04-01T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.701Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-7l364bi2f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-01T14:15:00.000Z","end":"2026-04-01T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-ljizh7v2g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-01T14:40:00.000Z","end":"2026-04-01T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085701-sinldcv53","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-01T15:05:00.000Z","end":"2026-04-01T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-jp9mqbwke","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-01T15:30:00.000Z","end":"2026-04-01T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-aza704jfz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-01T15:55:00.000Z","end":"2026-04-01T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-kzytvy3l4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T16:20:00.000Z","end":"2026-04-01T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-epm4ajnw9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-01T16:45:00.000Z","end":"2026-04-01T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-3r7x8hpod","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T17:10:00.000Z","end":"2026-04-01T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-7de5zkm0r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T17:35:00.000Z","end":"2026-04-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-wcx15ea94","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T18:00:00.000Z","end":"2026-04-01T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-i58zc6rp2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T18:25:00.000Z","end":"2026-04-01T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-4u4hrzlvz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T18:50:00.000Z","end":"2026-04-01T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-e8ba0n4xl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-01T19:15:00.000Z","end":"2026-04-01T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-8ah1zhhi3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-01T19:40:00.000Z","end":"2026-04-01T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-e7kgtiyl2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T20:05:00.000Z","end":"2026-04-01T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-xz1joy0u8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T20:30:00.000Z","end":"2026-04-01T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-543hfr577","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T20:55:00.000Z","end":"2026-04-01T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-qvgu9b4zr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-01T21:20:00.000Z","end":"2026-04-01T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-l5jkdojir","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T13:00:00.000Z","end":"2026-04-02T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-nohc73w9f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T13:25:00.000Z","end":"2026-04-02T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-3hyjy6ibj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-02T13:50:00.000Z","end":"2026-04-02T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-umqtlxld2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-02T14:15:00.000Z","end":"2026-04-02T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-zd305e6vi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-02T14:40:00.000Z","end":"2026-04-02T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-ly4iapjdz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T15:05:00.000Z","end":"2026-04-02T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-olh2ha8h4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T15:30:00.000Z","end":"2026-04-02T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-5dalk60xt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T15:55:00.000Z","end":"2026-04-02T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-rwi5knt1q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T16:20:00.000Z","end":"2026-04-02T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-vyif4ysl4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T16:45:00.000Z","end":"2026-04-02T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-arqp97cwv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T17:10:00.000Z","end":"2026-04-02T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-0bb4gsoep","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-02T17:35:00.000Z","end":"2026-04-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-bq6uy8qj1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T18:00:00.000Z","end":"2026-04-02T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-6nek8qr95","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T18:25:00.000Z","end":"2026-04-02T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-eku0savlm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-02T18:50:00.000Z","end":"2026-04-02T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-qa6h1owms","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T19:15:00.000Z","end":"2026-04-02T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-yb68xaggq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-02T19:40:00.000Z","end":"2026-04-02T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-vggcnp0f5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T20:05:00.000Z","end":"2026-04-02T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-ha5ypdkxu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T20:30:00.000Z","end":"2026-04-02T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-laporkxpd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-02T20:55:00.000Z","end":"2026-04-02T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-r5v0ehzbv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-02T21:20:00.000Z","end":"2026-04-02T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.702Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085702-6kwqzpgpv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T13:00:00.000Z","end":"2026-04-03T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.214Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-rf2hnucd0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T13:25:00.000Z","end":"2026-04-03T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-l3g1sriu7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T13:50:00.000Z","end":"2026-04-03T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-8ub5yrsjd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T14:15:00.000Z","end":"2026-04-03T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-0qc3tynke","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-03T14:40:00.000Z","end":"2026-04-03T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-6a4wyv8u6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T15:05:00.000Z","end":"2026-04-03T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-2k93p0z7i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-03T15:30:00.000Z","end":"2026-04-03T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-grz2i51ad","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-03T15:55:00.000Z","end":"2026-04-03T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-97llqknrv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T16:20:00.000Z","end":"2026-04-03T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-lw965e8dx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-03T16:45:00.000Z","end":"2026-04-03T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-hlcwbtljk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T17:10:00.000Z","end":"2026-04-03T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-kky5culll","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-03T17:35:00.000Z","end":"2026-04-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-w1o4d1baw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-03T18:00:00.000Z","end":"2026-04-03T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-m33qes49b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T18:25:00.000Z","end":"2026-04-03T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-hyj41xiiq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T18:50:00.000Z","end":"2026-04-03T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-bc6dkzx8v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T19:15:00.000Z","end":"2026-04-03T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-gsh0fz6ni","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T19:40:00.000Z","end":"2026-04-03T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-5jwiszc65","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T20:05:00.000Z","end":"2026-04-03T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-pl5inll4y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T20:30:00.000Z","end":"2026-04-03T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-jsdcil0bo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-03T20:55:00.000Z","end":"2026-04-03T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-d6ewxz36u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-03T21:20:00.000Z","end":"2026-04-03T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-38mjmpakf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T13:00:00.000Z","end":"2026-04-06T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-62bkehwso","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T13:25:00.000Z","end":"2026-04-06T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-w51316t3s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T13:50:00.000Z","end":"2026-04-06T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-doonb2zik","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-06T14:15:00.000Z","end":"2026-04-06T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-42jdpvrkl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-06T14:40:00.000Z","end":"2026-04-06T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-gg31o9rd3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T15:05:00.000Z","end":"2026-04-06T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-a9at8qc2e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T15:30:00.000Z","end":"2026-04-06T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-bh40jj2ce","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-06T15:55:00.000Z","end":"2026-04-06T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-9si6jepgc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T16:20:00.000Z","end":"2026-04-06T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-wq801dioy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-06T16:45:00.000Z","end":"2026-04-06T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-rq5yq86tb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-06T17:10:00.000Z","end":"2026-04-06T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-n9gvuxm3s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T17:35:00.000Z","end":"2026-04-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-v95xflzh3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T18:00:00.000Z","end":"2026-04-06T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085703-d3o7abaeb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-06T18:25:00.000Z","end":"2026-04-06T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.703Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-qk1wc7la5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T18:50:00.000Z","end":"2026-04-06T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-r0z0nc40u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T19:15:00.000Z","end":"2026-04-06T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-gisnfqzel","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T19:40:00.000Z","end":"2026-04-06T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-l6gz5k04e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T20:05:00.000Z","end":"2026-04-06T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-33iled1wl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T20:30:00.000Z","end":"2026-04-06T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-xflg7r9yk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T20:55:00.000Z","end":"2026-04-06T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-wz8dtpu3x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-06T21:20:00.000Z","end":"2026-04-06T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-u7umi8240","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-07T13:00:00.000Z","end":"2026-04-07T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-c0jwr9a7h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T13:25:00.000Z","end":"2026-04-07T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-dnknxadzp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T13:50:00.000Z","end":"2026-04-07T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-1pv4h18wd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T14:15:00.000Z","end":"2026-04-07T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.187Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-ysfs93vl5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T14:40:00.000Z","end":"2026-04-07T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.186Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-7dl1ifkhx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T15:05:00.000Z","end":"2026-04-07T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-miuaph6n5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T15:30:00.000Z","end":"2026-04-07T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-ycodym82d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T15:55:00.000Z","end":"2026-04-07T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-zrfo7p109","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T16:20:00.000Z","end":"2026-04-07T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-x5tutwkqw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-07T16:45:00.000Z","end":"2026-04-07T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-hel5scgjw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-07T17:10:00.000Z","end":"2026-04-07T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-6qajikxfz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T17:35:00.000Z","end":"2026-04-07T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-qhmj4g0ys","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-07T18:00:00.000Z","end":"2026-04-07T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-na43xqz8i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T18:25:00.000Z","end":"2026-04-07T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-9kptyfvvb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T18:50:00.000Z","end":"2026-04-07T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-ooem2igi6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-07T19:15:00.000Z","end":"2026-04-07T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-ph3wu5b1y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-07T19:40:00.000Z","end":"2026-04-07T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-mt1eha68l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T20:05:00.000Z","end":"2026-04-07T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-0ajatfdcl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T20:30:00.000Z","end":"2026-04-07T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-ask7k111g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T20:55:00.000Z","end":"2026-04-07T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-iytons031","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-07T21:20:00.000Z","end":"2026-04-07T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-pcnzroz5h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T13:00:00.000Z","end":"2026-04-08T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-5djlbpgtg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T13:25:00.000Z","end":"2026-04-08T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-zoes5a8jq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T13:50:00.000Z","end":"2026-04-08T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-4p0afu4eb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T14:15:00.000Z","end":"2026-04-08T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-q3tdmv3eh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T14:40:00.000Z","end":"2026-04-08T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.302Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-ox5y1lqq0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T15:05:00.000Z","end":"2026-04-08T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085704-mfz9kbvz2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T15:30:00.000Z","end":"2026-04-08T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.704Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-mpfozca7r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T15:55:00.000Z","end":"2026-04-08T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-lw197zunz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T16:20:00.000Z","end":"2026-04-08T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-2vd5xg2m6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T16:45:00.000Z","end":"2026-04-08T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-vnvevcj3i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T17:10:00.000Z","end":"2026-04-08T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-3pzefmoa5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T17:35:00.000Z","end":"2026-04-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-4hr8mfc47","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T18:00:00.000Z","end":"2026-04-08T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-gexra1gtw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T18:25:00.000Z","end":"2026-04-08T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-hbtfnxl6m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T18:50:00.000Z","end":"2026-04-08T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-47lgt1wur","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-08T19:15:00.000Z","end":"2026-04-08T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-g2f9pqq6f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T19:40:00.000Z","end":"2026-04-08T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-pw573yyr2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T20:05:00.000Z","end":"2026-04-08T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-cw3k3m2o8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T20:30:00.000Z","end":"2026-04-08T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-8m5dj0he8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T20:55:00.000Z","end":"2026-04-08T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-hasxe5bpu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-08T21:20:00.000Z","end":"2026-04-08T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-2gdiukq8z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-09T13:00:00.000Z","end":"2026-04-09T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.278Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-zjo01jlfg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-09T13:25:00.000Z","end":"2026-04-09T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-agxbw6zrk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-09T13:50:00.000Z","end":"2026-04-09T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-t1l8gn658","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T14:15:00.000Z","end":"2026-04-09T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085705-c0gqwrvnm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T14:40:00.000Z","end":"2026-04-09T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.705Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-522vhtnly","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T15:05:00.000Z","end":"2026-04-09T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.706Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-wi2vupreg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T15:30:00.000Z","end":"2026-04-09T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.706Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-nyn38f4aq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T15:55:00.000Z","end":"2026-04-09T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.706Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-e60ry1r65","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T16:20:00.000Z","end":"2026-04-09T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.706Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-243veeexg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-09T16:45:00.000Z","end":"2026-04-09T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-ajoo0tcpf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T17:10:00.000Z","end":"2026-04-09T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.706Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-wrbadd6lt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T17:35:00.000Z","end":"2026-04-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.706Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-mkwzgqeo0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T18:00:00.000Z","end":"2026-04-09T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.706Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085706-mzf9ni8ye","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T18:25:00.000Z","end":"2026-04-09T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.706Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-m6j4rcq7u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-09T18:50:00.000Z","end":"2026-04-09T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-nakt3eq0a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T19:15:00.000Z","end":"2026-04-09T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-3rthyhxik","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T19:40:00.000Z","end":"2026-04-09T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-oqr5njdrf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T20:05:00.000Z","end":"2026-04-09T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-alytqbq2m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-09T20:30:00.000Z","end":"2026-04-09T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-qq9xuusxq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T20:55:00.000Z","end":"2026-04-09T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-6lxdyg2mw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-09T21:20:00.000Z","end":"2026-04-09T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-urhmi8ykh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T13:00:00.000Z","end":"2026-04-10T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-06fs7b3pz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T13:25:00.000Z","end":"2026-04-10T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-j59c6b9rf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T13:50:00.000Z","end":"2026-04-10T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-qok6biess","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T14:15:00.000Z","end":"2026-04-10T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-49ogvean1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T14:40:00.000Z","end":"2026-04-10T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-bgwpfhzoa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T15:05:00.000Z","end":"2026-04-10T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-j7wwkjztw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T15:30:00.000Z","end":"2026-04-10T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-4km2m4omg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T15:55:00.000Z","end":"2026-04-10T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-bqt714qpw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T16:20:00.000Z","end":"2026-04-10T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-s2im1j301","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T16:45:00.000Z","end":"2026-04-10T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-r9zu2spry","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T17:10:00.000Z","end":"2026-04-10T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-a50asygfj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T17:35:00.000Z","end":"2026-04-10T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-6nqld2mdv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T18:00:00.000Z","end":"2026-04-10T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-k0h6ivayd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T18:25:00.000Z","end":"2026-04-10T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-ro7ovfqs8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T18:50:00.000Z","end":"2026-04-10T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-qwslb0ltn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T19:15:00.000Z","end":"2026-04-10T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.273Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-80kf9brk6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T19:40:00.000Z","end":"2026-04-10T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-f47gguxfe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T20:05:00.000Z","end":"2026-04-10T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.241Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-cjspm3uvp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-10T20:30:00.000Z","end":"2026-04-10T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-p6rf51woc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T20:55:00.000Z","end":"2026-04-10T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-jm7z6hu5l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-10T21:20:00.000Z","end":"2026-04-10T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-lxqgpetm1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T13:00:00.000Z","end":"2026-04-13T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-pd4roh4jw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T13:25:00.000Z","end":"2026-04-13T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-olvx861fh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T13:50:00.000Z","end":"2026-04-13T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-fgrij4q2o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-13T14:15:00.000Z","end":"2026-04-13T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-lfsqtx8hj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T14:40:00.000Z","end":"2026-04-13T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-ni4lo92tk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T15:05:00.000Z","end":"2026-04-13T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.707Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085707-6uiaqnsxc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-13T15:30:00.000Z","end":"2026-04-13T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-jl4y540cn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T15:55:00.000Z","end":"2026-04-13T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-2pqut5mw5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-13T16:20:00.000Z","end":"2026-04-13T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-te3rpvipx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T16:45:00.000Z","end":"2026-04-13T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-0tmdnkiyt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T17:10:00.000Z","end":"2026-04-13T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-gh2jmurfu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-13T17:35:00.000Z","end":"2026-04-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.286Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-6iz4jlscz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T18:00:00.000Z","end":"2026-04-13T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-n6wwm81ep","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T18:25:00.000Z","end":"2026-04-13T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-okaam3yvb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T18:50:00.000Z","end":"2026-04-13T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-luzp2xgd9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T19:15:00.000Z","end":"2026-04-13T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-88mt7jtuo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T19:40:00.000Z","end":"2026-04-13T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-kxdvopwvl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-13T20:05:00.000Z","end":"2026-04-13T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-po806j4mw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T20:30:00.000Z","end":"2026-04-13T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-4cwelc879","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T20:55:00.000Z","end":"2026-04-13T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-kpvhwuyer","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-13T21:20:00.000Z","end":"2026-04-13T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-xitx4xx1x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T13:00:00.000Z","end":"2026-04-14T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-ykck7ghyz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-14T13:25:00.000Z","end":"2026-04-14T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-rpgmsj47z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-14T13:50:00.000Z","end":"2026-04-14T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-y8qpopuv6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T14:15:00.000Z","end":"2026-04-14T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-qi8ly3dli","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T14:40:00.000Z","end":"2026-04-14T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-sjo19w9n9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-14T15:05:00.000Z","end":"2026-04-14T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-n5e2jzl7b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T15:30:00.000Z","end":"2026-04-14T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-6dvooafer","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T15:55:00.000Z","end":"2026-04-14T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-8ez5epal8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-14T16:20:00.000Z","end":"2026-04-14T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-15jcqnqqu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T16:45:00.000Z","end":"2026-04-14T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-cpurqpcj5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-14T17:10:00.000Z","end":"2026-04-14T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-l038r52e5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T17:35:00.000Z","end":"2026-04-14T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-1epb2g5yd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T18:00:00.000Z","end":"2026-04-14T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-p6m9v4z1n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T18:25:00.000Z","end":"2026-04-14T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-1kly34xx7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T18:50:00.000Z","end":"2026-04-14T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-q1pj9z5nj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T19:15:00.000Z","end":"2026-04-14T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-m1ems4hc9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T19:40:00.000Z","end":"2026-04-14T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-m628ozlmj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-14T20:05:00.000Z","end":"2026-04-14T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085708-zdk9lk5t4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T20:30:00.000Z","end":"2026-04-14T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.708Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-790rt51rs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T20:55:00.000Z","end":"2026-04-14T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-imzw2pefi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-14T21:20:00.000Z","end":"2026-04-14T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-mn3zacjvt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-15T13:00:00.000Z","end":"2026-04-15T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-y4zu84qt2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T13:25:00.000Z","end":"2026-04-15T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-3ldlz1uje","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T13:50:00.000Z","end":"2026-04-15T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-edfwvbthn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T14:15:00.000Z","end":"2026-04-15T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-wre0v5kfw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T14:40:00.000Z","end":"2026-04-15T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-qhwds4yxh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T15:05:00.000Z","end":"2026-04-15T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-h3ykmjvfp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-15T15:30:00.000Z","end":"2026-04-15T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-cjev9h353","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T15:55:00.000Z","end":"2026-04-15T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-ehlda83ts","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-15T16:20:00.000Z","end":"2026-04-15T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-ku2jj5xx8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-15T16:45:00.000Z","end":"2026-04-15T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-cbzibdmgx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-15T17:10:00.000Z","end":"2026-04-15T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-62lyj35ll","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T17:35:00.000Z","end":"2026-04-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-cdtg3cza6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T18:00:00.000Z","end":"2026-04-15T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-cl3jc8m5x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-15T18:25:00.000Z","end":"2026-04-15T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-xo3r5jjbx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T18:50:00.000Z","end":"2026-04-15T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-tbvrajr0n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T19:15:00.000Z","end":"2026-04-15T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-bjcv84gbc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-15T19:40:00.000Z","end":"2026-04-15T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-zpafueg1z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T20:05:00.000Z","end":"2026-04-15T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-zgxnzxa30","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-15T20:30:00.000Z","end":"2026-04-15T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-i6j6ulmbb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T20:55:00.000Z","end":"2026-04-15T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-kidzpib97","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-15T21:20:00.000Z","end":"2026-04-15T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-a8duy4d10","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T13:00:00.000Z","end":"2026-04-16T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-jy8wqywl4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T13:25:00.000Z","end":"2026-04-16T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-gum6g4bdr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T13:50:00.000Z","end":"2026-04-16T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-1n5gup6cb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T14:15:00.000Z","end":"2026-04-16T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-xiturqyvo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T14:40:00.000Z","end":"2026-04-16T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-sl1pmh723","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T15:05:00.000Z","end":"2026-04-16T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-dfsr2t90o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T15:30:00.000Z","end":"2026-04-16T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-30r9ob1rp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T15:55:00.000Z","end":"2026-04-16T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.709Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-ltavnuokv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T16:20:00.000Z","end":"2026-04-16T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-youszcz12","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T16:45:00.000Z","end":"2026-04-16T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-mpi6bvudn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T17:10:00.000Z","end":"2026-04-16T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-4hm1af145","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T17:35:00.000Z","end":"2026-04-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.325Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085709-0zl4d2iz7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T18:00:00.000Z","end":"2026-04-16T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-21drol0o8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T18:25:00.000Z","end":"2026-04-16T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-cxizc78qa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T18:50:00.000Z","end":"2026-04-16T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-ox228dope","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T19:15:00.000Z","end":"2026-04-16T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-4ifyt1k96","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T19:40:00.000Z","end":"2026-04-16T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-w816ccy01","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T20:05:00.000Z","end":"2026-04-16T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-y1b8be4e2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-16T20:30:00.000Z","end":"2026-04-16T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-ix71mxep2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T20:55:00.000Z","end":"2026-04-16T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-w138f7bum","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-16T21:20:00.000Z","end":"2026-04-16T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-dussps3dg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T13:00:00.000Z","end":"2026-04-17T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-b95zemrs6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T13:25:00.000Z","end":"2026-04-17T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-pqneexrt3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-17T13:50:00.000Z","end":"2026-04-17T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-tszyoa2hk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T14:15:00.000Z","end":"2026-04-17T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-0ppugw1l5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T14:40:00.000Z","end":"2026-04-17T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-dqubv9ni1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-17T15:05:00.000Z","end":"2026-04-17T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-gcotbevwh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-17T15:30:00.000Z","end":"2026-04-17T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-sgjerteg1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T15:55:00.000Z","end":"2026-04-17T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-q5jwatd23","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T16:20:00.000Z","end":"2026-04-17T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-m8eg5ktgw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-17T16:45:00.000Z","end":"2026-04-17T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-fdqta6fwc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T17:10:00.000Z","end":"2026-04-17T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-hwnpmihs3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T17:35:00.000Z","end":"2026-04-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-b2hzyyf6g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-17T18:00:00.000Z","end":"2026-04-17T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-r01m9624t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-17T18:25:00.000Z","end":"2026-04-17T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-jr0zj4ch4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T18:50:00.000Z","end":"2026-04-17T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-wfuxfcf00","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T19:15:00.000Z","end":"2026-04-17T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-tjacky46z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T19:40:00.000Z","end":"2026-04-17T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-4hut816cj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-17T20:05:00.000Z","end":"2026-04-17T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-we753ktwd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T20:30:00.000Z","end":"2026-04-17T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-9qd330bmr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-17T20:55:00.000Z","end":"2026-04-17T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-sxili18fp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-17T21:20:00.000Z","end":"2026-04-17T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-ft2v187z9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T13:00:00.000Z","end":"2026-04-20T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-7ycfnvsnj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T13:25:00.000Z","end":"2026-04-20T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-iz37g9d8f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T13:50:00.000Z","end":"2026-04-20T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-hwkl51d0b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T14:15:00.000Z","end":"2026-04-20T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-qrjxict74","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-20T14:40:00.000Z","end":"2026-04-20T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-7jqwm16ci","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-20T15:05:00.000Z","end":"2026-04-20T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085710-8q48waxdt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T15:30:00.000Z","end":"2026-04-20T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.710Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-mr4iw8rys","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-20T15:55:00.000Z","end":"2026-04-20T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-efdayw5kf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T16:20:00.000Z","end":"2026-04-20T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-xnht3vb25","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-20T16:45:00.000Z","end":"2026-04-20T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-fr9weapia","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-20T17:10:00.000Z","end":"2026-04-20T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-ois9twqtx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-20T17:35:00.000Z","end":"2026-04-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-taiq16rfc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T18:00:00.000Z","end":"2026-04-20T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-re2uxej8c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T18:25:00.000Z","end":"2026-04-20T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-4odhk3sei","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-20T18:50:00.000Z","end":"2026-04-20T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-lldeehigp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-20T19:15:00.000Z","end":"2026-04-20T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-s6odgxgpb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T19:40:00.000Z","end":"2026-04-20T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-ppmyt8a60","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T20:05:00.000Z","end":"2026-04-20T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-2dilad9hh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T20:30:00.000Z","end":"2026-04-20T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-ndhxubagy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T20:55:00.000Z","end":"2026-04-20T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-po3wsnqym","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-20T21:20:00.000Z","end":"2026-04-20T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-o96837i0j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T13:00:00.000Z","end":"2026-04-21T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-czxk8tmo5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T13:25:00.000Z","end":"2026-04-21T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.711Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-9t81uxdw3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-21T13:50:00.000Z","end":"2026-04-21T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085711-nobzf208k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-21T14:15:00.000Z","end":"2026-04-21T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-ubenzik35","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-21T14:40:00.000Z","end":"2026-04-21T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-hzpos4tag","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T15:05:00.000Z","end":"2026-04-21T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.712Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-wlc1rbgwh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-21T15:30:00.000Z","end":"2026-04-21T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-h7owebhah","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-21T15:55:00.000Z","end":"2026-04-21T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-wf717vm3x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-21T16:20:00.000Z","end":"2026-04-21T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-t8pv94kjd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-21T16:45:00.000Z","end":"2026-04-21T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-u6drzvbbl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-21T17:10:00.000Z","end":"2026-04-21T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-vnmalvym2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T17:35:00.000Z","end":"2026-04-21T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.712Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-lj1u1tcbe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T18:00:00.000Z","end":"2026-04-21T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.712Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-fwskvjkt0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T18:25:00.000Z","end":"2026-04-21T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.712Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-7a6jlz3vv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T18:50:00.000Z","end":"2026-04-21T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.712Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085712-dfudvdm0d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T19:15:00.000Z","end":"2026-04-21T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.712Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-ypjymoi8f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T19:40:00.000Z","end":"2026-04-21T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-kxujrpzxd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T20:05:00.000Z","end":"2026-04-21T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-lofuzhsu4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T20:30:00.000Z","end":"2026-04-21T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-53wn1z45h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T20:55:00.000Z","end":"2026-04-21T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-7bwd21h92","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-21T21:20:00.000Z","end":"2026-04-21T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-lc5hjb0xm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T13:00:00.000Z","end":"2026-04-22T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-h3uqdq725","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T13:25:00.000Z","end":"2026-04-22T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-kleltx0cb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-22T13:50:00.000Z","end":"2026-04-22T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-8krr3v2l3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T14:15:00.000Z","end":"2026-04-22T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-41avqc9tf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-22T14:40:00.000Z","end":"2026-04-22T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-6el8o59rh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T15:05:00.000Z","end":"2026-04-22T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-6q6w8q5pu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T15:30:00.000Z","end":"2026-04-22T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-xuo1r1t90","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-22T15:55:00.000Z","end":"2026-04-22T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-ppgnggsii","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T16:20:00.000Z","end":"2026-04-22T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-bgri61957","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-22T16:45:00.000Z","end":"2026-04-22T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-q357g55h3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T17:10:00.000Z","end":"2026-04-22T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-9xyj6bpsv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-22T17:35:00.000Z","end":"2026-04-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-dluxd670l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-22T18:00:00.000Z","end":"2026-04-22T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-q4csvang4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T18:25:00.000Z","end":"2026-04-22T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-zoml7dvov","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-22T18:50:00.000Z","end":"2026-04-22T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-slxbkzwpc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T19:15:00.000Z","end":"2026-04-22T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-1n9qonzl1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T19:40:00.000Z","end":"2026-04-22T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-sgkiunkyo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T20:05:00.000Z","end":"2026-04-22T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-8e4qfh4ju","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T20:30:00.000Z","end":"2026-04-22T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-1aqnil14f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-22T20:55:00.000Z","end":"2026-04-22T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-107ayl5bh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-22T21:20:00.000Z","end":"2026-04-22T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-c6vvstyfd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T13:00:00.000Z","end":"2026-04-23T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-882aukrww","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T13:25:00.000Z","end":"2026-04-23T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-xw6oi44fi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T13:50:00.000Z","end":"2026-04-23T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-awkxr40dv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-23T14:15:00.000Z","end":"2026-04-23T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-tr9kl45e4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T14:40:00.000Z","end":"2026-04-23T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-70phj05xp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T15:05:00.000Z","end":"2026-04-23T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-1ssf3a074","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T15:30:00.000Z","end":"2026-04-23T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-80u80al05","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-23T15:55:00.000Z","end":"2026-04-23T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085713-h8ly6bhaq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-23T16:20:00.000Z","end":"2026-04-23T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.713Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-vbhaxtvbp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T16:45:00.000Z","end":"2026-04-23T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-y0ep0p4zi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T17:10:00.000Z","end":"2026-04-23T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-8lq3jq98l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T17:35:00.000Z","end":"2026-04-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-gvodstk3s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T18:00:00.000Z","end":"2026-04-23T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-r3g354yam","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-23T18:25:00.000Z","end":"2026-04-23T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-y4elupzp8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T18:50:00.000Z","end":"2026-04-23T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-x5k082vk5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T19:15:00.000Z","end":"2026-04-23T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-hsz9ti7oi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-23T19:40:00.000Z","end":"2026-04-23T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-tdwmmji8j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-23T20:05:00.000Z","end":"2026-04-23T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-xu35scvz3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-23T20:30:00.000Z","end":"2026-04-23T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-85v8kprf9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-23T20:55:00.000Z","end":"2026-04-23T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-9i5cmviki","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-23T21:20:00.000Z","end":"2026-04-23T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-ef3tm70v5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T13:00:00.000Z","end":"2026-04-24T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-znlg8k302","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T13:25:00.000Z","end":"2026-04-24T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-zkcsm2iq6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T13:50:00.000Z","end":"2026-04-24T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-tl8o22mzv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T14:15:00.000Z","end":"2026-04-24T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-5apv6qv2t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T14:40:00.000Z","end":"2026-04-24T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-h86v9e2ks","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T15:05:00.000Z","end":"2026-04-24T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-v3iqc3s0t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T15:30:00.000Z","end":"2026-04-24T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-km9cf8v1c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T15:55:00.000Z","end":"2026-04-24T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-n4yyk7f6l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T16:20:00.000Z","end":"2026-04-24T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-cok5nfvl6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T16:45:00.000Z","end":"2026-04-24T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-atrev4psa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T17:10:00.000Z","end":"2026-04-24T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-ny9qr3kd6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T17:35:00.000Z","end":"2026-04-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-fpgoglc2v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T18:00:00.000Z","end":"2026-04-24T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-ujpwihwf1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T18:25:00.000Z","end":"2026-04-24T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-xcm11fzem","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T18:50:00.000Z","end":"2026-04-24T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-2kinnzswz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T19:15:00.000Z","end":"2026-04-24T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-3laidbnhr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-24T19:40:00.000Z","end":"2026-04-24T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.714Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-h7acbgue1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T20:05:00.000Z","end":"2026-04-24T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-270bz34m8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T20:30:00.000Z","end":"2026-04-24T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-wqthmwgwe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T20:55:00.000Z","end":"2026-04-24T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-qywh2bap1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-24T21:20:00.000Z","end":"2026-04-24T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-rw1nr81f9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T13:00:00.000Z","end":"2026-04-27T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-p8zb8oeiw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T13:25:00.000Z","end":"2026-04-27T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085714-h72yjiozc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T13:50:00.000Z","end":"2026-04-27T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.223Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-r1wazbaf1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T14:15:00.000Z","end":"2026-04-27T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-elrub7a4r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-27T14:40:00.000Z","end":"2026-04-27T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.715Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-2x7bx3a40","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T15:05:00.000Z","end":"2026-04-27T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-1zmi6zvgm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T15:30:00.000Z","end":"2026-04-27T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-2izbzyk5p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-04-27T15:55:00.000Z","end":"2026-04-27T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.715Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-0pxbptjym","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T16:20:00.000Z","end":"2026-04-27T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-vdlqbzh94","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T16:45:00.000Z","end":"2026-04-27T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-a8u51ysdf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T17:10:00.000Z","end":"2026-04-27T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-lqp7azs48","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T17:35:00.000Z","end":"2026-04-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-ipd4cdzk5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T18:00:00.000Z","end":"2026-04-27T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-e1k9hqjgy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T18:25:00.000Z","end":"2026-04-27T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-rnze30dr6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T18:50:00.000Z","end":"2026-04-27T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.256Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-k3f1h0q08","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T19:15:00.000Z","end":"2026-04-27T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-d7i0vd9ve","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T19:40:00.000Z","end":"2026-04-27T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-rrxxgmob5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T20:05:00.000Z","end":"2026-04-27T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-zdf0v9c9b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T20:30:00.000Z","end":"2026-04-27T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-ksuscwz98","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T20:55:00.000Z","end":"2026-04-27T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-dippg7io4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-27T21:20:00.000Z","end":"2026-04-27T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-25l1szgvr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T13:00:00.000Z","end":"2026-04-28T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-nnumxhvho","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T13:25:00.000Z","end":"2026-04-28T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.256Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-r3wozryt5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T13:50:00.000Z","end":"2026-04-28T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-qnf5dn9m0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T14:15:00.000Z","end":"2026-04-28T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-6f0dc5eus","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T14:40:00.000Z","end":"2026-04-28T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-k1zmz6hw8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T15:05:00.000Z","end":"2026-04-28T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-egv4x181b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T15:30:00.000Z","end":"2026-04-28T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-cv76t8cw1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T15:55:00.000Z","end":"2026-04-28T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-744tlykoy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T16:20:00.000Z","end":"2026-04-28T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.203Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-lztk8qfdq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T16:45:00.000Z","end":"2026-04-28T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-zl49mfvyn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T17:10:00.000Z","end":"2026-04-28T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-sajxkw5b0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T17:35:00.000Z","end":"2026-04-28T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-raellorkr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T18:00:00.000Z","end":"2026-04-28T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-ifk4ulf3i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T18:25:00.000Z","end":"2026-04-28T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-9e04vf0n7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T18:50:00.000Z","end":"2026-04-28T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085715-vd55q3j0b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T19:15:00.000Z","end":"2026-04-28T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-xsi2hbbh2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T19:40:00.000Z","end":"2026-04-28T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-0gf8fvj00","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T20:05:00.000Z","end":"2026-04-28T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-3wb09qwta","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T20:30:00.000Z","end":"2026-04-28T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-4hfs6nn5j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T20:55:00.000Z","end":"2026-04-28T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-j99k9xn52","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-28T21:20:00.000Z","end":"2026-04-28T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-1bbnwcg2a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T13:00:00.000Z","end":"2026-04-29T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-3388pa9p6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T13:25:00.000Z","end":"2026-04-29T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-y2gry32qv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T13:50:00.000Z","end":"2026-04-29T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-8wrin19ea","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T14:15:00.000Z","end":"2026-04-29T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-qek8r8sgf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T14:40:00.000Z","end":"2026-04-29T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-x23yayjnf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T15:05:00.000Z","end":"2026-04-29T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-cfob6ppq9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T15:30:00.000Z","end":"2026-04-29T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-gru600j5o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T15:55:00.000Z","end":"2026-04-29T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.193Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-ei14q31mc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T16:20:00.000Z","end":"2026-04-29T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.217Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-jz675ox2y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T16:45:00.000Z","end":"2026-04-29T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-oicd7a7oa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T17:10:00.000Z","end":"2026-04-29T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-hli2hazxj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T17:35:00.000Z","end":"2026-04-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-h7uks7gf5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T18:00:00.000Z","end":"2026-04-29T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-m625v94ep","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T18:25:00.000Z","end":"2026-04-29T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-5kx31ez0a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T18:50:00.000Z","end":"2026-04-29T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-rx34v0qtv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T19:15:00.000Z","end":"2026-04-29T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-eud57bpkm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T19:40:00.000Z","end":"2026-04-29T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-sd1kyw2a8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T20:05:00.000Z","end":"2026-04-29T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-qbg5j7w32","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T20:30:00.000Z","end":"2026-04-29T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-7hhs6l5db","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T20:55:00.000Z","end":"2026-04-29T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-jouvcx10x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-29T21:20:00.000Z","end":"2026-04-29T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-2f6frgwgr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T13:00:00.000Z","end":"2026-04-30T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-z1khjs7iy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T13:25:00.000Z","end":"2026-04-30T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.265Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-00zi815dj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T13:50:00.000Z","end":"2026-04-30T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-aizc3wsou","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T14:15:00.000Z","end":"2026-04-30T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-a0txg4s0x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T14:40:00.000Z","end":"2026-04-30T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-if8re5ecp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T15:05:00.000Z","end":"2026-04-30T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.195Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-byipezh46","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T15:30:00.000Z","end":"2026-04-30T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085716-b4ckx6o77","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T15:55:00.000Z","end":"2026-04-30T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-but4qngsz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T16:20:00.000Z","end":"2026-04-30T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-k28o1bxbv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T16:45:00.000Z","end":"2026-04-30T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-3hwpzvd7o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T17:10:00.000Z","end":"2026-04-30T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-7f580qraj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T17:35:00.000Z","end":"2026-04-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-s1xlmracc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T18:00:00.000Z","end":"2026-04-30T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-2wh0w3gpx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T18:25:00.000Z","end":"2026-04-30T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-32fls0w5e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T18:50:00.000Z","end":"2026-04-30T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-w226p7l7s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T19:15:00.000Z","end":"2026-04-30T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-e0rnjtvbz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T19:40:00.000Z","end":"2026-04-30T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-o523ymp1t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T20:05:00.000Z","end":"2026-04-30T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.197Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-pm090srlu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T20:30:00.000Z","end":"2026-04-30T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-hfsb4ntdu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T20:55:00.000Z","end":"2026-04-30T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-9tx0ud4nb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-04-30T21:20:00.000Z","end":"2026-04-30T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-fgd7bmaxe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-01T13:00:00.000Z","end":"2026-05-01T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-mcq0ffoah","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T13:25:00.000Z","end":"2026-05-01T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.717Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-01rydxeb3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T13:50:00.000Z","end":"2026-05-01T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.717Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-6koyiotow","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-01T14:15:00.000Z","end":"2026-05-01T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085717-74j2ecoro","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T14:40:00.000Z","end":"2026-05-01T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.717Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-zilijdgm2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T15:05:00.000Z","end":"2026-05-01T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-48bq7z6nh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T15:30:00.000Z","end":"2026-05-01T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-gq3dtas6q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-01T15:55:00.000Z","end":"2026-05-01T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-l5kttiltg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T16:20:00.000Z","end":"2026-05-01T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-zjen60r2q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T16:45:00.000Z","end":"2026-05-01T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-83hrctdat","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-01T17:10:00.000Z","end":"2026-05-01T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.188Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-b6zy7vxkm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T17:35:00.000Z","end":"2026-05-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-ywfq2w5w4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T18:00:00.000Z","end":"2026-05-01T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-06xi9uuo4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-01T18:25:00.000Z","end":"2026-05-01T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-pbtupgipt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-01T18:50:00.000Z","end":"2026-05-01T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-jsoaky8n5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T19:15:00.000Z","end":"2026-05-01T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-ond178433","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T19:40:00.000Z","end":"2026-05-01T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-ouha79ns5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T20:05:00.000Z","end":"2026-05-01T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.718Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085718-mglu9hoe1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-01T20:30:00.000Z","end":"2026-05-01T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-qpy8mhgl9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T20:55:00.000Z","end":"2026-05-01T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-vtem0wxna","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-01T21:20:00.000Z","end":"2026-05-01T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-8wjrfl14w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T13:00:00.000Z","end":"2026-05-04T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-q2bm1u7qy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-04T13:25:00.000Z","end":"2026-05-04T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-8ljt839ag","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T13:50:00.000Z","end":"2026-05-04T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-wxi3da7u2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T14:15:00.000Z","end":"2026-05-04T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-sex1nfjeg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-04T14:40:00.000Z","end":"2026-05-04T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-bad32wsou","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T15:05:00.000Z","end":"2026-05-04T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-7yvlgpz6y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T15:30:00.000Z","end":"2026-05-04T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-kpfb07l07","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T15:55:00.000Z","end":"2026-05-04T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-jv7xvzlo0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-04T16:20:00.000Z","end":"2026-05-04T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-57xijte62","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T16:45:00.000Z","end":"2026-05-04T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-wgwrw2syw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T17:10:00.000Z","end":"2026-05-04T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-2qymf1sio","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T17:35:00.000Z","end":"2026-05-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-3calm4wzf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T18:00:00.000Z","end":"2026-05-04T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-599u3b69x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-04T18:25:00.000Z","end":"2026-05-04T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-u7a7ahqct","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T18:50:00.000Z","end":"2026-05-04T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-zav92jqrk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-04T19:15:00.000Z","end":"2026-05-04T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-3ow1hqqrn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T19:40:00.000Z","end":"2026-05-04T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-yb3x0ar9m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T20:05:00.000Z","end":"2026-05-04T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-2blezk5og","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-04T20:30:00.000Z","end":"2026-05-04T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-n5wut5lr3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-04T20:55:00.000Z","end":"2026-05-04T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-ls6vie1i0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-04T21:20:00.000Z","end":"2026-05-04T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-03rl5k6u1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T13:00:00.000Z","end":"2026-05-05T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-iu265xidw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T13:25:00.000Z","end":"2026-05-05T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-biu3cdczb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T13:50:00.000Z","end":"2026-05-05T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-hbw2p230n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-05T14:15:00.000Z","end":"2026-05-05T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-dzvm6upoq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-05T14:40:00.000Z","end":"2026-05-05T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-yw0ycfajh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T15:05:00.000Z","end":"2026-05-05T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-1h9sze2ht","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T15:30:00.000Z","end":"2026-05-05T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-z8xc14uk5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T15:55:00.000Z","end":"2026-05-05T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-1e6djgfr1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T16:20:00.000Z","end":"2026-05-05T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-5nxr2lvff","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T16:45:00.000Z","end":"2026-05-05T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-2wtlv2y6x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T17:10:00.000Z","end":"2026-05-05T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-x1kq04r6d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T17:35:00.000Z","end":"2026-05-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-xfbec5nfz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T18:00:00.000Z","end":"2026-05-05T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085719-xz9vacj3a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T18:25:00.000Z","end":"2026-05-05T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.719Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-vtubibc7w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T18:50:00.000Z","end":"2026-05-05T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-5wzdyv7xy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T19:15:00.000Z","end":"2026-05-05T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-mgztlkvio","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T19:40:00.000Z","end":"2026-05-05T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-kkobp43cn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-05T20:05:00.000Z","end":"2026-05-05T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-msppzykn7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-05T20:30:00.000Z","end":"2026-05-05T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-w7w3m2rmn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-05T20:55:00.000Z","end":"2026-05-05T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-460icml4a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-05T21:20:00.000Z","end":"2026-05-05T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-ag1900ljq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T13:00:00.000Z","end":"2026-05-06T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-3gvpsy3ib","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T13:25:00.000Z","end":"2026-05-06T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-nud6aleot","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T13:50:00.000Z","end":"2026-05-06T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-qspi5jjlh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T14:15:00.000Z","end":"2026-05-06T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-0enwnh0ke","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T14:40:00.000Z","end":"2026-05-06T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-rbt1r98m6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T15:05:00.000Z","end":"2026-05-06T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-y55v53r0u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T15:30:00.000Z","end":"2026-05-06T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-9q3gfqpkl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T15:55:00.000Z","end":"2026-05-06T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-wcmjfima8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T16:20:00.000Z","end":"2026-05-06T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-241z3tgzo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T16:45:00.000Z","end":"2026-05-06T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-i138obi8g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T17:10:00.000Z","end":"2026-05-06T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-w6i6nrwkq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T17:35:00.000Z","end":"2026-05-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-fqf1y6s6x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T18:00:00.000Z","end":"2026-05-06T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-047iglrom","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-06T18:25:00.000Z","end":"2026-05-06T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-j0lpa8z4s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-06T18:50:00.000Z","end":"2026-05-06T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-4rurxnopi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T19:15:00.000Z","end":"2026-05-06T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-oqod4ulm8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T19:40:00.000Z","end":"2026-05-06T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-izo3cg81r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T20:05:00.000Z","end":"2026-05-06T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-707uw71hh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T20:30:00.000Z","end":"2026-05-06T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-f1ow6g70u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T20:55:00.000Z","end":"2026-05-06T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-2fg531wtk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-06T21:20:00.000Z","end":"2026-05-06T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-0pr9qzyhp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T13:00:00.000Z","end":"2026-05-07T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-eklrpxdis","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T13:25:00.000Z","end":"2026-05-07T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.237Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-2wk6bx8tp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T13:50:00.000Z","end":"2026-05-07T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-z1hb90id1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T14:15:00.000Z","end":"2026-05-07T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-qeadqb7vw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T14:40:00.000Z","end":"2026-05-07T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.720Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085720-id288qxzf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T15:05:00.000Z","end":"2026-05-07T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-0qe9fiiyq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T15:30:00.000Z","end":"2026-05-07T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-0or837x7g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T15:55:00.000Z","end":"2026-05-07T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-zp4634zi7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T16:20:00.000Z","end":"2026-05-07T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-c939ho0sy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T16:45:00.000Z","end":"2026-05-07T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-8wvac92me","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T17:10:00.000Z","end":"2026-05-07T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-gvhr0j0cj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T17:35:00.000Z","end":"2026-05-07T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-3xz901dko","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T18:00:00.000Z","end":"2026-05-07T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.233Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-3pcqm68b0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T18:25:00.000Z","end":"2026-05-07T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-3q3x93r72","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T18:50:00.000Z","end":"2026-05-07T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.190Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-tndjz9bck","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T19:15:00.000Z","end":"2026-05-07T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-eh3i8ls0i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T19:40:00.000Z","end":"2026-05-07T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-efp4mdwo4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T20:05:00.000Z","end":"2026-05-07T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-f2ll0m51l","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-07T20:30:00.000Z","end":"2026-05-07T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-u0vg41kjj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T20:55:00.000Z","end":"2026-05-07T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-64q0jwv5e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-07T21:20:00.000Z","end":"2026-05-07T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-i01vz3u86","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T13:00:00.000Z","end":"2026-05-08T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-jv741z8f4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-08T13:25:00.000Z","end":"2026-05-08T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-65ptiqjr5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T13:50:00.000Z","end":"2026-05-08T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-y5epbrx2n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T14:15:00.000Z","end":"2026-05-08T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-im2xr097e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-08T14:40:00.000Z","end":"2026-05-08T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-ipnsarwmn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T15:05:00.000Z","end":"2026-05-08T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-4tydpaai0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T15:30:00.000Z","end":"2026-05-08T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-ee889dbxw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-08T15:55:00.000Z","end":"2026-05-08T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-q38tiotld","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T16:20:00.000Z","end":"2026-05-08T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-rwbjnwtu2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T16:45:00.000Z","end":"2026-05-08T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-jwmr3zkfb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T17:10:00.000Z","end":"2026-05-08T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-2jmzmcu7q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T17:35:00.000Z","end":"2026-05-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-y5uzlvycy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-08T18:00:00.000Z","end":"2026-05-08T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-z0jgdwwn4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-08T18:25:00.000Z","end":"2026-05-08T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.194Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-f2i3gtwl0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T18:50:00.000Z","end":"2026-05-08T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-g2es1zq81","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T19:15:00.000Z","end":"2026-05-08T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-0mncbtrhs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T19:40:00.000Z","end":"2026-05-08T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-o36w666ki","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T20:05:00.000Z","end":"2026-05-08T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-3eyxw5aee","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T20:30:00.000Z","end":"2026-05-08T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085721-xcv9m7xax","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T20:55:00.000Z","end":"2026-05-08T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.721Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-mvmxloifd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-08T21:20:00.000Z","end":"2026-05-08T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-2xjrcsbdw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-11T13:00:00.000Z","end":"2026-05-11T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-co2g15qas","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T13:25:00.000Z","end":"2026-05-11T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-5s3cnn3my","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T13:50:00.000Z","end":"2026-05-11T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-1979rpnxq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T14:15:00.000Z","end":"2026-05-11T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-ex4lzt4b4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-11T14:40:00.000Z","end":"2026-05-11T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.229Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-xgt90qg7i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-11T15:05:00.000Z","end":"2026-05-11T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-z7rf7yygy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T15:30:00.000Z","end":"2026-05-11T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-zlc2jpgpf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T15:55:00.000Z","end":"2026-05-11T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-dgwpo9ozb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T16:20:00.000Z","end":"2026-05-11T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-3cxpbfed9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-11T16:45:00.000Z","end":"2026-05-11T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-nziy7urwu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T17:10:00.000Z","end":"2026-05-11T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-t45um9dm1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T17:35:00.000Z","end":"2026-05-11T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-vrmt3wtzd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T18:00:00.000Z","end":"2026-05-11T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-abuyvhc0j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T18:25:00.000Z","end":"2026-05-11T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-61f8wz6f3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T18:50:00.000Z","end":"2026-05-11T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-ai3ipi375","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T19:15:00.000Z","end":"2026-05-11T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-irf8nxa4q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T19:40:00.000Z","end":"2026-05-11T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-syqq0a21a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T20:05:00.000Z","end":"2026-05-11T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-v415p6wmo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-11T20:30:00.000Z","end":"2026-05-11T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-d1q8viyfl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-11T20:55:00.000Z","end":"2026-05-11T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.288Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-886jvtsu6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-11T21:20:00.000Z","end":"2026-05-11T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.231Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-q0b9eq429","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-12T13:00:00.000Z","end":"2026-05-12T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-ohhfiwnfn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T13:25:00.000Z","end":"2026-05-12T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-stwdwdagw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T13:50:00.000Z","end":"2026-05-12T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-c1o6r46tn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-12T14:15:00.000Z","end":"2026-05-12T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-x79x9ce3n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-12T14:40:00.000Z","end":"2026-05-12T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-owvg6x9mm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T15:05:00.000Z","end":"2026-05-12T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-0405q5x60","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T15:30:00.000Z","end":"2026-05-12T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-cw1uasiyr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T15:55:00.000Z","end":"2026-05-12T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-sktorwewc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T16:20:00.000Z","end":"2026-05-12T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-35pobmw69","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-12T16:45:00.000Z","end":"2026-05-12T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-ma1bm1kj2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T17:10:00.000Z","end":"2026-05-12T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-n90oj2ivl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T17:35:00.000Z","end":"2026-05-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-tlqfzw7du","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T18:00:00.000Z","end":"2026-05-12T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085722-b9td0ud97","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T18:25:00.000Z","end":"2026-05-12T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.722Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-vqy6yk02i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-12T18:50:00.000Z","end":"2026-05-12T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-afgzu227s","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T19:15:00.000Z","end":"2026-05-12T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-tfrnzmiqd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T19:40:00.000Z","end":"2026-05-12T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-90x3wypxf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T20:05:00.000Z","end":"2026-05-12T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-05i1cqm71","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T20:30:00.000Z","end":"2026-05-12T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-4r9bt5sry","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T20:55:00.000Z","end":"2026-05-12T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-ikg37sppk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-12T21:20:00.000Z","end":"2026-05-12T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-nib8hb0s8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T13:00:00.000Z","end":"2026-05-13T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-toe6otoeq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T13:25:00.000Z","end":"2026-05-13T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-wtzb9ad03","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T13:50:00.000Z","end":"2026-05-13T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-j0n1azvwc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T14:15:00.000Z","end":"2026-05-13T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-dxlgeo4xt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T14:40:00.000Z","end":"2026-05-13T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-otm9oz6vb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T15:05:00.000Z","end":"2026-05-13T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-fc6nw5y7g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T15:30:00.000Z","end":"2026-05-13T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-bi2sktxu2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T15:55:00.000Z","end":"2026-05-13T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.244Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-44jjjzzcy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T16:20:00.000Z","end":"2026-05-13T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.723Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085723-pc2jsl70b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T16:45:00.000Z","end":"2026-05-13T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085724-g3itvju4f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T17:10:00.000Z","end":"2026-05-13T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085724-1m67zr5ol","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T17:35:00.000Z","end":"2026-05-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.724Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085724-bzofmqlc2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T18:00:00.000Z","end":"2026-05-13T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.724Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085724-5qlkvv90k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T18:25:00.000Z","end":"2026-05-13T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.724Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085724-o1nwj80kk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T18:50:00.000Z","end":"2026-05-13T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.724Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085724-kjyjmrrhl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T19:15:00.000Z","end":"2026-05-13T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.724Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085724-d1rjy44u0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T19:40:00.000Z","end":"2026-05-13T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.724Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085724-lw8w9pqx1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T20:05:00.000Z","end":"2026-05-13T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-del4bv2i0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T20:30:00.000Z","end":"2026-05-13T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-aldssh9nm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-13T20:55:00.000Z","end":"2026-05-13T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-ufwwvztu7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-13T21:20:00.000Z","end":"2026-05-13T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-7agzzljet","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T13:00:00.000Z","end":"2026-05-14T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-oeuxpi8m0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T13:25:00.000Z","end":"2026-05-14T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-tmg7x5t9o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T13:50:00.000Z","end":"2026-05-14T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-vjbzo8fav","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-14T14:15:00.000Z","end":"2026-05-14T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-wsxjru9hy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T14:40:00.000Z","end":"2026-05-14T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-4eaase4oa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T15:05:00.000Z","end":"2026-05-14T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-o74r88oq9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-14T15:30:00.000Z","end":"2026-05-14T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.313Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-1bym92zo8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T15:55:00.000Z","end":"2026-05-14T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-sf8v71106","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-14T16:20:00.000Z","end":"2026-05-14T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-z74k1f9vt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-14T16:45:00.000Z","end":"2026-05-14T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-ht2aq0v62","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T17:10:00.000Z","end":"2026-05-14T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-cyxkp4pr7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-14T17:35:00.000Z","end":"2026-05-14T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-jjtqxocox","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T18:00:00.000Z","end":"2026-05-14T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-4cdwkauvg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T18:25:00.000Z","end":"2026-05-14T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-piujucefl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T18:50:00.000Z","end":"2026-05-14T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-0r33btjun","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T19:15:00.000Z","end":"2026-05-14T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-6qf9hd7qx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-14T19:40:00.000Z","end":"2026-05-14T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.212Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-gejpak350","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T20:05:00.000Z","end":"2026-05-14T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-a6h2wft8x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-14T20:30:00.000Z","end":"2026-05-14T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.307Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-cf4vvax9c","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T20:55:00.000Z","end":"2026-05-14T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-5qp5ky4d6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-14T21:20:00.000Z","end":"2026-05-14T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-979i21qaq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-15T13:00:00.000Z","end":"2026-05-15T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-uoysaucgm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-15T13:25:00.000Z","end":"2026-05-15T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-xty873t70","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T13:50:00.000Z","end":"2026-05-15T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-5ypqut61n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T14:15:00.000Z","end":"2026-05-15T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-8mptd4zi4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T14:40:00.000Z","end":"2026-05-15T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-6rua9daip","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T15:05:00.000Z","end":"2026-05-15T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.236Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-1ox8gckbn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T15:30:00.000Z","end":"2026-05-15T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-hsx8ia4gn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T15:55:00.000Z","end":"2026-05-15T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-1vzn2zi7q","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T16:20:00.000Z","end":"2026-05-15T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-zl02dzgw3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-15T16:45:00.000Z","end":"2026-05-15T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-85ez92qd7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T17:10:00.000Z","end":"2026-05-15T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.324Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-xleq268c1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-15T17:35:00.000Z","end":"2026-05-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.725Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085725-g37rdv4oi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T18:00:00.000Z","end":"2026-05-15T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-03um5ewii","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T18:25:00.000Z","end":"2026-05-15T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-x6b8h9m6t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-15T18:50:00.000Z","end":"2026-05-15T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-2r4xaztot","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T19:15:00.000Z","end":"2026-05-15T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-oura5e3sq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-15T19:40:00.000Z","end":"2026-05-15T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-l0kx5pjkc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-15T20:05:00.000Z","end":"2026-05-15T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-2ywy4af1m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T20:30:00.000Z","end":"2026-05-15T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.287Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-k0d4zlppe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-15T20:55:00.000Z","end":"2026-05-15T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-a49ff9ydu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-15T21:20:00.000Z","end":"2026-05-15T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-0ediddpsi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T13:00:00.000Z","end":"2026-05-18T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-684gag6zp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-18T13:25:00.000Z","end":"2026-05-18T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-tf3hb7mel","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T13:50:00.000Z","end":"2026-05-18T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-gh9ppeqdi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T14:15:00.000Z","end":"2026-05-18T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-zrkbc8grz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-18T14:40:00.000Z","end":"2026-05-18T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-1tqt08o8w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T15:05:00.000Z","end":"2026-05-18T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.321Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-nr5kh2ttz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T15:30:00.000Z","end":"2026-05-18T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-l71glilmg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T15:55:00.000Z","end":"2026-05-18T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-ev2czm0lg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T16:20:00.000Z","end":"2026-05-18T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.192Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-s3srmbc2v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T16:45:00.000Z","end":"2026-05-18T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-mwk0vxnhh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T17:10:00.000Z","end":"2026-05-18T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-y52ca09v7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T17:35:00.000Z","end":"2026-05-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-6dxv0b4hz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-18T18:00:00.000Z","end":"2026-05-18T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-395plzl5w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T18:25:00.000Z","end":"2026-05-18T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-ffwh8vbhq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T18:50:00.000Z","end":"2026-05-18T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.191Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-0iglh9s0n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T19:15:00.000Z","end":"2026-05-18T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-fjre0ooli","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T19:40:00.000Z","end":"2026-05-18T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-1w5coubn2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-18T20:05:00.000Z","end":"2026-05-18T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-04scobh2y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T20:30:00.000Z","end":"2026-05-18T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-td76b79ej","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-18T20:55:00.000Z","end":"2026-05-18T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-ucy7lox93","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-18T21:20:00.000Z","end":"2026-05-18T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-9jo27bu71","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T13:00:00.000Z","end":"2026-05-19T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.205Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-voxif7vi8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-19T13:25:00.000Z","end":"2026-05-19T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085726-cntih8vfq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-19T13:50:00.000Z","end":"2026-05-19T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.726Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-wevmqd8rw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T14:15:00.000Z","end":"2026-05-19T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-vswit7p8a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T14:40:00.000Z","end":"2026-05-19T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-dopk34tkr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T15:05:00.000Z","end":"2026-05-19T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-jfdkb0t4p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-19T15:30:00.000Z","end":"2026-05-19T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-kgwjulfx3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T15:55:00.000Z","end":"2026-05-19T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-hcnzrnt3d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T16:20:00.000Z","end":"2026-05-19T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-p8h97x63k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T16:45:00.000Z","end":"2026-05-19T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-0g1glt2mg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T17:10:00.000Z","end":"2026-05-19T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-4zty6iipr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T17:35:00.000Z","end":"2026-05-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-zz7xfnhdn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T18:00:00.000Z","end":"2026-05-19T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.300Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-8j85ggppn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-19T18:25:00.000Z","end":"2026-05-19T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-325phflkb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-19T18:50:00.000Z","end":"2026-05-19T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-kaj7jbp7t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T19:15:00.000Z","end":"2026-05-19T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-sgjq9ucvp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-19T19:40:00.000Z","end":"2026-05-19T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-4cejo9ile","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-19T20:05:00.000Z","end":"2026-05-19T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-0xrwxncs0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T20:30:00.000Z","end":"2026-05-19T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-vht1vglo1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T20:55:00.000Z","end":"2026-05-19T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.280Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-mnn757b6r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-19T21:20:00.000Z","end":"2026-05-19T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-iia64e7hf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-20T13:00:00.000Z","end":"2026-05-20T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-jnndiua62","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T13:25:00.000Z","end":"2026-05-20T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-99uuv6ctd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T13:50:00.000Z","end":"2026-05-20T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-xv7seqcqy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T14:15:00.000Z","end":"2026-05-20T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-kntk3bngv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-20T14:40:00.000Z","end":"2026-05-20T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-dn90h6bz3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-20T15:05:00.000Z","end":"2026-05-20T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-umdb74q3j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T15:30:00.000Z","end":"2026-05-20T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-q8vxdbbpi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-20T15:55:00.000Z","end":"2026-05-20T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-uxovuweof","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T16:20:00.000Z","end":"2026-05-20T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-9iz1rew1g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T16:45:00.000Z","end":"2026-05-20T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-gftwoi7wu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-20T17:10:00.000Z","end":"2026-05-20T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.727Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-3ylio8cm1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T17:35:00.000Z","end":"2026-05-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-wslqf8w3m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T18:00:00.000Z","end":"2026-05-20T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-7glzdw240","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T18:25:00.000Z","end":"2026-05-20T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-inom36ik9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T18:50:00.000Z","end":"2026-05-20T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085727-fwtuo5ssw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T19:15:00.000Z","end":"2026-05-20T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-btmagrt2p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T19:40:00.000Z","end":"2026-05-20T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-dwyh4bmlm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T20:05:00.000Z","end":"2026-05-20T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.209Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-phpixzpv2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T20:30:00.000Z","end":"2026-05-20T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-79c5kzgim","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T20:55:00.000Z","end":"2026-05-20T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-079zxzhy7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-20T21:20:00.000Z","end":"2026-05-20T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-6qzz0rzxk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T13:00:00.000Z","end":"2026-05-21T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-skvfwv4gn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T13:25:00.000Z","end":"2026-05-21T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-dx6tb41ef","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T13:50:00.000Z","end":"2026-05-21T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-1c35m7rbh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T14:15:00.000Z","end":"2026-05-21T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-9c9t64tbl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-21T14:40:00.000Z","end":"2026-05-21T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.728Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-o84z7k6im","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T15:05:00.000Z","end":"2026-05-21T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.210Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-ohf9upj2v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T15:30:00.000Z","end":"2026-05-21T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.317Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-jnx9i032k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T15:55:00.000Z","end":"2026-05-21T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.204Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-ffahcagi1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T16:20:00.000Z","end":"2026-05-21T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.215Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-zz0xe993f","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T16:45:00.000Z","end":"2026-05-21T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.200Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-pj5e6fgsy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T17:10:00.000Z","end":"2026-05-21T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-s5mcc8mq5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T17:35:00.000Z","end":"2026-05-21T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-ju1fiq95r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-21T18:00:00.000Z","end":"2026-05-21T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.728Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-ae7m074np","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T18:25:00.000Z","end":"2026-05-21T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.198Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-8hviwg635","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T18:50:00.000Z","end":"2026-05-21T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.219Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-v4uhperd6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T19:15:00.000Z","end":"2026-05-21T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-v1v7nzj99","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T19:40:00.000Z","end":"2026-05-21T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.213Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-6hannhtwe","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-21T20:05:00.000Z","end":"2026-05-21T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-pqtmm90lp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-21T20:30:00.000Z","end":"2026-05-21T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.728Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-4okhjnvwl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-21T20:55:00.000Z","end":"2026-05-21T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.728Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-yj21aem13","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-21T21:20:00.000Z","end":"2026-05-21T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.728Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-ni0oxvd3v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T13:00:00.000Z","end":"2026-05-22T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.247Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-kv62ykpl3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T13:25:00.000Z","end":"2026-05-22T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-3z9n97dgb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T13:50:00.000Z","end":"2026-05-22T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-7t317vauf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T14:15:00.000Z","end":"2026-05-22T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.305Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-8asf5u6xq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T14:40:00.000Z","end":"2026-05-22T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.216Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-4u6h1g4p0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T15:05:00.000Z","end":"2026-05-22T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.202Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-lkqwak8cy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T15:30:00.000Z","end":"2026-05-22T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.258Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085728-zpikqavny","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-22T15:55:00.000Z","end":"2026-05-22T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.728Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-msq6mvryp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T16:20:00.000Z","end":"2026-05-22T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-ddonhqx5w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T16:45:00.000Z","end":"2026-05-22T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.189Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-damiqy145","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-22T17:10:00.000Z","end":"2026-05-22T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.729Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-8qfm2e2ys","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T17:35:00.000Z","end":"2026-05-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-ifw6t6ti2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T18:00:00.000Z","end":"2026-05-22T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.201Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-r536xo7bh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-22T18:25:00.000Z","end":"2026-05-22T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.729Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-0xnjg2iqj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-22T18:50:00.000Z","end":"2026-05-22T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.729Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-52iwqce4i","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T19:15:00.000Z","end":"2026-05-22T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-5rjz7vzlk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T19:40:00.000Z","end":"2026-05-22T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-jwxkntsff","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T20:05:00.000Z","end":"2026-05-22T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.211Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-0wwzfxnh4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T20:30:00.000Z","end":"2026-05-22T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-aok59t2yi","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T20:55:00.000Z","end":"2026-05-22T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-3eiu5ufbo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-22T21:20:00.000Z","end":"2026-05-22T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.303Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-fnq29b9du","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T13:00:00.000Z","end":"2026-05-25T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.220Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-0v4a6c2sp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T13:25:00.000Z","end":"2026-05-25T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.225Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-qfabvyf7p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T13:50:00.000Z","end":"2026-05-25T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.228Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-tsah30zb0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T14:15:00.000Z","end":"2026-05-25T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.234Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-ey41z5fhu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T14:40:00.000Z","end":"2026-05-25T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.238Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-3s57qfu2w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T15:05:00.000Z","end":"2026-05-25T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-fpet3o8l2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T15:30:00.000Z","end":"2026-05-25T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-twj8izfq7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T15:55:00.000Z","end":"2026-05-25T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-v509os8t4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T16:20:00.000Z","end":"2026-05-25T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.293Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085729-k2sy8ymng","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T16:45:00.000Z","end":"2026-05-25T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.295Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085730-uqjuzgv1p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T17:10:00.000Z","end":"2026-05-25T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085730-2ayqiwzqy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T17:35:00.000Z","end":"2026-05-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085730-f0geivs5j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-25T18:00:00.000Z","end":"2026-05-25T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.730Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085730-ie8s7qknh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-25T18:25:00.000Z","end":"2026-05-25T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.730Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085730-b47dx6pc3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-25T18:50:00.000Z","end":"2026-05-25T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.730Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085730-bqw6h9p1r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T19:15:00.000Z","end":"2026-05-25T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085730-g223nffh9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T19:40:00.000Z","end":"2026-05-25T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.224Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-jbrgy59nf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T20:05:00.000Z","end":"2026-05-25T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-3iygcq7tg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T20:30:00.000Z","end":"2026-05-25T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-i8cq832rl","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-25T20:55:00.000Z","end":"2026-05-25T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.731Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-ily3i4b8w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-25T21:20:00.000Z","end":"2026-05-25T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-irwz3t9pp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T13:00:00.000Z","end":"2026-05-26T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-tu18ba6y9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T13:25:00.000Z","end":"2026-05-26T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-9ixhvvehj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T13:50:00.000Z","end":"2026-05-26T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.274Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-jdt2mmynm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-26T14:15:00.000Z","end":"2026-05-26T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.731Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-203ry8pno","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T14:40:00.000Z","end":"2026-05-26T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.306Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-oryi1locd","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-26T15:05:00.000Z","end":"2026-05-26T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.731Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-eoae6jym0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-26T15:30:00.000Z","end":"2026-05-26T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.731Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-7jna24y5h","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T15:55:00.000Z","end":"2026-05-26T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.250Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085731-b3pia351j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T16:20:00.000Z","end":"2026-05-26T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.310Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-upt7bkra9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T16:45:00.000Z","end":"2026-05-26T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-wn4alov7d","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-26T17:10:00.000Z","end":"2026-05-26T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-4t746i5g0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T17:35:00.000Z","end":"2026-05-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-ro0sboz7t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T18:00:00.000Z","end":"2026-05-26T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.226Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-8ktxzzm9b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-26T18:25:00.000Z","end":"2026-05-26T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-00oxt2oo6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T18:50:00.000Z","end":"2026-05-26T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.222Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-nwlma3k4x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T19:15:00.000Z","end":"2026-05-26T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.221Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-wnkbenulh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T19:40:00.000Z","end":"2026-05-26T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-uyp5b5l1g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T20:05:00.000Z","end":"2026-05-26T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.253Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-oll7t8ksa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-26T20:30:00.000Z","end":"2026-05-26T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-c4coggm9w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T20:55:00.000Z","end":"2026-05-26T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-rrcrmsr06","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-26T21:20:00.000Z","end":"2026-05-26T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.275Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-5hrjtip9v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T13:00:00.000Z","end":"2026-05-27T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-5l9bqnqv2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T13:25:00.000Z","end":"2026-05-27T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-bwjdh08md","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-27T13:50:00.000Z","end":"2026-05-27T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.284Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-87hbdbqpt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T14:15:00.000Z","end":"2026-05-27T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-9xherx2xg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T14:40:00.000Z","end":"2026-05-27T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-wve9pxsb9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T15:05:00.000Z","end":"2026-05-27T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-pqa66yu76","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T15:30:00.000Z","end":"2026-05-27T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-1bibig9kn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-27T15:55:00.000Z","end":"2026-05-27T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-n68k1t5kb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T16:20:00.000Z","end":"2026-05-27T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-kg9yommin","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T16:45:00.000Z","end":"2026-05-27T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-cfgvkafrb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T17:10:00.000Z","end":"2026-05-27T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-98ngr4fmh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T17:35:00.000Z","end":"2026-05-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-0ehelbaan","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T18:00:00.000Z","end":"2026-05-27T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-45sa7xci5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T18:25:00.000Z","end":"2026-05-27T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-nd4l1lsh0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T18:50:00.000Z","end":"2026-05-27T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-zgr8brrz3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-27T19:15:00.000Z","end":"2026-05-27T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.227Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-u90w82wio","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T19:40:00.000Z","end":"2026-05-27T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-vodvs7170","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-27T20:05:00.000Z","end":"2026-05-27T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-6vgex2l7t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T20:30:00.000Z","end":"2026-05-27T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-ajnjo7kot","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-27T20:55:00.000Z","end":"2026-05-27T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.262Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-xdtz9rrnb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-27T21:20:00.000Z","end":"2026-05-27T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-eydlblzbj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-28T13:00:00.000Z","end":"2026-05-28T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085732-am710wnoy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T13:25:00.000Z","end":"2026-05-28T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.732Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-nnsdzo707","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T13:50:00.000Z","end":"2026-05-28T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-ih3egnsbv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T14:15:00.000Z","end":"2026-05-28T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-i8cujr6ko","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-28T14:40:00.000Z","end":"2026-05-28T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-o8nsq9xtf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-28T15:05:00.000Z","end":"2026-05-28T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.304Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-6m4xozdfh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-28T15:30:00.000Z","end":"2026-05-28T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-3q3xr1ems","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T15:55:00.000Z","end":"2026-05-28T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-7fzdpw8yy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T16:20:00.000Z","end":"2026-05-28T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-tbg9ds61b","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-28T16:45:00.000Z","end":"2026-05-28T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-nwj8q7s93","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-28T17:10:00.000Z","end":"2026-05-28T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.261Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-ltokfj4pw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T17:35:00.000Z","end":"2026-05-28T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-ttha470d2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T18:00:00.000Z","end":"2026-05-28T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-fpcuf8xe0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T18:25:00.000Z","end":"2026-05-28T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-lyzeu15ly","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T18:50:00.000Z","end":"2026-05-28T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-veyl6xnfo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T19:15:00.000Z","end":"2026-05-28T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-yvjdloljo","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T19:40:00.000Z","end":"2026-05-28T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-g00du74x0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T20:05:00.000Z","end":"2026-05-28T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-lxluszror","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T20:30:00.000Z","end":"2026-05-28T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-vcjf9cf45","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T20:55:00.000Z","end":"2026-05-28T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-63u5mnkpq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-28T21:20:00.000Z","end":"2026-05-28T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-4apkxfbfh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T13:00:00.000Z","end":"2026-05-29T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-mridm8615","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-29T13:25:00.000Z","end":"2026-05-29T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-bmq1ugi20","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-29T13:50:00.000Z","end":"2026-05-29T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.242Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-ag4zcudw4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T14:15:00.000Z","end":"2026-05-29T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-qclbifjc9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T14:40:00.000Z","end":"2026-05-29T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-sxneggc4z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T15:05:00.000Z","end":"2026-05-29T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-kcojymolu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T15:30:00.000Z","end":"2026-05-29T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-uz60klu1k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-29T15:55:00.000Z","end":"2026-05-29T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.199Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-ou63tw1xs","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T16:20:00.000Z","end":"2026-05-29T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-ad3u7jtn0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-29T16:45:00.000Z","end":"2026-05-29T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-4cd2xwu0j","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T17:10:00.000Z","end":"2026-05-29T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-h7mokdrnh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T17:35:00.000Z","end":"2026-05-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-l3pa2fw7p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T18:00:00.000Z","end":"2026-05-29T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-oc8xvz4at","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T18:25:00.000Z","end":"2026-05-29T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085733-k4he4z7iu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T18:50:00.000Z","end":"2026-05-29T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.733Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-k0fg07y15","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T19:15:00.000Z","end":"2026-05-29T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-59uhxm69o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-29T19:40:00.000Z","end":"2026-05-29T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.272Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-9lb6jczd4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T20:05:00.000Z","end":"2026-05-29T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-jjvi9a1ql","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-05-29T20:30:00.000Z","end":"2026-05-29T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-vf3ul0oxk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-29T20:55:00.000Z","end":"2026-05-29T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.248Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-fnmdb2ob9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-05-29T21:20:00.000Z","end":"2026-05-29T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-ul9k8eziv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T13:00:00.000Z","end":"2026-06-01T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-gusmiqk5k","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T13:25:00.000Z","end":"2026-06-01T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-icqu2cp5m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T13:50:00.000Z","end":"2026-06-01T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-oy3m8d2do","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-01T14:15:00.000Z","end":"2026-06-01T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-56xto81w7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-01T14:40:00.000Z","end":"2026-06-01T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-ti1j2k0im","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-01T15:05:00.000Z","end":"2026-06-01T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.266Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-4p8o5ef73","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T15:30:00.000Z","end":"2026-06-01T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-wyl2aapi6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T15:55:00.000Z","end":"2026-06-01T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-fjlyq6mif","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T16:20:00.000Z","end":"2026-06-01T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-vdiyxlrov","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T16:45:00.000Z","end":"2026-06-01T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-n8bbvpwyw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T17:10:00.000Z","end":"2026-06-01T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-11brnr31a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T17:35:00.000Z","end":"2026-06-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-dct10790e","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T18:00:00.000Z","end":"2026-06-01T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-5jbn97stt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T18:25:00.000Z","end":"2026-06-01T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-5pni2ld79","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-01T18:50:00.000Z","end":"2026-06-01T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.291Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-o5nhx9snh","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T19:15:00.000Z","end":"2026-06-01T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-5yojqljti","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T19:40:00.000Z","end":"2026-06-01T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-rkuof9fe1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-01T20:05:00.000Z","end":"2026-06-01T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.282Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-12t0mcjxu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-01T20:30:00.000Z","end":"2026-06-01T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-iwrsk3mb0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-01T20:55:00.000Z","end":"2026-06-01T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.309Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-yh492he1y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-01T21:20:00.000Z","end":"2026-06-01T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-y6s2ysgk3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T13:00:00.000Z","end":"2026-06-02T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-mvanypho6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T13:25:00.000Z","end":"2026-06-02T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-lj6tvg53x","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T13:50:00.000Z","end":"2026-06-02T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-qhitwbp8t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-02T14:15:00.000Z","end":"2026-06-02T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.297Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-fp42p7vfv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T14:40:00.000Z","end":"2026-06-02T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-h0b2yly8y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T15:05:00.000Z","end":"2026-06-02T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-jhzu1suqg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T15:30:00.000Z","end":"2026-06-02T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-zcv7sk0ek","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T15:55:00.000Z","end":"2026-06-02T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-qchx05ktr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T16:20:00.000Z","end":"2026-06-02T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.734Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-vr0cp2j0w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-02T16:45:00.000Z","end":"2026-06-02T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085734-dj3j91es9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-02T17:10:00.000Z","end":"2026-06-02T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.318Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-of2ascan4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T17:35:00.000Z","end":"2026-06-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-s8ngvfi0a","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-02T18:00:00.000Z","end":"2026-06-02T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-pecwb2f8r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-02T18:25:00.000Z","end":"2026-06-02T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-wspfserei","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T18:50:00.000Z","end":"2026-06-02T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-0m1swge57","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T19:15:00.000Z","end":"2026-06-02T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-2z037afob","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-02T19:40:00.000Z","end":"2026-06-02T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-k24bo27kg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-02T20:05:00.000Z","end":"2026-06-02T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.269Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-eraneex9z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T20:30:00.000Z","end":"2026-06-02T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-5tidt56i3","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T20:55:00.000Z","end":"2026-06-02T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-50qpveyon","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-02T21:20:00.000Z","end":"2026-06-02T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-bs2g53u4n","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T13:00:00.000Z","end":"2026-06-03T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-my0vdz36p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T13:25:00.000Z","end":"2026-06-03T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-hwobups5w","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T13:50:00.000Z","end":"2026-06-03T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-65rxdarvn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-03T14:15:00.000Z","end":"2026-06-03T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-x2cuq83n8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T14:40:00.000Z","end":"2026-06-03T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-xccdeuen6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T15:05:00.000Z","end":"2026-06-03T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-6ka97rzq7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-03T15:30:00.000Z","end":"2026-06-03T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-vqofpnixt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T15:55:00.000Z","end":"2026-06-03T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-3hxh8sf37","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T16:20:00.000Z","end":"2026-06-03T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-he0grh4ux","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-03T16:45:00.000Z","end":"2026-06-03T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-94auwymj4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T17:10:00.000Z","end":"2026-06-03T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-wehmgovu1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T17:35:00.000Z","end":"2026-06-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-kjhbd0h0r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T18:00:00.000Z","end":"2026-06-03T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-7nvx4fd0o","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T18:25:00.000Z","end":"2026-06-03T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-yk17awjda","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-03T18:50:00.000Z","end":"2026-06-03T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.240Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-9scfjdes0","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-03T19:15:00.000Z","end":"2026-06-03T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.263Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-f3c0z7whr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T19:40:00.000Z","end":"2026-06-03T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-6txnihnh6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-03T20:05:00.000Z","end":"2026-06-03T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-nardu7f55","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T20:30:00.000Z","end":"2026-06-03T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-a2s492g18","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-03T20:55:00.000Z","end":"2026-06-03T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.271Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-nv7kshua5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-03T21:20:00.000Z","end":"2026-06-03T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-ztqhnn0ne","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-04T13:00:00.000Z","end":"2026-06-04T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-dtnevd4je","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-04T13:25:00.000Z","end":"2026-06-04T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.296Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-jd508synm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-04T13:50:00.000Z","end":"2026-06-04T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.232Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-i29uenqi7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T14:15:00.000Z","end":"2026-06-04T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085735-1vmluv426","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T14:40:00.000Z","end":"2026-06-04T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.735Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-t2nhz3f1t","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-04T15:05:00.000Z","end":"2026-06-04T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.235Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-fg2bjuib4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T15:30:00.000Z","end":"2026-06-04T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.736Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-92i116mv1","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T15:55:00.000Z","end":"2026-06-04T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.736Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-bnyvs2yt6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-04T16:20:00.000Z","end":"2026-06-04T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-od9qa3rw7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T16:45:00.000Z","end":"2026-06-04T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.736Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-yr6ypmdvk","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T17:10:00.000Z","end":"2026-06-04T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.736Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-w9yufj5f9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T17:35:00.000Z","end":"2026-06-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.736Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-6hbrphm9p","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T18:00:00.000Z","end":"2026-06-04T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.736Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085736-2waj7zcc9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-04T18:25:00.000Z","end":"2026-06-04T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.283Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-zdx02k83v","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T18:50:00.000Z","end":"2026-06-04T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-d100hozew","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-04T19:15:00.000Z","end":"2026-06-04T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.264Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-1ooon2wcj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T19:40:00.000Z","end":"2026-06-04T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-1861mwszx","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T20:05:00.000Z","end":"2026-06-04T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-g5vr4p5p2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T20:30:00.000Z","end":"2026-06-04T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-8zmcrm0ob","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T20:55:00.000Z","end":"2026-06-04T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-danoa6ez4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-04T21:20:00.000Z","end":"2026-06-04T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-o741383fn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T13:00:00.000Z","end":"2026-06-05T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-akv89pqqt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T13:25:00.000Z","end":"2026-06-05T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-t9olfwemz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T13:50:00.000Z","end":"2026-06-05T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-wexyup1lb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T14:15:00.000Z","end":"2026-06-05T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.299Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-xoppff0ud","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T14:40:00.000Z","end":"2026-06-05T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085737-1b3d1d6j2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T15:05:00.000Z","end":"2026-06-05T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.737Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-yiua40mzj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T15:30:00.000Z","end":"2026-06-05T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-wfrxlb8ea","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T15:55:00.000Z","end":"2026-06-05T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-22r6al0y7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T16:20:00.000Z","end":"2026-06-05T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.249Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-dedz2adt8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T16:45:00.000Z","end":"2026-06-05T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-tgi4vahok","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T17:10:00.000Z","end":"2026-06-05T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-okfh7zf3z","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T17:35:00.000Z","end":"2026-06-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.239Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-de1afivmg","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T18:00:00.000Z","end":"2026-06-05T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.281Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-hkf9jj99u","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T18:25:00.000Z","end":"2026-06-05T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.260Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-gz9u6q9fw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T18:50:00.000Z","end":"2026-06-05T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.277Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-n8catwbdu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T19:15:00.000Z","end":"2026-06-05T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.259Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-ipugukyt5","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T19:40:00.000Z","end":"2026-06-05T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.252Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-603g2xlyv","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T20:05:00.000Z","end":"2026-06-05T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.319Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-jmtwtmn9m","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-05T20:30:00.000Z","end":"2026-06-05T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-0m1xys5j9","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T20:55:00.000Z","end":"2026-06-05T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.245Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-1a1e794rp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-05T21:20:00.000Z","end":"2026-06-05T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.292Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-lhfpvcxo7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T13:00:00.000Z","end":"2026-06-08T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-094i91ft7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-08T13:25:00.000Z","end":"2026-06-08T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.270Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-0qzc5tvm4","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T13:50:00.000Z","end":"2026-06-08T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-sd1w280ic","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T14:15:00.000Z","end":"2026-06-08T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-fm55tues8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T14:40:00.000Z","end":"2026-06-08T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-nlukg6rsb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-08T15:05:00.000Z","end":"2026-06-08T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-ywjjk93ye","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T15:30:00.000Z","end":"2026-06-08T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-5y9m3bhgt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T15:55:00.000Z","end":"2026-06-08T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.738Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085738-xhuq2s9zj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-08T16:20:00.000Z","end":"2026-06-08T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.294Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-90qhdmpmq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T16:45:00.000Z","end":"2026-06-08T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-rcja7i4nc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T17:10:00.000Z","end":"2026-06-08T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-sais26zd8","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T17:35:00.000Z","end":"2026-06-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-io9gdl8we","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T18:00:00.000Z","end":"2026-06-08T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-i2fgif51g","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T18:25:00.000Z","end":"2026-06-08T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-ekr7bsn5r","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T18:50:00.000Z","end":"2026-06-08T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-5x4wwpbz6","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T19:15:00.000Z","end":"2026-06-08T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-tnzefc5g2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T19:40:00.000Z","end":"2026-06-08T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-fq4rneeyc","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T20:05:00.000Z","end":"2026-06-08T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-4wlr2llk7","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T20:30:00.000Z","end":"2026-06-08T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-eqacrkhj2","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-08T20:55:00.000Z","end":"2026-06-08T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.254Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-d7c58djdw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-08T21:20:00.000Z","end":"2026-06-08T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-v2bw2ssjn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T13:00:00.000Z","end":"2026-06-09T13:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-4afwvkhto","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T13:25:00.000Z","end":"2026-06-09T13:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085739-h2xy84tig","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T13:50:00.000Z","end":"2026-06-09T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.739Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-qp2yt88lf","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T14:15:00.000Z","end":"2026-06-09T14:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-5d12xn3ob","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T14:40:00.000Z","end":"2026-06-09T15:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.255Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-e6k0ak1oa","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T15:05:00.000Z","end":"2026-06-09T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-33811neaw","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T15:30:00.000Z","end":"2026-06-09T15:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-wghxjn203","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T15:55:00.000Z","end":"2026-06-09T16:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-302qcvhuu","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T16:20:00.000Z","end":"2026-06-09T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-0gtj6aqpr","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T16:45:00.000Z","end":"2026-06-09T17:10:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.316Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-0zeyzc7qt","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T17:10:00.000Z","end":"2026-06-09T17:35:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-2mxql9ioy","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T17:35:00.000Z","end":"2026-06-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.298Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-yqfnkmzeb","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T18:00:00.000Z","end":"2026-06-09T18:25:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.315Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-if037jyqq","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T18:25:00.000Z","end":"2026-06-09T18:50:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-9svv271zn","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T18:50:00.000Z","end":"2026-06-09T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.285Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-8o78qz6wz","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T19:15:00.000Z","end":"2026-06-09T19:40:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.251Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-3rq4o697y","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T19:40:00.000Z","end":"2026-06-09T20:05:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.276Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-sqdw6avgj","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T20:05:00.000Z","end":"2026-06-09T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-qylmmxevm","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T20:30:00.000Z","end":"2026-06-09T20:55:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.308Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-rqepz97zp","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"busy","start":"2026-06-09T20:55:00.000Z","end":"2026-06-09T21:20:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.320Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-ho9lil4ck","resource_type":"Slot","schedule_id":"1765517085637-aveo1wfvt","status":"free","start":"2026-06-09T21:20:00.000Z","end":"2026-06-09T21:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Internal Medicine\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-31ujt82rg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T13:00:00.000Z","end":"2025-12-12T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-dpr35ydik","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T13:15:00.000Z","end":"2025-12-12T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-u5lks0k46","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T13:30:00.000Z","end":"2025-12-12T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-wzv8t9waq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T13:45:00.000Z","end":"2025-12-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-0oxq3etoe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T14:00:00.000Z","end":"2025-12-12T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-c3np5oub0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T14:15:00.000Z","end":"2025-12-12T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-fned6n7xs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T14:30:00.000Z","end":"2025-12-12T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-czyq46jvx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T14:45:00.000Z","end":"2025-12-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-ggt0ryaxd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T15:00:00.000Z","end":"2025-12-12T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-autmjzqeb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T15:15:00.000Z","end":"2025-12-12T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-2yefyqlj6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T15:30:00.000Z","end":"2025-12-12T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-9ua2a7qbs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T15:45:00.000Z","end":"2025-12-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.740Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085740-50xsz1ziv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T16:00:00.000Z","end":"2025-12-12T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.462Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-5pd2na6i3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T16:15:00.000Z","end":"2025-12-12T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-9w56uh520","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T16:30:00.000Z","end":"2025-12-12T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-yt0wav86d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T16:45:00.000Z","end":"2025-12-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-x95z7ddg1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T17:00:00.000Z","end":"2025-12-12T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-vm6c3m4qv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T17:15:00.000Z","end":"2025-12-12T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-61hqcf4za","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T17:30:00.000Z","end":"2025-12-12T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-wszbp93z9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T17:45:00.000Z","end":"2025-12-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-1y0738xxa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T18:00:00.000Z","end":"2025-12-12T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-23agfqod3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T18:15:00.000Z","end":"2025-12-12T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-adtfh7nz7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T18:30:00.000Z","end":"2025-12-12T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-w4ojoke7r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T18:45:00.000Z","end":"2025-12-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-blrkgjg9v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T19:00:00.000Z","end":"2025-12-12T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-3jyhz6yf1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T19:15:00.000Z","end":"2025-12-12T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-a2ksedof1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T19:30:00.000Z","end":"2025-12-12T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-evmhkwran","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-12T19:45:00.000Z","end":"2025-12-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-152dnnzuc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T20:00:00.000Z","end":"2025-12-12T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-ndhy75djz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T20:15:00.000Z","end":"2025-12-12T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-yt65v6b4b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T20:30:00.000Z","end":"2025-12-12T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-xxhvme6ur","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-12T20:45:00.000Z","end":"2025-12-12T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-lhkdgsypg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T13:00:00.000Z","end":"2025-12-15T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-87hi6p9k2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T13:15:00.000Z","end":"2025-12-15T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-ezpcnnsg1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T13:30:00.000Z","end":"2025-12-15T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-xm38denrv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T13:45:00.000Z","end":"2025-12-15T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-b8u1x00px","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T14:00:00.000Z","end":"2025-12-15T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-gr8exkjou","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T14:15:00.000Z","end":"2025-12-15T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-czlr6sz3a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T14:30:00.000Z","end":"2025-12-15T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-pytvkzix0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T14:45:00.000Z","end":"2025-12-15T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-y1lqpujc5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T15:00:00.000Z","end":"2025-12-15T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-3lnaz2k8b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T15:15:00.000Z","end":"2025-12-15T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-jze5fpxe9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T15:30:00.000Z","end":"2025-12-15T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-4gz97q1za","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T15:45:00.000Z","end":"2025-12-15T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-d42zf05or","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T16:00:00.000Z","end":"2025-12-15T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-gbueb7n1u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T16:15:00.000Z","end":"2025-12-15T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085741-4w911fmcz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T16:30:00.000Z","end":"2025-12-15T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.741Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-7q43loa9o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T16:45:00.000Z","end":"2025-12-15T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-pg30lac2q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T17:00:00.000Z","end":"2025-12-15T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-65u6stbiq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T17:15:00.000Z","end":"2025-12-15T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-pncr4ihmk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T17:30:00.000Z","end":"2025-12-15T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-v00nrm52a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T17:45:00.000Z","end":"2025-12-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-5tz6zduoo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T18:00:00.000Z","end":"2025-12-15T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-ue6q1eq44","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T18:15:00.000Z","end":"2025-12-15T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-gd13b0xg1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T18:30:00.000Z","end":"2025-12-15T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-jtbgwizh0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T18:45:00.000Z","end":"2025-12-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-xhnics0xc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T19:00:00.000Z","end":"2025-12-15T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-lgzavsutd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T19:15:00.000Z","end":"2025-12-15T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-c6qjc8afx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T19:30:00.000Z","end":"2025-12-15T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-a2f2ny3iu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T19:45:00.000Z","end":"2025-12-15T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-ud8bk8rrd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T20:00:00.000Z","end":"2025-12-15T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-rlku3oe43","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T20:15:00.000Z","end":"2025-12-15T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.474Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-b9wvh4nnd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-15T20:30:00.000Z","end":"2025-12-15T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-b1lbcc2o0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-15T20:45:00.000Z","end":"2025-12-15T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-7samjqhhg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T13:00:00.000Z","end":"2025-12-16T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-mh6osf94t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T13:15:00.000Z","end":"2025-12-16T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-d1zslezwb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T13:30:00.000Z","end":"2025-12-16T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-zdkiggp8r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T13:45:00.000Z","end":"2025-12-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-u72l3cakb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T14:00:00.000Z","end":"2025-12-16T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-ybfv8y24o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T14:15:00.000Z","end":"2025-12-16T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-g6oqe6lkg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T14:30:00.000Z","end":"2025-12-16T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-tu86ajy4f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T14:45:00.000Z","end":"2025-12-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-4phfn7ugd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T15:00:00.000Z","end":"2025-12-16T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-mwcffqqsr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T15:15:00.000Z","end":"2025-12-16T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-7qmmf4kko","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T15:30:00.000Z","end":"2025-12-16T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-i78y7mc8s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T15:45:00.000Z","end":"2025-12-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-80bpyqr8i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T16:00:00.000Z","end":"2025-12-16T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085742-tavc0ljj8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T16:15:00.000Z","end":"2025-12-16T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.742Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-qqqxqsb6i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T16:30:00.000Z","end":"2025-12-16T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-aj159q99o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T16:45:00.000Z","end":"2025-12-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-tmfv9ynvj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T17:00:00.000Z","end":"2025-12-16T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-2rz8unfsn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T17:15:00.000Z","end":"2025-12-16T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-1lc2d6y4n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T17:30:00.000Z","end":"2025-12-16T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-4zf2phnal","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T17:45:00.000Z","end":"2025-12-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-nfkkdsxgi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T18:00:00.000Z","end":"2025-12-16T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-2sv8k3x1k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T18:15:00.000Z","end":"2025-12-16T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-3xpyw7g55","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T18:30:00.000Z","end":"2025-12-16T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-lff6isbkr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T18:45:00.000Z","end":"2025-12-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-dbbp0k62y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T19:00:00.000Z","end":"2025-12-16T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-wder4zdha","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T19:15:00.000Z","end":"2025-12-16T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-438hqxqz2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T19:30:00.000Z","end":"2025-12-16T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.414Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-7qunrjd7i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T19:45:00.000Z","end":"2025-12-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085743-y4x7iq6vx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T20:00:00.000Z","end":"2025-12-16T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.743Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-l4wd3chsf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-16T20:15:00.000Z","end":"2025-12-16T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-h5bp6n48v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T20:30:00.000Z","end":"2025-12-16T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.744Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-5610a46iv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-16T20:45:00.000Z","end":"2025-12-16T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.744Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-vsg50snuf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T13:00:00.000Z","end":"2025-12-17T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.744Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-8of12d4nm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T13:15:00.000Z","end":"2025-12-17T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-cdczawcdd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T13:30:00.000Z","end":"2025-12-17T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-6d4tl4vg7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T13:45:00.000Z","end":"2025-12-17T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.744Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-nek3d3cno","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T14:00:00.000Z","end":"2025-12-17T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-jlys4pur8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T14:15:00.000Z","end":"2025-12-17T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-c6fkd5ryy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T14:30:00.000Z","end":"2025-12-17T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.744Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-2m21uitv5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T14:45:00.000Z","end":"2025-12-17T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.744Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-pwslw0vsy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T15:00:00.000Z","end":"2025-12-17T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-kj1hq2g9w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T15:15:00.000Z","end":"2025-12-17T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-x6q1wvo2n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T15:30:00.000Z","end":"2025-12-17T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-55fix9mi0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T15:45:00.000Z","end":"2025-12-17T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-u0a1alvs6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T16:00:00.000Z","end":"2025-12-17T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085744-w15b7ak1p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T16:15:00.000Z","end":"2025-12-17T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-9j0e2w9jj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T16:30:00.000Z","end":"2025-12-17T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-0ykqo5zas","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T16:45:00.000Z","end":"2025-12-17T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-asgpu4q51","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T17:00:00.000Z","end":"2025-12-17T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-4z9oq3a30","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T17:15:00.000Z","end":"2025-12-17T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-0bgs8uzc0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T17:30:00.000Z","end":"2025-12-17T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-gfq0lrx1v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T17:45:00.000Z","end":"2025-12-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-evpsp2y4l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T18:00:00.000Z","end":"2025-12-17T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-f89534qmn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T18:15:00.000Z","end":"2025-12-17T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-7g935feqe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T18:30:00.000Z","end":"2025-12-17T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-po0nulncv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T18:45:00.000Z","end":"2025-12-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-5uq1jywf9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T19:00:00.000Z","end":"2025-12-17T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-k6rjjnrci","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T19:15:00.000Z","end":"2025-12-17T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-laq4dsl63","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T19:30:00.000Z","end":"2025-12-17T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-sc676f513","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T19:45:00.000Z","end":"2025-12-17T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-xk7i0d8e6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T20:00:00.000Z","end":"2025-12-17T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-jg4xrqq6h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-17T20:15:00.000Z","end":"2025-12-17T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-vwu15f3oj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T20:30:00.000Z","end":"2025-12-17T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-gme13uvmt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-17T20:45:00.000Z","end":"2025-12-17T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-8cclkf4e7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T13:00:00.000Z","end":"2025-12-18T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-72d7bbq11","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T13:15:00.000Z","end":"2025-12-18T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-fnfovbhq7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T13:30:00.000Z","end":"2025-12-18T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-bxp7ig8gz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T13:45:00.000Z","end":"2025-12-18T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-ceoq7nolk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T14:00:00.000Z","end":"2025-12-18T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-644xm0kf3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T14:15:00.000Z","end":"2025-12-18T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-p6jyvxjzx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T14:30:00.000Z","end":"2025-12-18T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-quboj84av","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T14:45:00.000Z","end":"2025-12-18T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-djf9d7q9y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T15:00:00.000Z","end":"2025-12-18T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-akctakw0i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T15:15:00.000Z","end":"2025-12-18T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-iab3770l5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T15:30:00.000Z","end":"2025-12-18T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-w757zofrh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T15:45:00.000Z","end":"2025-12-18T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-wxlty07h4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T16:00:00.000Z","end":"2025-12-18T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-iub47mrqa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T16:15:00.000Z","end":"2025-12-18T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-u6cnp1s17","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T16:30:00.000Z","end":"2025-12-18T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-mpwocju3p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T16:45:00.000Z","end":"2025-12-18T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-807xynrmv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T17:00:00.000Z","end":"2025-12-18T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.745Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-c0xkznh1z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T17:15:00.000Z","end":"2025-12-18T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085745-ldak3dcl5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T17:30:00.000Z","end":"2025-12-18T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-yikiqqqpd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T17:45:00.000Z","end":"2025-12-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-ir57nqnth","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T18:00:00.000Z","end":"2025-12-18T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-5yeph74zi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T18:15:00.000Z","end":"2025-12-18T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-jrgjzlkvq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T18:30:00.000Z","end":"2025-12-18T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-3jwfb08s6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T18:45:00.000Z","end":"2025-12-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-kyk2cwodq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T19:00:00.000Z","end":"2025-12-18T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-3jhf2a8qw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T19:15:00.000Z","end":"2025-12-18T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-6d0uhuwwx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T19:30:00.000Z","end":"2025-12-18T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-joz9h989j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T19:45:00.000Z","end":"2025-12-18T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-oq1h7k51n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T20:00:00.000Z","end":"2025-12-18T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-2aka4imrq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-18T20:15:00.000Z","end":"2025-12-18T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-hvxnlwjs0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T20:30:00.000Z","end":"2025-12-18T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-5mwq94zri","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-18T20:45:00.000Z","end":"2025-12-18T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-po4jebccx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T13:00:00.000Z","end":"2025-12-19T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-diesedjqz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T13:15:00.000Z","end":"2025-12-19T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-aoynfj4c2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T13:30:00.000Z","end":"2025-12-19T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-y849li0de","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T13:45:00.000Z","end":"2025-12-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-o26vcnv22","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T14:00:00.000Z","end":"2025-12-19T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-xjt91bnwj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T14:15:00.000Z","end":"2025-12-19T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-raplrgmj1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T14:30:00.000Z","end":"2025-12-19T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-iwnkgrqq3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T14:45:00.000Z","end":"2025-12-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-en17m4rgf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T15:00:00.000Z","end":"2025-12-19T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-xj8tgprk6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T15:15:00.000Z","end":"2025-12-19T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-164naiykl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T15:30:00.000Z","end":"2025-12-19T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-bnucu634d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T15:45:00.000Z","end":"2025-12-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-rbb48zhnc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T16:00:00.000Z","end":"2025-12-19T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-nbzpojlvz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T16:15:00.000Z","end":"2025-12-19T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-1ipxo6fl8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T16:30:00.000Z","end":"2025-12-19T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-rwjy9mxkw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T16:45:00.000Z","end":"2025-12-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-8sqg63fnt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T17:00:00.000Z","end":"2025-12-19T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.746Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085746-446gkskjd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T17:15:00.000Z","end":"2025-12-19T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-xopumgtl5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T17:30:00.000Z","end":"2025-12-19T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-8nrsorvxk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T17:45:00.000Z","end":"2025-12-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-30nxslmzp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T18:00:00.000Z","end":"2025-12-19T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-v3rkl2zmh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T18:15:00.000Z","end":"2025-12-19T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-03h2fnyiu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T18:30:00.000Z","end":"2025-12-19T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-v3e58yi0f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T18:45:00.000Z","end":"2025-12-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-p7ti9t0jc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T19:00:00.000Z","end":"2025-12-19T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-hz9ncdivp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T19:15:00.000Z","end":"2025-12-19T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-u0b9y0fjn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T19:30:00.000Z","end":"2025-12-19T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-5qd8yew93","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T19:45:00.000Z","end":"2025-12-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-4ifxmbqkl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T20:00:00.000Z","end":"2025-12-19T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-z3me8fxm1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T20:15:00.000Z","end":"2025-12-19T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-m4y4m4m6e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-19T20:30:00.000Z","end":"2025-12-19T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-512kxljgo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-19T20:45:00.000Z","end":"2025-12-19T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-oissfcshh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T13:00:00.000Z","end":"2025-12-22T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-dqfhb1n34","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T13:15:00.000Z","end":"2025-12-22T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-kne03sqps","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T13:30:00.000Z","end":"2025-12-22T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-ybgmik0x5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T13:45:00.000Z","end":"2025-12-22T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-8a7v6ppan","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T14:00:00.000Z","end":"2025-12-22T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-cujff9zjc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T14:15:00.000Z","end":"2025-12-22T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-ejid8gp10","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T14:30:00.000Z","end":"2025-12-22T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-rj9f5lc1u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T14:45:00.000Z","end":"2025-12-22T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-s659owee3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T15:00:00.000Z","end":"2025-12-22T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-ys0owqslm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T15:15:00.000Z","end":"2025-12-22T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-ipezwb7lh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T15:30:00.000Z","end":"2025-12-22T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-tfyaw271f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T15:45:00.000Z","end":"2025-12-22T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.747Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-s2net86kj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T16:00:00.000Z","end":"2025-12-22T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-sho3f72xl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T16:15:00.000Z","end":"2025-12-22T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-s4z01lhaw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T16:30:00.000Z","end":"2025-12-22T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085747-uzetlpmbz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T16:45:00.000Z","end":"2025-12-22T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-zurr51b5t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T17:00:00.000Z","end":"2025-12-22T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-t8s99ra1l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T17:15:00.000Z","end":"2025-12-22T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-np0xt8tyb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T17:30:00.000Z","end":"2025-12-22T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-hug6pfwln","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T17:45:00.000Z","end":"2025-12-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-lpapaykfl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T18:00:00.000Z","end":"2025-12-22T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-z2etxd5s3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T18:15:00.000Z","end":"2025-12-22T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-jzpd74jfh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T18:30:00.000Z","end":"2025-12-22T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-edzdd2o4b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T18:45:00.000Z","end":"2025-12-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-ccu5s55vm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T19:00:00.000Z","end":"2025-12-22T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-dbbhirdl5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T19:15:00.000Z","end":"2025-12-22T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-54lg2axnk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T19:30:00.000Z","end":"2025-12-22T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-b88vqnfw5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T19:45:00.000Z","end":"2025-12-22T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-yaz9bn9vj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T20:00:00.000Z","end":"2025-12-22T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-s4d73nu92","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-22T20:15:00.000Z","end":"2025-12-22T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-1zkw2r0m7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T20:30:00.000Z","end":"2025-12-22T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-zujfv1ahf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-22T20:45:00.000Z","end":"2025-12-22T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-9y0w9zwgo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T13:00:00.000Z","end":"2025-12-23T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-yabiwe4o1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T13:15:00.000Z","end":"2025-12-23T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-inuria61r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T13:30:00.000Z","end":"2025-12-23T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-5czcjtt7t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T13:45:00.000Z","end":"2025-12-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-mg2h0w3yd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T14:00:00.000Z","end":"2025-12-23T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-7cgl2wa4t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T14:15:00.000Z","end":"2025-12-23T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-pgvpus7sc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T14:30:00.000Z","end":"2025-12-23T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-xjmziyogf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T14:45:00.000Z","end":"2025-12-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-lkz09wcj9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T15:00:00.000Z","end":"2025-12-23T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-qe4arxywt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T15:15:00.000Z","end":"2025-12-23T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-s2ghle8nu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T15:30:00.000Z","end":"2025-12-23T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-g8z8oxll8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T15:45:00.000Z","end":"2025-12-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-tp7y6vjxo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T16:00:00.000Z","end":"2025-12-23T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-etj1mrdtl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T16:15:00.000Z","end":"2025-12-23T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-0u2739nq3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T16:30:00.000Z","end":"2025-12-23T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-bdv5k4kcu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T16:45:00.000Z","end":"2025-12-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-ww20pry35","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T17:00:00.000Z","end":"2025-12-23T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085748-yi7dmj4a6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T17:15:00.000Z","end":"2025-12-23T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.748Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-d578qqx9x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T17:30:00.000Z","end":"2025-12-23T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-vnkut98kp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T17:45:00.000Z","end":"2025-12-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-9eni7tugk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T18:00:00.000Z","end":"2025-12-23T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-85d1c3m59","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T18:15:00.000Z","end":"2025-12-23T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-67whyb7ry","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T18:30:00.000Z","end":"2025-12-23T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-j6zzdkdg9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T18:45:00.000Z","end":"2025-12-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-adp00wxxr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T19:00:00.000Z","end":"2025-12-23T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-elfdk81gg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T19:15:00.000Z","end":"2025-12-23T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-vf6ra015n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T19:30:00.000Z","end":"2025-12-23T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-h7gou8e7g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T19:45:00.000Z","end":"2025-12-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-8l2cad8m3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-23T20:00:00.000Z","end":"2025-12-23T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-45frsvx2o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T20:15:00.000Z","end":"2025-12-23T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-ys8my9klz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T20:30:00.000Z","end":"2025-12-23T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-k4utf7ak4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-23T20:45:00.000Z","end":"2025-12-23T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-9x98nt527","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T13:00:00.000Z","end":"2025-12-24T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-6urri94hn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T13:15:00.000Z","end":"2025-12-24T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-jnid6p6hl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T13:30:00.000Z","end":"2025-12-24T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-9ikj50d0y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T13:45:00.000Z","end":"2025-12-24T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-buks28dk1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T14:00:00.000Z","end":"2025-12-24T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-yjw7ta4j7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T14:15:00.000Z","end":"2025-12-24T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-f2mkxk2mk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T14:30:00.000Z","end":"2025-12-24T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-79lrqaksh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T14:45:00.000Z","end":"2025-12-24T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-e9125os8l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T15:00:00.000Z","end":"2025-12-24T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085749-ot2v7x4wv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T15:15:00.000Z","end":"2025-12-24T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.749Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085750-ufpzuwnd9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T15:30:00.000Z","end":"2025-12-24T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.750Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085750-ktiizez8g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T15:45:00.000Z","end":"2025-12-24T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085750-1uc1m41qb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T16:00:00.000Z","end":"2025-12-24T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085750-zzo6lmfry","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T16:15:00.000Z","end":"2025-12-24T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085750-gm5zns5vk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T16:30:00.000Z","end":"2025-12-24T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-k96x3n1q1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T16:45:00.000Z","end":"2025-12-24T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-8vrpzijls","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T17:00:00.000Z","end":"2025-12-24T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-l4cwhcqbz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T17:15:00.000Z","end":"2025-12-24T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-cobf79q7y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T17:30:00.000Z","end":"2025-12-24T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-29gh8obwq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T17:45:00.000Z","end":"2025-12-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-vl8dux5r6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T18:00:00.000Z","end":"2025-12-24T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-y57mdirsx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T18:15:00.000Z","end":"2025-12-24T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-i0c1sxmg0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T18:30:00.000Z","end":"2025-12-24T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-joeqao965","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T18:45:00.000Z","end":"2025-12-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-ol288yy11","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T19:00:00.000Z","end":"2025-12-24T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-zs2hdmbc8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T19:15:00.000Z","end":"2025-12-24T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-9d5tupx3x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T19:30:00.000Z","end":"2025-12-24T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-ulf724q2u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T19:45:00.000Z","end":"2025-12-24T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-tx3ch9p68","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T20:00:00.000Z","end":"2025-12-24T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-h5hpp32g7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-24T20:15:00.000Z","end":"2025-12-24T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-x31dmnx7f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T20:30:00.000Z","end":"2025-12-24T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-xdf4neg97","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-24T20:45:00.000Z","end":"2025-12-24T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-yhkmtz858","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T13:00:00.000Z","end":"2025-12-25T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-ph2u1ztpx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T13:15:00.000Z","end":"2025-12-25T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-6j9ez38zr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T13:30:00.000Z","end":"2025-12-25T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-8zn87k9c6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T13:45:00.000Z","end":"2025-12-25T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-z1q630nh3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T14:00:00.000Z","end":"2025-12-25T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-b04v5d1te","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T14:15:00.000Z","end":"2025-12-25T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-k9g9w36he","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T14:30:00.000Z","end":"2025-12-25T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-4uj3b9qfd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T14:45:00.000Z","end":"2025-12-25T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-lz2w6i8fw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T15:00:00.000Z","end":"2025-12-25T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-vxahfa3t4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T15:15:00.000Z","end":"2025-12-25T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-wxf1vjdhh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T15:30:00.000Z","end":"2025-12-25T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-jk0akjbfs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T15:45:00.000Z","end":"2025-12-25T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-dyfe0i9p8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T16:00:00.000Z","end":"2025-12-25T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085751-i8mh376yo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T16:15:00.000Z","end":"2025-12-25T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.751Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-32803wc5n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T16:30:00.000Z","end":"2025-12-25T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-k88aao17w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T16:45:00.000Z","end":"2025-12-25T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-zvlpnh2fu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T17:00:00.000Z","end":"2025-12-25T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-yanrfud3s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T17:15:00.000Z","end":"2025-12-25T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-lnh0w6zf7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T17:30:00.000Z","end":"2025-12-25T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-gxv22g62g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T17:45:00.000Z","end":"2025-12-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-iwnq0pmoj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T18:00:00.000Z","end":"2025-12-25T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-zc6gzh4x1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T18:15:00.000Z","end":"2025-12-25T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-ppfyb0dyf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T18:30:00.000Z","end":"2025-12-25T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-vvrbg5be9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T18:45:00.000Z","end":"2025-12-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-a4qbk5vje","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T19:00:00.000Z","end":"2025-12-25T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-ie340spfq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T19:15:00.000Z","end":"2025-12-25T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-2qdhyty6t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T19:30:00.000Z","end":"2025-12-25T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-5c6pgqq5j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T19:45:00.000Z","end":"2025-12-25T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-2s5mmp659","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T20:00:00.000Z","end":"2025-12-25T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-qd765sv0u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T20:15:00.000Z","end":"2025-12-25T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-b75zvipk8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-25T20:30:00.000Z","end":"2025-12-25T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-7ftr8mw9x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-25T20:45:00.000Z","end":"2025-12-25T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-k5z2kfx3d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T13:00:00.000Z","end":"2025-12-26T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-ok1919lz5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T13:15:00.000Z","end":"2025-12-26T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-gd67odmar","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T13:30:00.000Z","end":"2025-12-26T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-rprvhzyfn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T13:45:00.000Z","end":"2025-12-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-zeipuz1x9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T14:00:00.000Z","end":"2025-12-26T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-9dqye6sep","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T14:15:00.000Z","end":"2025-12-26T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-8145wpyib","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T14:30:00.000Z","end":"2025-12-26T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-men3o4bft","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T14:45:00.000Z","end":"2025-12-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-k0f5w39cj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T15:00:00.000Z","end":"2025-12-26T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-h8v2m8708","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T15:15:00.000Z","end":"2025-12-26T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-ppgm0wbbu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T15:30:00.000Z","end":"2025-12-26T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-duqh5hjqr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T15:45:00.000Z","end":"2025-12-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-0xtzf3cew","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T16:00:00.000Z","end":"2025-12-26T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-lqem9iad2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T16:15:00.000Z","end":"2025-12-26T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-zewhuc21q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T16:30:00.000Z","end":"2025-12-26T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-2x8jiq55s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T16:45:00.000Z","end":"2025-12-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-77kizrb5m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T17:00:00.000Z","end":"2025-12-26T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-bonvl449u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T17:15:00.000Z","end":"2025-12-26T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.752Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-hry99bo94","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T17:30:00.000Z","end":"2025-12-26T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085752-xk1c6b79q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T17:45:00.000Z","end":"2025-12-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-6a3v1ysci","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T18:00:00.000Z","end":"2025-12-26T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-7byv8qdbt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T18:15:00.000Z","end":"2025-12-26T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.506Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-iabvtjf3j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T18:30:00.000Z","end":"2025-12-26T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-l62n6463v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T18:45:00.000Z","end":"2025-12-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-w2gihqxei","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T19:00:00.000Z","end":"2025-12-26T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-eofd1cez0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T19:15:00.000Z","end":"2025-12-26T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-zvlqv49k6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T19:30:00.000Z","end":"2025-12-26T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-433lq827w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T19:45:00.000Z","end":"2025-12-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-v4y2yvyd2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T20:00:00.000Z","end":"2025-12-26T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-66m36narf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T20:15:00.000Z","end":"2025-12-26T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-ax2hb0w5h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-26T20:30:00.000Z","end":"2025-12-26T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-2mx18gom2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-26T20:45:00.000Z","end":"2025-12-26T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-h7gsbjhr5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T13:00:00.000Z","end":"2025-12-29T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-sm0ij1iq3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T13:15:00.000Z","end":"2025-12-29T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-h6rdm9ih7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T13:30:00.000Z","end":"2025-12-29T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-v96relu8d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T13:45:00.000Z","end":"2025-12-29T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-6eylpki7k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T14:00:00.000Z","end":"2025-12-29T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-07mi4v6tb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T14:15:00.000Z","end":"2025-12-29T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-sb3p8axt6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T14:30:00.000Z","end":"2025-12-29T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-ztzhg8djn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T14:45:00.000Z","end":"2025-12-29T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-fmqo1kaq6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T15:00:00.000Z","end":"2025-12-29T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-qhx87mncw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T15:15:00.000Z","end":"2025-12-29T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-ziwtnq492","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T15:30:00.000Z","end":"2025-12-29T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-qni4bxdkk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T15:45:00.000Z","end":"2025-12-29T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-ni1vvmj2d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T16:00:00.000Z","end":"2025-12-29T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-vsxw6rfoo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T16:15:00.000Z","end":"2025-12-29T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-h7tugyq3a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T16:30:00.000Z","end":"2025-12-29T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-ewcc6cek3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T16:45:00.000Z","end":"2025-12-29T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-wrn6wy5ne","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T17:00:00.000Z","end":"2025-12-29T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-lz6cwoi35","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T17:15:00.000Z","end":"2025-12-29T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-tf3rg9bj4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T17:30:00.000Z","end":"2025-12-29T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-vwnn5t5to","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T17:45:00.000Z","end":"2025-12-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-vs4uz87kh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T18:00:00.000Z","end":"2025-12-29T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.753Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-z246grxh2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T18:15:00.000Z","end":"2025-12-29T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085753-n5ngx7q8j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T18:30:00.000Z","end":"2025-12-29T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-e6nmhh4ox","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T18:45:00.000Z","end":"2025-12-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-n1koag2xc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T19:00:00.000Z","end":"2025-12-29T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-fmboaoiyc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T19:15:00.000Z","end":"2025-12-29T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-f5yozbn8z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T19:30:00.000Z","end":"2025-12-29T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-ormz9vmtc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T19:45:00.000Z","end":"2025-12-29T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-hvpr2d91s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-29T20:00:00.000Z","end":"2025-12-29T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-s1x9do84r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T20:15:00.000Z","end":"2025-12-29T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-aatojkrnt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T20:30:00.000Z","end":"2025-12-29T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-2n3rc7j1t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-29T20:45:00.000Z","end":"2025-12-29T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-o2j40r666","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T13:00:00.000Z","end":"2025-12-30T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-q5psqj43h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T13:15:00.000Z","end":"2025-12-30T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-k8x70d6ow","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T13:30:00.000Z","end":"2025-12-30T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-qq4co2po4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T13:45:00.000Z","end":"2025-12-30T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-a4wnafrt8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T14:00:00.000Z","end":"2025-12-30T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-l7s5bf6g8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T14:15:00.000Z","end":"2025-12-30T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-od7ojd7v1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T14:30:00.000Z","end":"2025-12-30T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-cvzvifouh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T14:45:00.000Z","end":"2025-12-30T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-hr0l6b3vw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T15:00:00.000Z","end":"2025-12-30T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-cwgl7pgto","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T15:15:00.000Z","end":"2025-12-30T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-l17kz23lw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T15:30:00.000Z","end":"2025-12-30T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-hup86wzgm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T15:45:00.000Z","end":"2025-12-30T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-66dce95kr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T16:00:00.000Z","end":"2025-12-30T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-al5xds7i0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T16:15:00.000Z","end":"2025-12-30T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-25tznp53i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T16:30:00.000Z","end":"2025-12-30T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-e678lmykx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T16:45:00.000Z","end":"2025-12-30T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-mmo16jggw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T17:00:00.000Z","end":"2025-12-30T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-5iyvtdwmx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T17:15:00.000Z","end":"2025-12-30T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-1exdcoawj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T17:30:00.000Z","end":"2025-12-30T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-v171mivm7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T17:45:00.000Z","end":"2025-12-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-n32mhq353","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T18:00:00.000Z","end":"2025-12-30T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085754-y44zpo55i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T18:15:00.000Z","end":"2025-12-30T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.754Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-dkd3wcg3b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T18:30:00.000Z","end":"2025-12-30T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-tcjkmqrrq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T18:45:00.000Z","end":"2025-12-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-4f4c4m2u8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T19:00:00.000Z","end":"2025-12-30T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-26xp4srla","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T19:15:00.000Z","end":"2025-12-30T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-eu3dzu49j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T19:30:00.000Z","end":"2025-12-30T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.450Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-kg6o3gqie","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T19:45:00.000Z","end":"2025-12-30T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.755Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-gt5coatbj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T20:00:00.000Z","end":"2025-12-30T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-t0n97xtxj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T20:15:00.000Z","end":"2025-12-30T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.755Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-themywv9l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-30T20:30:00.000Z","end":"2025-12-30T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.755Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-w67es14af","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-30T20:45:00.000Z","end":"2025-12-30T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-e5jsvyg8x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T13:00:00.000Z","end":"2025-12-31T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.755Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-lzl941c9k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T13:15:00.000Z","end":"2025-12-31T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-lv6hpz7b5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T13:30:00.000Z","end":"2025-12-31T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-wwv6xrz9r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T13:45:00.000Z","end":"2025-12-31T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-g87dy8ga9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T14:00:00.000Z","end":"2025-12-31T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.755Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-tukk6w2yw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T14:15:00.000Z","end":"2025-12-31T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-sybpvorei","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T14:30:00.000Z","end":"2025-12-31T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.755Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-umjcyllzc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T14:45:00.000Z","end":"2025-12-31T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-4ns4ai71d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T15:00:00.000Z","end":"2025-12-31T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.755Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-t1291g1yq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T15:15:00.000Z","end":"2025-12-31T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-j4vrn14tf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T15:30:00.000Z","end":"2025-12-31T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-b2in4qp0i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T15:45:00.000Z","end":"2025-12-31T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-6wlps7xv2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T16:00:00.000Z","end":"2025-12-31T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.755Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-m1wtv08tx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T16:15:00.000Z","end":"2025-12-31T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085755-1tcin9v6b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T16:30:00.000Z","end":"2025-12-31T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085756-cidp39o97","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T16:45:00.000Z","end":"2025-12-31T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.756Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-jt69mwhdo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T17:00:00.000Z","end":"2025-12-31T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-emvd387ix","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T17:15:00.000Z","end":"2025-12-31T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-ax89xe6sf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T17:30:00.000Z","end":"2025-12-31T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-8o3cm3wyv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T17:45:00.000Z","end":"2025-12-31T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-8okpk6w82","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T18:00:00.000Z","end":"2025-12-31T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-ksogvr13s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T18:15:00.000Z","end":"2025-12-31T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-iumcl9pql","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T18:30:00.000Z","end":"2025-12-31T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-q99gnka6j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T18:45:00.000Z","end":"2025-12-31T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-gerxerdi7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T19:00:00.000Z","end":"2025-12-31T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-nzurssesl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T19:15:00.000Z","end":"2025-12-31T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-uyzv81mk7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T19:30:00.000Z","end":"2025-12-31T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-z7u4jk0rw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T19:45:00.000Z","end":"2025-12-31T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-7a9d64c2n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2025-12-31T20:00:00.000Z","end":"2025-12-31T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-s9exdsxio","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T20:15:00.000Z","end":"2025-12-31T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-pjnnlb6qe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T20:30:00.000Z","end":"2025-12-31T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-gas5izm0t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2025-12-31T20:45:00.000Z","end":"2025-12-31T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-ap1wy8tly","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T13:00:00.000Z","end":"2026-01-01T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-mfheuhw2t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T13:15:00.000Z","end":"2026-01-01T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-ungi5xiba","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T13:30:00.000Z","end":"2026-01-01T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-2bdw5kmlx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T13:45:00.000Z","end":"2026-01-01T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-dczt78wba","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T14:00:00.000Z","end":"2026-01-01T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-nizbu66tf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T14:15:00.000Z","end":"2026-01-01T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-l55j339p3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T14:30:00.000Z","end":"2026-01-01T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-9cnjl4la0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T14:45:00.000Z","end":"2026-01-01T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-gzs8sq8ni","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T15:00:00.000Z","end":"2026-01-01T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-kktvf9fkf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T15:15:00.000Z","end":"2026-01-01T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-2v4njnpmy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T15:30:00.000Z","end":"2026-01-01T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-16fx5esf0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T15:45:00.000Z","end":"2026-01-01T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-qumb9glzo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T16:00:00.000Z","end":"2026-01-01T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-dego7nmek","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T16:15:00.000Z","end":"2026-01-01T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-68zz1r08e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T16:30:00.000Z","end":"2026-01-01T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-hkzno5yrr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T16:45:00.000Z","end":"2026-01-01T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.414Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-df0knd879","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T17:00:00.000Z","end":"2026-01-01T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-ma092a1lu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T17:15:00.000Z","end":"2026-01-01T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.757Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085757-89y140z4d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T17:30:00.000Z","end":"2026-01-01T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-quel1ixhy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T17:45:00.000Z","end":"2026-01-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-7fdz6qnz0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T18:00:00.000Z","end":"2026-01-01T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-x5w07uj2k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T18:15:00.000Z","end":"2026-01-01T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-zvrpfw6bn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T18:30:00.000Z","end":"2026-01-01T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-6ty14ta8h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T18:45:00.000Z","end":"2026-01-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-7b6i3fzz1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T19:00:00.000Z","end":"2026-01-01T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-khvxpduqd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T19:15:00.000Z","end":"2026-01-01T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-9p14ywrqh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T19:30:00.000Z","end":"2026-01-01T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-wmixa9t93","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T19:45:00.000Z","end":"2026-01-01T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-8d6hrfy6m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T20:00:00.000Z","end":"2026-01-01T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-pjjb6xxfv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T20:15:00.000Z","end":"2026-01-01T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-weughrwyr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-01T20:30:00.000Z","end":"2026-01-01T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-iwc2mrq32","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-01T20:45:00.000Z","end":"2026-01-01T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-blctp8cgi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T13:00:00.000Z","end":"2026-01-02T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-ju6elqeed","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T13:15:00.000Z","end":"2026-01-02T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-do0gc5dsw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T13:30:00.000Z","end":"2026-01-02T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-wu2dgor4b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T13:45:00.000Z","end":"2026-01-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-4wk6f08mp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T14:00:00.000Z","end":"2026-01-02T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-sn70brf7s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T14:15:00.000Z","end":"2026-01-02T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-35e5js127","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T14:30:00.000Z","end":"2026-01-02T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-ue3vaj2f5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T14:45:00.000Z","end":"2026-01-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-c42aixaat","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T15:00:00.000Z","end":"2026-01-02T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-ue3iqogy9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T15:15:00.000Z","end":"2026-01-02T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-9gz8dmsig","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T15:30:00.000Z","end":"2026-01-02T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-qgehdu078","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T15:45:00.000Z","end":"2026-01-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-5yewzcpnj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T16:00:00.000Z","end":"2026-01-02T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-q1iyuh7sp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T16:15:00.000Z","end":"2026-01-02T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-og7cv9uu0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T16:30:00.000Z","end":"2026-01-02T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-zyiqf5pz9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T16:45:00.000Z","end":"2026-01-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-7inn3uw44","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T17:00:00.000Z","end":"2026-01-02T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-82b6cfkm5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T17:15:00.000Z","end":"2026-01-02T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-bhnvqio2z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T17:30:00.000Z","end":"2026-01-02T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-h33lx8cyt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T17:45:00.000Z","end":"2026-01-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-zf2brht1m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T18:00:00.000Z","end":"2026-01-02T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.758Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085758-1h2b9sddl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T18:15:00.000Z","end":"2026-01-02T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-sm1jw0g4q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T18:30:00.000Z","end":"2026-01-02T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-4q3ptj024","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T18:45:00.000Z","end":"2026-01-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-rs2c2628p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T19:00:00.000Z","end":"2026-01-02T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-es6a05yvu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T19:15:00.000Z","end":"2026-01-02T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-nt6sdq9rw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T19:30:00.000Z","end":"2026-01-02T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-jyi4imszj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T19:45:00.000Z","end":"2026-01-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-xu555r1cn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T20:00:00.000Z","end":"2026-01-02T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-x6znqhcph","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-02T20:15:00.000Z","end":"2026-01-02T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-5zzcluadf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T20:30:00.000Z","end":"2026-01-02T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-hzep2vd73","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-02T20:45:00.000Z","end":"2026-01-02T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-ej1ved8y0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-05T13:00:00.000Z","end":"2026-01-05T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-1l2ug6rhn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T13:15:00.000Z","end":"2026-01-05T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-wj7lau50m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T13:30:00.000Z","end":"2026-01-05T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-9l5d1mvqd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T13:45:00.000Z","end":"2026-01-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-7a0jia8bm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T14:00:00.000Z","end":"2026-01-05T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-d888jssex","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T14:15:00.000Z","end":"2026-01-05T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-rgsow037o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T14:30:00.000Z","end":"2026-01-05T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-5zfu9av83","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T14:45:00.000Z","end":"2026-01-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-ysj430w07","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-05T15:00:00.000Z","end":"2026-01-05T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-9vi1rnlrk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T15:15:00.000Z","end":"2026-01-05T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-ekuf5cvx7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T15:30:00.000Z","end":"2026-01-05T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-lp1mmf2bi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T15:45:00.000Z","end":"2026-01-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-cl4pa5wxt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T16:00:00.000Z","end":"2026-01-05T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-j9kcgn64p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T16:15:00.000Z","end":"2026-01-05T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-tqiz0tm0p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T16:30:00.000Z","end":"2026-01-05T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-pf4c8shbq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T16:45:00.000Z","end":"2026-01-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-q82o5iq76","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-05T17:00:00.000Z","end":"2026-01-05T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.759Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-hwy6fh1l8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T17:15:00.000Z","end":"2026-01-05T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-r26bl1de8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T17:30:00.000Z","end":"2026-01-05T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-v52cdb172","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T17:45:00.000Z","end":"2026-01-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085759-b97c5oz4i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T18:00:00.000Z","end":"2026-01-05T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-92v0xzk8m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T18:15:00.000Z","end":"2026-01-05T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-kqcdnl1mc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T18:30:00.000Z","end":"2026-01-05T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-lp3qmam37","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T18:45:00.000Z","end":"2026-01-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-ww0e2syrw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T19:00:00.000Z","end":"2026-01-05T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-3ibyjp94y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T19:15:00.000Z","end":"2026-01-05T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-pyouiqz5z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T19:30:00.000Z","end":"2026-01-05T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-71w2fm5gw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T19:45:00.000Z","end":"2026-01-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-a5q8y5m7z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T20:00:00.000Z","end":"2026-01-05T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-5r9b0qg93","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T20:15:00.000Z","end":"2026-01-05T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-a0oxv6had","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T20:30:00.000Z","end":"2026-01-05T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-s6sfoeyym","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-05T20:45:00.000Z","end":"2026-01-05T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-9yukp4bot","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-06T13:00:00.000Z","end":"2026-01-06T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-b9lonk1qa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T13:15:00.000Z","end":"2026-01-06T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-zdz8lh29x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T13:30:00.000Z","end":"2026-01-06T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-f3dnf8v91","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T13:45:00.000Z","end":"2026-01-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-gdo8bjadc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T14:00:00.000Z","end":"2026-01-06T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-74f2g70r4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T14:15:00.000Z","end":"2026-01-06T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-uh8gs7gv9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T14:30:00.000Z","end":"2026-01-06T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-dx81yk9jv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T14:45:00.000Z","end":"2026-01-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-b84mim38d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T15:00:00.000Z","end":"2026-01-06T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-2u943zlhu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T15:15:00.000Z","end":"2026-01-06T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-5lp3iugx3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T15:30:00.000Z","end":"2026-01-06T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-i4uetku5d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T15:45:00.000Z","end":"2026-01-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-tuq71sxr6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T16:00:00.000Z","end":"2026-01-06T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-3xe7qqqfy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T16:15:00.000Z","end":"2026-01-06T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-y53j97ejh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T16:30:00.000Z","end":"2026-01-06T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-ah0n845xl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T16:45:00.000Z","end":"2026-01-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-qqfvmrxiy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T17:00:00.000Z","end":"2026-01-06T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-ph1hbdlps","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T17:15:00.000Z","end":"2026-01-06T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-m84xaru42","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T17:30:00.000Z","end":"2026-01-06T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-ee5svdbzp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T17:45:00.000Z","end":"2026-01-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-15nwhm1ab","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T18:00:00.000Z","end":"2026-01-06T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-j6o1cjfit","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T18:15:00.000Z","end":"2026-01-06T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-33po0et0d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T18:30:00.000Z","end":"2026-01-06T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-5vg8mldt5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T18:45:00.000Z","end":"2026-01-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085760-fdub8bm7a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T19:00:00.000Z","end":"2026-01-06T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.760Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-cyraaj48m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T19:15:00.000Z","end":"2026-01-06T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-t9zm802sr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T19:30:00.000Z","end":"2026-01-06T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-samkt66jk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T19:45:00.000Z","end":"2026-01-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-zt1wfc64a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T20:00:00.000Z","end":"2026-01-06T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-nvqno2l22","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T20:15:00.000Z","end":"2026-01-06T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-mdekysjf9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T20:30:00.000Z","end":"2026-01-06T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-mcdci3tky","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-06T20:45:00.000Z","end":"2026-01-06T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-kuab1566p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T13:00:00.000Z","end":"2026-01-07T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-vc1e92izf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T13:15:00.000Z","end":"2026-01-07T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-xm39ycdal","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T13:30:00.000Z","end":"2026-01-07T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-93eovbyes","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T13:45:00.000Z","end":"2026-01-07T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-9yq14yzwj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T14:00:00.000Z","end":"2026-01-07T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-1w4azbafp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T14:15:00.000Z","end":"2026-01-07T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-83h8yaiyz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T14:30:00.000Z","end":"2026-01-07T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-8tu3ebjnv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T14:45:00.000Z","end":"2026-01-07T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-3kgyevo3r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T15:00:00.000Z","end":"2026-01-07T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-91ssifju5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T15:15:00.000Z","end":"2026-01-07T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-ocmfkpzdg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T15:30:00.000Z","end":"2026-01-07T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.474Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-2g98syjb1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T15:45:00.000Z","end":"2026-01-07T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-yxo8tw2aq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T16:00:00.000Z","end":"2026-01-07T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-0zi6312gv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T16:15:00.000Z","end":"2026-01-07T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-ufyv8lksk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T16:30:00.000Z","end":"2026-01-07T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-p8oqqkz2t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T16:45:00.000Z","end":"2026-01-07T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-8ceekdqh2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T17:00:00.000Z","end":"2026-01-07T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-zfbxvn67z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T17:15:00.000Z","end":"2026-01-07T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-5zloj9823","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T17:30:00.000Z","end":"2026-01-07T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-lmjww1ini","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T17:45:00.000Z","end":"2026-01-07T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-yq84qtned","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T18:00:00.000Z","end":"2026-01-07T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-wphk2mvvv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T18:15:00.000Z","end":"2026-01-07T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-k9yz4q7o8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T18:30:00.000Z","end":"2026-01-07T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-c70kyi4o8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T18:45:00.000Z","end":"2026-01-07T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-6jkuj7zfh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T19:00:00.000Z","end":"2026-01-07T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-fq67epynb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T19:15:00.000Z","end":"2026-01-07T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-tj5pris9p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-07T19:30:00.000Z","end":"2026-01-07T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.761Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085761-5r36mg9hg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T19:45:00.000Z","end":"2026-01-07T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085762-868t98pv5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T20:00:00.000Z","end":"2026-01-07T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-bzspfctkb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T20:15:00.000Z","end":"2026-01-07T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-ozxk8aohq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T20:30:00.000Z","end":"2026-01-07T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-tx15d634m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-07T20:45:00.000Z","end":"2026-01-07T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-yfn1bwi8w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-08T13:00:00.000Z","end":"2026-01-08T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-3ytof17xz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T13:15:00.000Z","end":"2026-01-08T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-qduuhx6ks","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T13:30:00.000Z","end":"2026-01-08T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-bn8u0isgk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T13:45:00.000Z","end":"2026-01-08T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-3we4lsgz0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T14:00:00.000Z","end":"2026-01-08T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-fprj0vrbb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T14:15:00.000Z","end":"2026-01-08T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-iql3g75j5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T14:30:00.000Z","end":"2026-01-08T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-ajoewtmna","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-08T14:45:00.000Z","end":"2026-01-08T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-0k71ha4s8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T15:00:00.000Z","end":"2026-01-08T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-3ndg3fz0s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T15:15:00.000Z","end":"2026-01-08T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-k5gj52nrg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T15:30:00.000Z","end":"2026-01-08T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-rgnh0a7gt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T15:45:00.000Z","end":"2026-01-08T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-iemtjvyij","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T16:00:00.000Z","end":"2026-01-08T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-oyk48j9e3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T16:15:00.000Z","end":"2026-01-08T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-vrvzthi9l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-08T16:30:00.000Z","end":"2026-01-08T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-lx8m0fx3b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T16:45:00.000Z","end":"2026-01-08T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-7vu3xygue","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-08T17:00:00.000Z","end":"2026-01-08T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-25pbpsbji","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-08T17:15:00.000Z","end":"2026-01-08T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-lgy3djdyw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-08T17:30:00.000Z","end":"2026-01-08T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-mr0vmt5ws","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T17:45:00.000Z","end":"2026-01-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-8831lijkz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T18:00:00.000Z","end":"2026-01-08T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-l14zxxfm6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T18:15:00.000Z","end":"2026-01-08T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-9e8rt04dg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T18:30:00.000Z","end":"2026-01-08T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-c2tmam73u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-08T18:45:00.000Z","end":"2026-01-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-7b5zi8a6l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T19:00:00.000Z","end":"2026-01-08T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085763-sjvj7l0qt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T19:15:00.000Z","end":"2026-01-08T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.763Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-60anqamta","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T19:30:00.000Z","end":"2026-01-08T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-qspd0desf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-08T19:45:00.000Z","end":"2026-01-08T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-q0re4ig8i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T20:00:00.000Z","end":"2026-01-08T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-8zx8nk506","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T20:15:00.000Z","end":"2026-01-08T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-xe9yj2tb2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T20:30:00.000Z","end":"2026-01-08T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-ogwvybvnk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-08T20:45:00.000Z","end":"2026-01-08T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-stetxd1ge","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T13:00:00.000Z","end":"2026-01-09T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-x69l77cu3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T13:15:00.000Z","end":"2026-01-09T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-7ml36liyc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T13:30:00.000Z","end":"2026-01-09T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-kv0n8p7fl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T13:45:00.000Z","end":"2026-01-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-qtt467jcu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T14:00:00.000Z","end":"2026-01-09T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-5bqao40o0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T14:15:00.000Z","end":"2026-01-09T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-n75mmdnpe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-09T14:30:00.000Z","end":"2026-01-09T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-76on9km1h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T14:45:00.000Z","end":"2026-01-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-3ufcg97fi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T15:00:00.000Z","end":"2026-01-09T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-dt2hmz4xg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T15:15:00.000Z","end":"2026-01-09T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-qoa4mh2yf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-09T15:30:00.000Z","end":"2026-01-09T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-960mpx32j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T15:45:00.000Z","end":"2026-01-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-wpxl8f80a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T16:00:00.000Z","end":"2026-01-09T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-924vi5fd7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T16:15:00.000Z","end":"2026-01-09T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-pwha8uqfa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-09T16:30:00.000Z","end":"2026-01-09T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-xqom5mh9z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-09T16:45:00.000Z","end":"2026-01-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-38tmewfvp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T17:00:00.000Z","end":"2026-01-09T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-azb6zaai1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-09T17:15:00.000Z","end":"2026-01-09T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-jpmpgcbnc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T17:30:00.000Z","end":"2026-01-09T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-67iaozx5d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T17:45:00.000Z","end":"2026-01-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-lypp20cz9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T18:00:00.000Z","end":"2026-01-09T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-mtsh8ziy3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T18:15:00.000Z","end":"2026-01-09T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-jo90et6gh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-09T18:30:00.000Z","end":"2026-01-09T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-0l0xrpx18","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T18:45:00.000Z","end":"2026-01-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-uv5g9n37j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-09T19:00:00.000Z","end":"2026-01-09T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.764Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-13yzli8qn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T19:15:00.000Z","end":"2026-01-09T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085764-81vb3914b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T19:30:00.000Z","end":"2026-01-09T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-yhrhohx8y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T19:45:00.000Z","end":"2026-01-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-ego30d38d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T20:00:00.000Z","end":"2026-01-09T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-l6r7y2iec","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T20:15:00.000Z","end":"2026-01-09T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-k9se87r48","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T20:30:00.000Z","end":"2026-01-09T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-pzv5j2gwp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-09T20:45:00.000Z","end":"2026-01-09T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-fr255mv3m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T13:00:00.000Z","end":"2026-01-12T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-6hsl4gj36","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T13:15:00.000Z","end":"2026-01-12T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-9dwrjzimw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T13:30:00.000Z","end":"2026-01-12T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-p9xh1lt5k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T13:45:00.000Z","end":"2026-01-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-sg5f9yahh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T14:00:00.000Z","end":"2026-01-12T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-fs6eq9kyj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T14:15:00.000Z","end":"2026-01-12T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-bnycu9qqv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T14:30:00.000Z","end":"2026-01-12T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-ui2f9s204","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T14:45:00.000Z","end":"2026-01-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-yop3ycf88","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T15:00:00.000Z","end":"2026-01-12T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-ngz414feh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T15:15:00.000Z","end":"2026-01-12T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-zdewpwvf0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T15:30:00.000Z","end":"2026-01-12T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-w8pakq9p3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T15:45:00.000Z","end":"2026-01-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-q4vsn9jaf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T16:00:00.000Z","end":"2026-01-12T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-myh0offic","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T16:15:00.000Z","end":"2026-01-12T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-e5esx3dnn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T16:30:00.000Z","end":"2026-01-12T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-xtt1qv0eu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T16:45:00.000Z","end":"2026-01-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-xo9ghtuyv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T17:00:00.000Z","end":"2026-01-12T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-eyrs89wyv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T17:15:00.000Z","end":"2026-01-12T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-nf24jud2f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T17:30:00.000Z","end":"2026-01-12T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-omp2dxoyk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T17:45:00.000Z","end":"2026-01-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-u5itiijik","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T18:00:00.000Z","end":"2026-01-12T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-tsqrzri5l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T18:15:00.000Z","end":"2026-01-12T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-nrsb28961","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T18:30:00.000Z","end":"2026-01-12T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-63ttsk492","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T18:45:00.000Z","end":"2026-01-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-mdd9niexm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T19:00:00.000Z","end":"2026-01-12T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-x0ind4h43","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T19:15:00.000Z","end":"2026-01-12T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-93gq3th5v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T19:30:00.000Z","end":"2026-01-12T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-8davjah8t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T19:45:00.000Z","end":"2026-01-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-d0d8ggmrj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T20:00:00.000Z","end":"2026-01-12T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-1e39m2wse","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T20:15:00.000Z","end":"2026-01-12T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-9skff2d6a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T20:30:00.000Z","end":"2026-01-12T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085765-l66c9k01q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-12T20:45:00.000Z","end":"2026-01-12T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.765Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-dg9oz9z3c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T13:00:00.000Z","end":"2026-01-13T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-xfl6jq3od","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T13:15:00.000Z","end":"2026-01-13T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-ga8tvs524","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T13:30:00.000Z","end":"2026-01-13T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-rxw108ums","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T13:45:00.000Z","end":"2026-01-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-mlam8eg3p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T14:00:00.000Z","end":"2026-01-13T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-jz5c6iblc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T14:15:00.000Z","end":"2026-01-13T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-8wdx4rfbx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T14:30:00.000Z","end":"2026-01-13T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-7unuvq3n6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T14:45:00.000Z","end":"2026-01-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-zhm2bbaiu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T15:00:00.000Z","end":"2026-01-13T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-udzz58628","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T15:15:00.000Z","end":"2026-01-13T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-gu0baaarl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T15:30:00.000Z","end":"2026-01-13T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-8v5yn9t7p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T15:45:00.000Z","end":"2026-01-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-e49m6lu2q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T16:00:00.000Z","end":"2026-01-13T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-4nzt238o6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T16:15:00.000Z","end":"2026-01-13T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-ifjta9v62","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T16:30:00.000Z","end":"2026-01-13T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-0f3hzrr3f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T16:45:00.000Z","end":"2026-01-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-1nk4rmi97","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T17:00:00.000Z","end":"2026-01-13T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-j29yntkcx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T17:15:00.000Z","end":"2026-01-13T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-45nv2w84o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T17:30:00.000Z","end":"2026-01-13T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-j0dq7accq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T17:45:00.000Z","end":"2026-01-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-w98o49p6i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T18:00:00.000Z","end":"2026-01-13T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-3paqqmwwd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T18:15:00.000Z","end":"2026-01-13T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-gjw5xxmpd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T18:30:00.000Z","end":"2026-01-13T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-zj7ed6i6c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T18:45:00.000Z","end":"2026-01-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-wm1r0yv2u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T19:00:00.000Z","end":"2026-01-13T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-goi2nn3ur","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T19:15:00.000Z","end":"2026-01-13T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-pjqafac13","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T19:30:00.000Z","end":"2026-01-13T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-z39jlgwmf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T19:45:00.000Z","end":"2026-01-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-6pr2uqwwp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T20:00:00.000Z","end":"2026-01-13T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-44dxgk5zm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-13T20:15:00.000Z","end":"2026-01-13T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-nw84qkft7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T20:30:00.000Z","end":"2026-01-13T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-akviqi9jh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-13T20:45:00.000Z","end":"2026-01-13T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-3gctdbt20","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T13:00:00.000Z","end":"2026-01-14T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-rxopygkyr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T13:15:00.000Z","end":"2026-01-14T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-m315z28bd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T13:30:00.000Z","end":"2026-01-14T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085766-zlmlpzn5x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-14T13:45:00.000Z","end":"2026-01-14T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.766Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-oxdb2o9of","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T14:00:00.000Z","end":"2026-01-14T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-rsuvw1ndn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T14:15:00.000Z","end":"2026-01-14T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-d5sds5vzf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T14:30:00.000Z","end":"2026-01-14T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-sq9t3ae2q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T14:45:00.000Z","end":"2026-01-14T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-ei9v7rnl8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T15:00:00.000Z","end":"2026-01-14T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-vrgw3lbw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T15:15:00.000Z","end":"2026-01-14T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-h5ralblau","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T15:30:00.000Z","end":"2026-01-14T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-gr7cazwfk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T15:45:00.000Z","end":"2026-01-14T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.474Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-q4zkt6npl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T16:00:00.000Z","end":"2026-01-14T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-xvjwi4mrp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T16:15:00.000Z","end":"2026-01-14T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-qbsbzv8lw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T16:30:00.000Z","end":"2026-01-14T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-uhxt04ri8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T16:45:00.000Z","end":"2026-01-14T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-4e1x4mqu7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T17:00:00.000Z","end":"2026-01-14T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-tuso9xje7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T17:15:00.000Z","end":"2026-01-14T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-rl2y104wa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T17:30:00.000Z","end":"2026-01-14T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-y7tiypf26","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T17:45:00.000Z","end":"2026-01-14T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-plxgwtv3w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T18:00:00.000Z","end":"2026-01-14T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-6lzf5fjxk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-14T18:15:00.000Z","end":"2026-01-14T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.767Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-22ejvkxoq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T18:30:00.000Z","end":"2026-01-14T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-qtcr0cv02","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T18:45:00.000Z","end":"2026-01-14T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-fppy3ru60","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T19:00:00.000Z","end":"2026-01-14T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-pgzz2yia9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T19:15:00.000Z","end":"2026-01-14T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-9aoxy662q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T19:30:00.000Z","end":"2026-01-14T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-lvj6fzaks","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T19:45:00.000Z","end":"2026-01-14T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-fy25g93cg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T20:00:00.000Z","end":"2026-01-14T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-x1j80pbv3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T20:15:00.000Z","end":"2026-01-14T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-hm4bds40h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T20:30:00.000Z","end":"2026-01-14T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-ut4pia7dd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-14T20:45:00.000Z","end":"2026-01-14T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-u2luyuj1b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T13:00:00.000Z","end":"2026-01-15T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.767Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-vmrok1x13","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T13:15:00.000Z","end":"2026-01-15T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.767Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085767-zf8hlyian","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T13:30:00.000Z","end":"2026-01-15T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085768-sojfnm761","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T13:45:00.000Z","end":"2026-01-15T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-8317mawfd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T14:00:00.000Z","end":"2026-01-15T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-z8sq8sukl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T14:15:00.000Z","end":"2026-01-15T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-der16876x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T14:30:00.000Z","end":"2026-01-15T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-4b655w6qv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T14:45:00.000Z","end":"2026-01-15T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-kl15jwlk8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T15:00:00.000Z","end":"2026-01-15T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-53pd9aeff","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T15:15:00.000Z","end":"2026-01-15T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-mm9j92mcx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T15:30:00.000Z","end":"2026-01-15T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-ubaa106af","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T15:45:00.000Z","end":"2026-01-15T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-7vf2bxhil","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T16:00:00.000Z","end":"2026-01-15T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-44vg7krek","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T16:15:00.000Z","end":"2026-01-15T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-63e8hxbre","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T16:30:00.000Z","end":"2026-01-15T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-rqrjihfjj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T16:45:00.000Z","end":"2026-01-15T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-bc41aq2pl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T17:00:00.000Z","end":"2026-01-15T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-q1t0933au","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T17:15:00.000Z","end":"2026-01-15T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-91mhb2988","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T17:30:00.000Z","end":"2026-01-15T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-o6v3fl6ox","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T17:45:00.000Z","end":"2026-01-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-vsx5rwge7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T18:00:00.000Z","end":"2026-01-15T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-v1gx5h7se","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T18:15:00.000Z","end":"2026-01-15T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-z0ffk4zgi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T18:30:00.000Z","end":"2026-01-15T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-u9mgivky8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T18:45:00.000Z","end":"2026-01-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-p6jcmtvj9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T19:00:00.000Z","end":"2026-01-15T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-3qczp4nm0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T19:15:00.000Z","end":"2026-01-15T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-40nfkxzhj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T19:30:00.000Z","end":"2026-01-15T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-vs0q1010p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T19:45:00.000Z","end":"2026-01-15T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-d0t575m6u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T20:00:00.000Z","end":"2026-01-15T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-n99fo2ewu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T20:15:00.000Z","end":"2026-01-15T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-51ciunwxp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-15T20:30:00.000Z","end":"2026-01-15T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-f9w0kl1y0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-15T20:45:00.000Z","end":"2026-01-15T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.769Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-hzsty3bty","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T13:00:00.000Z","end":"2026-01-16T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-alt9z4xdr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T13:15:00.000Z","end":"2026-01-16T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-jypyipqe1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T13:30:00.000Z","end":"2026-01-16T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085769-adniowe4j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T13:45:00.000Z","end":"2026-01-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-o1pgprson","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T14:00:00.000Z","end":"2026-01-16T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-l9zuyx801","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T14:15:00.000Z","end":"2026-01-16T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-o9j5dnuwh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T14:30:00.000Z","end":"2026-01-16T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-9hnoi6s8z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T14:45:00.000Z","end":"2026-01-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-nrioe3lhf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T15:00:00.000Z","end":"2026-01-16T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-2tnxltevu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T15:15:00.000Z","end":"2026-01-16T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-v4895auop","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T15:30:00.000Z","end":"2026-01-16T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-uccpjpdi7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T15:45:00.000Z","end":"2026-01-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-j4q5fl3cx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T16:00:00.000Z","end":"2026-01-16T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-1lbeuj108","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T16:15:00.000Z","end":"2026-01-16T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-t7p5cvnhe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T16:30:00.000Z","end":"2026-01-16T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-6sfkoo2hq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T16:45:00.000Z","end":"2026-01-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-t9xy7rsn5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T17:00:00.000Z","end":"2026-01-16T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-q6dtkvifg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T17:15:00.000Z","end":"2026-01-16T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-9w27hziu5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T17:30:00.000Z","end":"2026-01-16T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-7jrz7zvat","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T17:45:00.000Z","end":"2026-01-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-cmkw3tam6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T18:00:00.000Z","end":"2026-01-16T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-p77ev2m46","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T18:15:00.000Z","end":"2026-01-16T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-3atrhnp82","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T18:30:00.000Z","end":"2026-01-16T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-ppkv5s1q9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T18:45:00.000Z","end":"2026-01-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-voxxecppz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T19:00:00.000Z","end":"2026-01-16T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-6155whxzn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T19:15:00.000Z","end":"2026-01-16T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-bg4t5c9aj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T19:30:00.000Z","end":"2026-01-16T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-xtzi2ng0c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T19:45:00.000Z","end":"2026-01-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-09fxbs6of","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T20:00:00.000Z","end":"2026-01-16T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-xxa8p29dl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-16T20:15:00.000Z","end":"2026-01-16T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-t96v7zuuv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T20:30:00.000Z","end":"2026-01-16T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-v1ui6r7i9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-16T20:45:00.000Z","end":"2026-01-16T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-0rwglb5b0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T13:00:00.000Z","end":"2026-01-19T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-qweh0qhus","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T13:15:00.000Z","end":"2026-01-19T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-l0nbnfolg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T13:30:00.000Z","end":"2026-01-19T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-cp7ezyjdr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T13:45:00.000Z","end":"2026-01-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-ihj1vru8r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T14:00:00.000Z","end":"2026-01-19T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-x51i54qka","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T14:15:00.000Z","end":"2026-01-19T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085770-agmzrqqiw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T14:30:00.000Z","end":"2026-01-19T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.770Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-6zpjfz1cm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T14:45:00.000Z","end":"2026-01-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-vm19f3eb7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T15:00:00.000Z","end":"2026-01-19T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-l09sbf4t0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T15:15:00.000Z","end":"2026-01-19T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-tzp9k18wz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T15:30:00.000Z","end":"2026-01-19T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-es95uda85","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T15:45:00.000Z","end":"2026-01-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-dkufbxk2i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T16:00:00.000Z","end":"2026-01-19T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-blz41cuwu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T16:15:00.000Z","end":"2026-01-19T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-0olce2mpm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T16:30:00.000Z","end":"2026-01-19T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-hfly13hcx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T16:45:00.000Z","end":"2026-01-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-4b11hijvh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T17:00:00.000Z","end":"2026-01-19T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-d5wi5tr6q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T17:15:00.000Z","end":"2026-01-19T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-ns9dsx89r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T17:30:00.000Z","end":"2026-01-19T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-mhn8rkl0p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T17:45:00.000Z","end":"2026-01-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-u3fwvg78c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T18:00:00.000Z","end":"2026-01-19T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-df06n1b5z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T18:15:00.000Z","end":"2026-01-19T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-4th5ibyho","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T18:30:00.000Z","end":"2026-01-19T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-qj4w3m5s7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T18:45:00.000Z","end":"2026-01-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-mvuj37ne9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T19:00:00.000Z","end":"2026-01-19T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-x2thn8vso","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T19:15:00.000Z","end":"2026-01-19T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-bmlgw8gx7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T19:30:00.000Z","end":"2026-01-19T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-u6ma10xpx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T19:45:00.000Z","end":"2026-01-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-5y6r0q2qz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T20:00:00.000Z","end":"2026-01-19T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-n1aih2cyl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T20:15:00.000Z","end":"2026-01-19T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-sz917e8fb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-19T20:30:00.000Z","end":"2026-01-19T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-rz5niutag","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-19T20:45:00.000Z","end":"2026-01-19T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-zek8949zm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T13:00:00.000Z","end":"2026-01-20T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-l091rk74j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T13:15:00.000Z","end":"2026-01-20T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-sr0nucigv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T13:30:00.000Z","end":"2026-01-20T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-fvaxq1tpi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T13:45:00.000Z","end":"2026-01-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-zvdqwhlk0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T14:00:00.000Z","end":"2026-01-20T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.771Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085771-k4nlnew2c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T14:15:00.000Z","end":"2026-01-20T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-sbzuaugz9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T14:30:00.000Z","end":"2026-01-20T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-bof65pj6o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T14:45:00.000Z","end":"2026-01-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-p04wl77s7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T15:00:00.000Z","end":"2026-01-20T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-4ykak9eji","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T15:15:00.000Z","end":"2026-01-20T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-s2tlm3tx8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T15:30:00.000Z","end":"2026-01-20T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-dqew7aq8p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T15:45:00.000Z","end":"2026-01-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-kyhavvroe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T16:00:00.000Z","end":"2026-01-20T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-04ounaa7q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T16:15:00.000Z","end":"2026-01-20T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-f0htgf698","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T16:30:00.000Z","end":"2026-01-20T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-nkp64m80q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T16:45:00.000Z","end":"2026-01-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-oqwaiycil","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T17:00:00.000Z","end":"2026-01-20T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-1qj57h3n1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T17:15:00.000Z","end":"2026-01-20T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-yfbv8c807","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T17:30:00.000Z","end":"2026-01-20T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-32mjho1t5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T17:45:00.000Z","end":"2026-01-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-8fjm9rlel","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T18:00:00.000Z","end":"2026-01-20T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-vqqoxu0fx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T18:15:00.000Z","end":"2026-01-20T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-5e4syto85","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T18:30:00.000Z","end":"2026-01-20T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-dhzhwccwa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T18:45:00.000Z","end":"2026-01-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-h2jui9zk0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T19:00:00.000Z","end":"2026-01-20T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-5fc4bunew","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T19:15:00.000Z","end":"2026-01-20T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-r0mlfxd3d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T19:30:00.000Z","end":"2026-01-20T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-4c8ekc3xz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-20T19:45:00.000Z","end":"2026-01-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-sqw1qqz7u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T20:00:00.000Z","end":"2026-01-20T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-vmkz2v792","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T20:15:00.000Z","end":"2026-01-20T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-515sb3nsf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T20:30:00.000Z","end":"2026-01-20T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-mm4ahz30u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-20T20:45:00.000Z","end":"2026-01-20T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-3gc1v5bwp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T13:00:00.000Z","end":"2026-01-21T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-jrr9u5f24","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T13:15:00.000Z","end":"2026-01-21T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-zeml1o2b1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T13:30:00.000Z","end":"2026-01-21T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-omm7d18ul","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T13:45:00.000Z","end":"2026-01-21T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-1un5a85no","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T14:00:00.000Z","end":"2026-01-21T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-gy8drjxqr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T14:15:00.000Z","end":"2026-01-21T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-pz8if6sgu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T14:30:00.000Z","end":"2026-01-21T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-fcufn7wp1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T14:45:00.000Z","end":"2026-01-21T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.772Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085772-0el7oz7s9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T15:00:00.000Z","end":"2026-01-21T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-pdacjslzu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T15:15:00.000Z","end":"2026-01-21T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-09ogai2qt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T15:30:00.000Z","end":"2026-01-21T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-fld0xh7ry","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T15:45:00.000Z","end":"2026-01-21T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-vs74m7hy6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T16:00:00.000Z","end":"2026-01-21T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-jwa8m4fzm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T16:15:00.000Z","end":"2026-01-21T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-u6b88kq30","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T16:30:00.000Z","end":"2026-01-21T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-k5ryurwv6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T16:45:00.000Z","end":"2026-01-21T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-obzxnusnn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T17:00:00.000Z","end":"2026-01-21T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-ywa948qed","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T17:15:00.000Z","end":"2026-01-21T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-ua9rzds3n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T17:30:00.000Z","end":"2026-01-21T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-skmtd0lcs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T17:45:00.000Z","end":"2026-01-21T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-iqa24sipu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T18:00:00.000Z","end":"2026-01-21T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-wmqa2dg55","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T18:15:00.000Z","end":"2026-01-21T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-i7fcftyyt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T18:30:00.000Z","end":"2026-01-21T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-i8i2t5fr5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T18:45:00.000Z","end":"2026-01-21T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-8r3o8qkxb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T19:00:00.000Z","end":"2026-01-21T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-zd26blu76","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T19:15:00.000Z","end":"2026-01-21T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-phl7ycj1n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T19:30:00.000Z","end":"2026-01-21T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-41fmulild","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T19:45:00.000Z","end":"2026-01-21T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-agfktj1lu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T20:00:00.000Z","end":"2026-01-21T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-id5z0e7r3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T20:15:00.000Z","end":"2026-01-21T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-4yg6tuvkc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-21T20:30:00.000Z","end":"2026-01-21T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.773Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085773-h9swvmvrh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-21T20:45:00.000Z","end":"2026-01-21T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-6a3ylpl0c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T13:00:00.000Z","end":"2026-01-22T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.774Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-2vjwf1aiq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T13:15:00.000Z","end":"2026-01-22T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-zo000hkpo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T13:30:00.000Z","end":"2026-01-22T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-6mpmabyr7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T13:45:00.000Z","end":"2026-01-22T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-8o4zncrnt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T14:00:00.000Z","end":"2026-01-22T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-jj31mylj9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T14:15:00.000Z","end":"2026-01-22T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.774Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-ge8pxd6za","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T14:30:00.000Z","end":"2026-01-22T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-k6a4ppxd4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T14:45:00.000Z","end":"2026-01-22T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.774Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-ud7klzweq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T15:00:00.000Z","end":"2026-01-22T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085774-tg1ret3ou","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T15:15:00.000Z","end":"2026-01-22T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085775-2dc3k01rq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T15:30:00.000Z","end":"2026-01-22T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085775-1j2g1x0z3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T15:45:00.000Z","end":"2026-01-22T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085775-et0979jj7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T16:00:00.000Z","end":"2026-01-22T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.775Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085775-729tjhs08","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T16:15:00.000Z","end":"2026-01-22T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.775Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085775-8lobjhtum","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T16:30:00.000Z","end":"2026-01-22T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085775-5d02jqw63","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T16:45:00.000Z","end":"2026-01-22T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-8vw9fgk84","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T17:00:00.000Z","end":"2026-01-22T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-rkrxjhsvf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T17:15:00.000Z","end":"2026-01-22T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-bcnmofkt0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T17:30:00.000Z","end":"2026-01-22T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-iyarjt453","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T17:45:00.000Z","end":"2026-01-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-dr0c424k0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T18:00:00.000Z","end":"2026-01-22T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-huw9uz19e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T18:15:00.000Z","end":"2026-01-22T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-kqq00jhiw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T18:30:00.000Z","end":"2026-01-22T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-vpygfvvxa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T18:45:00.000Z","end":"2026-01-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-dw80swtrq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T19:00:00.000Z","end":"2026-01-22T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-bhus3wh4m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T19:15:00.000Z","end":"2026-01-22T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-arjedk10w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T19:30:00.000Z","end":"2026-01-22T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-x51chm62v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T19:45:00.000Z","end":"2026-01-22T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-l4z56g80n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T20:00:00.000Z","end":"2026-01-22T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-ret7y8djf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T20:15:00.000Z","end":"2026-01-22T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-q0u78g5gd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-22T20:30:00.000Z","end":"2026-01-22T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.474Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-x2w12jcqe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-22T20:45:00.000Z","end":"2026-01-22T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-ad8pedzqp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T13:00:00.000Z","end":"2026-01-23T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-gobuhexkb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T13:15:00.000Z","end":"2026-01-23T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-90zkxzi0s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T13:30:00.000Z","end":"2026-01-23T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-lx66w21na","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T13:45:00.000Z","end":"2026-01-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-30gxprrll","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T14:00:00.000Z","end":"2026-01-23T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.776Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-9rr24hm0d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T14:15:00.000Z","end":"2026-01-23T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085776-sqscp7zhc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T14:30:00.000Z","end":"2026-01-23T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-sukwz5q9t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T14:45:00.000Z","end":"2026-01-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-wm2gckapi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T15:00:00.000Z","end":"2026-01-23T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-tuz6q273l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T15:15:00.000Z","end":"2026-01-23T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-qm7r5ufgt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T15:30:00.000Z","end":"2026-01-23T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-4jjo48keg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T15:45:00.000Z","end":"2026-01-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-dhl1jm8u7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T16:00:00.000Z","end":"2026-01-23T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-pwka3yvuk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T16:15:00.000Z","end":"2026-01-23T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.603Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-vbufg4nij","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T16:30:00.000Z","end":"2026-01-23T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-jvfsresyr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T16:45:00.000Z","end":"2026-01-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-oqomj9uh0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T17:00:00.000Z","end":"2026-01-23T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-2qz8io10j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T17:15:00.000Z","end":"2026-01-23T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-bmdqch8j9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T17:30:00.000Z","end":"2026-01-23T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-7cz2etv6n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T17:45:00.000Z","end":"2026-01-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-1wojh7bym","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T18:00:00.000Z","end":"2026-01-23T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-2pvuii7a8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T18:15:00.000Z","end":"2026-01-23T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-fdyktvwnb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T18:30:00.000Z","end":"2026-01-23T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-8nfj2x0d1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T18:45:00.000Z","end":"2026-01-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-scb3qesvl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T19:00:00.000Z","end":"2026-01-23T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-m5o29967l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T19:15:00.000Z","end":"2026-01-23T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-cx851ojua","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T19:30:00.000Z","end":"2026-01-23T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-ao22wcwx6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T19:45:00.000Z","end":"2026-01-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-om9v8otaq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T20:00:00.000Z","end":"2026-01-23T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-vmoamx2cq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-23T20:15:00.000Z","end":"2026-01-23T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-aoziy6afp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T20:30:00.000Z","end":"2026-01-23T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-ll67uuvkt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-23T20:45:00.000Z","end":"2026-01-23T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-riw188zhn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T13:00:00.000Z","end":"2026-01-26T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-gvzxydyx7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T13:15:00.000Z","end":"2026-01-26T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-1mwuuo0h3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T13:30:00.000Z","end":"2026-01-26T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-yww9y86xp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T13:45:00.000Z","end":"2026-01-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-5r2bfy4d8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-26T14:00:00.000Z","end":"2026-01-26T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-v77r1nyb8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T14:15:00.000Z","end":"2026-01-26T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085777-ozw41uvcx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T14:30:00.000Z","end":"2026-01-26T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.777Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-yuoh4fapq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T14:45:00.000Z","end":"2026-01-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-gsukkaryr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T15:00:00.000Z","end":"2026-01-26T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-4cqun63kp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T15:15:00.000Z","end":"2026-01-26T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-y81yulx2z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T15:30:00.000Z","end":"2026-01-26T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-cdcnq8e67","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-26T15:45:00.000Z","end":"2026-01-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-7ep1y6mxl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-26T16:00:00.000Z","end":"2026-01-26T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-ieile8fax","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T16:15:00.000Z","end":"2026-01-26T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-o1dhkc7yd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-26T16:30:00.000Z","end":"2026-01-26T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-5gg964tkh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T16:45:00.000Z","end":"2026-01-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-kjk422its","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T17:00:00.000Z","end":"2026-01-26T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-kjdnegtm1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T17:15:00.000Z","end":"2026-01-26T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-mpy2531f1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T17:30:00.000Z","end":"2026-01-26T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-rum7qug49","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T17:45:00.000Z","end":"2026-01-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-yjlzc2dj1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T18:00:00.000Z","end":"2026-01-26T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-ijwk162ah","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T18:15:00.000Z","end":"2026-01-26T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-m38eed4qg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T18:30:00.000Z","end":"2026-01-26T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-fnphh5r7v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-26T18:45:00.000Z","end":"2026-01-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-cq0a7q1fc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T19:00:00.000Z","end":"2026-01-26T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-ujjsmlhc7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T19:15:00.000Z","end":"2026-01-26T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-bw2jhp0fn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T19:30:00.000Z","end":"2026-01-26T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-9o35d7bgn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T19:45:00.000Z","end":"2026-01-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-9jw251bcg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T20:00:00.000Z","end":"2026-01-26T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-hxu4s2hu6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T20:15:00.000Z","end":"2026-01-26T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-bcnfmpaet","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-26T20:30:00.000Z","end":"2026-01-26T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-nl3wo7wqt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-26T20:45:00.000Z","end":"2026-01-26T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-p2zw6v2nf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T13:00:00.000Z","end":"2026-01-27T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-f386qzw82","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T13:15:00.000Z","end":"2026-01-27T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-foqffi192","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T13:30:00.000Z","end":"2026-01-27T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-5bznnwcsh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T13:45:00.000Z","end":"2026-01-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-f0ntbq9jn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T14:00:00.000Z","end":"2026-01-27T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-ofg7al8o9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T14:15:00.000Z","end":"2026-01-27T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-il61zt85b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T14:30:00.000Z","end":"2026-01-27T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-pawe0b6pt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T14:45:00.000Z","end":"2026-01-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-a795xby4l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T15:00:00.000Z","end":"2026-01-27T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-6rre2jyxt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T15:15:00.000Z","end":"2026-01-27T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-l0rvl1cwu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T15:30:00.000Z","end":"2026-01-27T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-8ahctolu3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T15:45:00.000Z","end":"2026-01-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085778-p0ccoiatx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T16:00:00.000Z","end":"2026-01-27T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.778Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-x6lbg0n2w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T16:15:00.000Z","end":"2026-01-27T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-p962qnkno","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T16:30:00.000Z","end":"2026-01-27T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-tzfuk4b8u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T16:45:00.000Z","end":"2026-01-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-nloocz8ey","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T17:00:00.000Z","end":"2026-01-27T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-qtv5zqr02","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T17:15:00.000Z","end":"2026-01-27T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-yss0t370j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T17:30:00.000Z","end":"2026-01-27T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-nn4ri0qez","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T17:45:00.000Z","end":"2026-01-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-5mxibmp1i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T18:00:00.000Z","end":"2026-01-27T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-sf9hzpe31","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T18:15:00.000Z","end":"2026-01-27T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-kzt8hh188","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T18:30:00.000Z","end":"2026-01-27T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-nbxyd4eho","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-27T18:45:00.000Z","end":"2026-01-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-i8a4udbs0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T19:00:00.000Z","end":"2026-01-27T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-gmi2pmmr6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T19:15:00.000Z","end":"2026-01-27T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-rkv854yfx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T19:30:00.000Z","end":"2026-01-27T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-rj4xnu6y0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T19:45:00.000Z","end":"2026-01-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-kpwbtdzym","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T20:00:00.000Z","end":"2026-01-27T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-39qyru4qr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T20:15:00.000Z","end":"2026-01-27T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-zzif6laja","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T20:30:00.000Z","end":"2026-01-27T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-l9eiwtj8k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-27T20:45:00.000Z","end":"2026-01-27T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-rkd93vl0o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T13:00:00.000Z","end":"2026-01-28T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-lwxd5j5qt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T13:15:00.000Z","end":"2026-01-28T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-k37t3yjtp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T13:30:00.000Z","end":"2026-01-28T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-wrt8k844f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T13:45:00.000Z","end":"2026-01-28T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-r1usfxvno","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T14:00:00.000Z","end":"2026-01-28T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-1jkk22oev","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T14:15:00.000Z","end":"2026-01-28T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-bg57d58dk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T14:30:00.000Z","end":"2026-01-28T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-q0apzo1dp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T14:45:00.000Z","end":"2026-01-28T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-eo898939y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T15:00:00.000Z","end":"2026-01-28T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-5zx10acic","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T15:15:00.000Z","end":"2026-01-28T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-vdwkjc25a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T15:30:00.000Z","end":"2026-01-28T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-zdhuiknnx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T15:45:00.000Z","end":"2026-01-28T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.779Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-63buettry","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T16:00:00.000Z","end":"2026-01-28T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-j8c4odxet","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T16:15:00.000Z","end":"2026-01-28T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-0etg6p7gg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T16:30:00.000Z","end":"2026-01-28T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-883lyevvk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T16:45:00.000Z","end":"2026-01-28T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085779-vzwqy7jll","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T17:00:00.000Z","end":"2026-01-28T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-0jwu2r3p4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T17:15:00.000Z","end":"2026-01-28T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-go47ixi5n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T17:30:00.000Z","end":"2026-01-28T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-jpsjpwa11","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T17:45:00.000Z","end":"2026-01-28T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-xtqmeuh0z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T18:00:00.000Z","end":"2026-01-28T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-qb5dtxhhy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T18:15:00.000Z","end":"2026-01-28T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-2drdtvzhn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T18:30:00.000Z","end":"2026-01-28T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-nvekf1j54","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T18:45:00.000Z","end":"2026-01-28T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-6atvoim72","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T19:00:00.000Z","end":"2026-01-28T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-vzkvz6x8n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T19:15:00.000Z","end":"2026-01-28T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-l5ro6329c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T19:30:00.000Z","end":"2026-01-28T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-4abro1phz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T19:45:00.000Z","end":"2026-01-28T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-d21rneyj1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T20:00:00.000Z","end":"2026-01-28T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-yvvp0jel2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T20:15:00.000Z","end":"2026-01-28T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-h7ht0lq8w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-28T20:30:00.000Z","end":"2026-01-28T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-gx1w9jbn5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-28T20:45:00.000Z","end":"2026-01-28T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-em1ntdvrr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T13:00:00.000Z","end":"2026-01-29T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-5u9jsjskk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T13:15:00.000Z","end":"2026-01-29T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-tx86c188a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T13:30:00.000Z","end":"2026-01-29T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-anlto58zl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T13:45:00.000Z","end":"2026-01-29T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-addfjd3iu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T14:00:00.000Z","end":"2026-01-29T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-n8e43wslj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T14:15:00.000Z","end":"2026-01-29T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-jprfcrmih","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T14:30:00.000Z","end":"2026-01-29T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-n0x9kizan","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T14:45:00.000Z","end":"2026-01-29T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-cg4i4oq12","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T15:00:00.000Z","end":"2026-01-29T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-fyuhz8l52","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T15:15:00.000Z","end":"2026-01-29T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-7gpf73tuh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T15:30:00.000Z","end":"2026-01-29T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-m6d2ykayr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T15:45:00.000Z","end":"2026-01-29T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-stxv2egq4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T16:00:00.000Z","end":"2026-01-29T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-l79yghosi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T16:15:00.000Z","end":"2026-01-29T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-0sbb9etdp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T16:30:00.000Z","end":"2026-01-29T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-67lusvyk5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T16:45:00.000Z","end":"2026-01-29T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085780-uv8jil63c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T17:00:00.000Z","end":"2026-01-29T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.780Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085781-21nv2ie70","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T17:15:00.000Z","end":"2026-01-29T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.781Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085781-air0crza2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T17:30:00.000Z","end":"2026-01-29T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.781Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085781-6tkc1gde7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T17:45:00.000Z","end":"2026-01-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.781Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085781-mx4428m1p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T18:00:00.000Z","end":"2026-01-29T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.781Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085781-g8gzwybmc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T18:15:00.000Z","end":"2026-01-29T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.781Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085781-l9frims2o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T18:30:00.000Z","end":"2026-01-29T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.781Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-qqscsywk0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T18:45:00.000Z","end":"2026-01-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-x7q76lirx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T19:00:00.000Z","end":"2026-01-29T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-hvk04zt6n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T19:15:00.000Z","end":"2026-01-29T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-6qr1s88d4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T19:30:00.000Z","end":"2026-01-29T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-cfjx7hte9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T19:45:00.000Z","end":"2026-01-29T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-w973vbfyq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-29T20:00:00.000Z","end":"2026-01-29T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-8yvhggn5w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T20:15:00.000Z","end":"2026-01-29T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-wn19f6c5m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T20:30:00.000Z","end":"2026-01-29T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-86x6vqdnf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-29T20:45:00.000Z","end":"2026-01-29T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-b4tw10ap5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T13:00:00.000Z","end":"2026-01-30T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-x5qwuwtmn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T13:15:00.000Z","end":"2026-01-30T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-pq3iimf1k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T13:30:00.000Z","end":"2026-01-30T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-muilhtyw4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T13:45:00.000Z","end":"2026-01-30T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-1lxiaxzoc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T14:00:00.000Z","end":"2026-01-30T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-288q0tijp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T14:15:00.000Z","end":"2026-01-30T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-3phyd2k05","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T14:30:00.000Z","end":"2026-01-30T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-wpqij163y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T14:45:00.000Z","end":"2026-01-30T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-wm0fpbiqf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T15:00:00.000Z","end":"2026-01-30T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-e36ughtfb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T15:15:00.000Z","end":"2026-01-30T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-i3nljnoqi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T15:30:00.000Z","end":"2026-01-30T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-n84pnbcdh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T15:45:00.000Z","end":"2026-01-30T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-4id2c1vwb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T16:00:00.000Z","end":"2026-01-30T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-pzkhsoe9z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T16:15:00.000Z","end":"2026-01-30T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-rqxx1zko1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T16:30:00.000Z","end":"2026-01-30T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.782Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-bkjzxf6i4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T16:45:00.000Z","end":"2026-01-30T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085782-lo0grzbpv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T17:00:00.000Z","end":"2026-01-30T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-ba6mneblo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T17:15:00.000Z","end":"2026-01-30T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-lrl9nrh3x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T17:30:00.000Z","end":"2026-01-30T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-8fjhhe7s2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T17:45:00.000Z","end":"2026-01-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-z4sv2dnyo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T18:00:00.000Z","end":"2026-01-30T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-ow7zq16k0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T18:15:00.000Z","end":"2026-01-30T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-6i3h9kvp4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T18:30:00.000Z","end":"2026-01-30T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-c0tnmn08k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T18:45:00.000Z","end":"2026-01-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-4c8y9t5v6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T19:00:00.000Z","end":"2026-01-30T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-lswxhtql8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T19:15:00.000Z","end":"2026-01-30T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-zymnox2pd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T19:30:00.000Z","end":"2026-01-30T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-m04h2c4qv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T19:45:00.000Z","end":"2026-01-30T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-c8r9b3w11","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T20:00:00.000Z","end":"2026-01-30T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-aa4ah4qum","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-01-30T20:15:00.000Z","end":"2026-01-30T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-kp6mpo00w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T20:30:00.000Z","end":"2026-01-30T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-quwtfvf5d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-01-30T20:45:00.000Z","end":"2026-01-30T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-q34n9mnjz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T13:00:00.000Z","end":"2026-02-02T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-lb6k4ibm8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T13:15:00.000Z","end":"2026-02-02T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-bbkq2anrj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T13:30:00.000Z","end":"2026-02-02T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-v95b2vb1z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T13:45:00.000Z","end":"2026-02-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-7bi0ifhna","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T14:00:00.000Z","end":"2026-02-02T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-jns5glqk5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T14:15:00.000Z","end":"2026-02-02T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-up4zahpe6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T14:30:00.000Z","end":"2026-02-02T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-mn8tgd6i3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T14:45:00.000Z","end":"2026-02-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-gdboueizn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T15:00:00.000Z","end":"2026-02-02T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-d0x3c8w8k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T15:15:00.000Z","end":"2026-02-02T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-1sfr0o4py","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T15:30:00.000Z","end":"2026-02-02T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-ffkhjewpl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T15:45:00.000Z","end":"2026-02-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-8hcp0k4yu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T16:00:00.000Z","end":"2026-02-02T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-ey40f3i4y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T16:15:00.000Z","end":"2026-02-02T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-hoxk20l5i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T16:30:00.000Z","end":"2026-02-02T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-en7q5745y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T16:45:00.000Z","end":"2026-02-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-9u1usfje7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T17:00:00.000Z","end":"2026-02-02T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-qy4dd9h5d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T17:15:00.000Z","end":"2026-02-02T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-ke2ub2zq9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T17:30:00.000Z","end":"2026-02-02T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085783-3abhe8lc1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T17:45:00.000Z","end":"2026-02-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.783Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-qk366q5sj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T18:00:00.000Z","end":"2026-02-02T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-9kwtjyjww","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T18:15:00.000Z","end":"2026-02-02T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-fdk92p7op","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T18:30:00.000Z","end":"2026-02-02T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-w2a1lpejm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T18:45:00.000Z","end":"2026-02-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-y4foqi8ey","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T19:00:00.000Z","end":"2026-02-02T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-diophulmr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T19:15:00.000Z","end":"2026-02-02T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-e5m9ikv23","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T19:30:00.000Z","end":"2026-02-02T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-btn58jkwj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T19:45:00.000Z","end":"2026-02-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-e62a8ncbw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T20:00:00.000Z","end":"2026-02-02T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-dr38y89dt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T20:15:00.000Z","end":"2026-02-02T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-val9c9rti","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-02T20:30:00.000Z","end":"2026-02-02T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-dlkhsitdc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-02T20:45:00.000Z","end":"2026-02-02T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-4yianj1g8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T13:00:00.000Z","end":"2026-02-03T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-8rho25rqk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T13:15:00.000Z","end":"2026-02-03T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-v9jp736bd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T13:30:00.000Z","end":"2026-02-03T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-0lzvxjo6l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T13:45:00.000Z","end":"2026-02-03T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-6eukfk0dp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T14:00:00.000Z","end":"2026-02-03T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-018fmxk3r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T14:15:00.000Z","end":"2026-02-03T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-s2dzp2zrv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T14:30:00.000Z","end":"2026-02-03T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-5ag6k8l1m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T14:45:00.000Z","end":"2026-02-03T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-fgnel0mj4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T15:00:00.000Z","end":"2026-02-03T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-b07fju4j2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T15:15:00.000Z","end":"2026-02-03T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-1ffp0n8rv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T15:30:00.000Z","end":"2026-02-03T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-gnlnoz8ct","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T15:45:00.000Z","end":"2026-02-03T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-gazwucuiv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T16:00:00.000Z","end":"2026-02-03T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-buks04ybb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T16:15:00.000Z","end":"2026-02-03T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-dlgw4k4la","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T16:30:00.000Z","end":"2026-02-03T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-gfd1glkcs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T16:45:00.000Z","end":"2026-02-03T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-ts6uen55r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T17:00:00.000Z","end":"2026-02-03T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-2x97e8v8s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T17:15:00.000Z","end":"2026-02-03T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-1b4tuwmi5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T17:30:00.000Z","end":"2026-02-03T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-hdlbixa3h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T17:45:00.000Z","end":"2026-02-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-d5f4ncw19","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T18:00:00.000Z","end":"2026-02-03T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-xco9m95ud","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T18:15:00.000Z","end":"2026-02-03T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-q39zz5152","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T18:30:00.000Z","end":"2026-02-03T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085784-z8h13kk71","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T18:45:00.000Z","end":"2026-02-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.784Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-eiqq4vzc4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T19:00:00.000Z","end":"2026-02-03T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-3m9z4smj7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T19:15:00.000Z","end":"2026-02-03T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-dd9wx4v21","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T19:30:00.000Z","end":"2026-02-03T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-cp9blzwjo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T19:45:00.000Z","end":"2026-02-03T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-wsdo6gel9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-03T20:00:00.000Z","end":"2026-02-03T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-xpe5hwhhb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T20:15:00.000Z","end":"2026-02-03T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-p9r0s6zz2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T20:30:00.000Z","end":"2026-02-03T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-41ra3x76m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-03T20:45:00.000Z","end":"2026-02-03T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-rs9p7ep6x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T13:00:00.000Z","end":"2026-02-04T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-3onvvcczx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T13:15:00.000Z","end":"2026-02-04T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-jwh1jxmqn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T13:30:00.000Z","end":"2026-02-04T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-qh2cygo9r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T13:45:00.000Z","end":"2026-02-04T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-sf4lj4z4k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T14:00:00.000Z","end":"2026-02-04T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-tqdjq8782","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T14:15:00.000Z","end":"2026-02-04T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-pst8endcj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T14:30:00.000Z","end":"2026-02-04T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-3njqzird3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T14:45:00.000Z","end":"2026-02-04T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-bn5uwdb9x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T15:00:00.000Z","end":"2026-02-04T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-s0dbvfbe7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T15:15:00.000Z","end":"2026-02-04T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-ewvvkwkxv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T15:30:00.000Z","end":"2026-02-04T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-jdmrkszxc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T15:45:00.000Z","end":"2026-02-04T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-a13ey8r59","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T16:00:00.000Z","end":"2026-02-04T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-cqejz7u71","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T16:15:00.000Z","end":"2026-02-04T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-rwif3ewso","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T16:30:00.000Z","end":"2026-02-04T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-p8sf8nohg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T16:45:00.000Z","end":"2026-02-04T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-69kg6t06o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T17:00:00.000Z","end":"2026-02-04T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-l1qj7pf8f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T17:15:00.000Z","end":"2026-02-04T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-eudvw16ru","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T17:30:00.000Z","end":"2026-02-04T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-jrnkj810b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T17:45:00.000Z","end":"2026-02-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-xdtaqcpmn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T18:00:00.000Z","end":"2026-02-04T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-b21ngznzn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T18:15:00.000Z","end":"2026-02-04T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-v75vghkhe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T18:30:00.000Z","end":"2026-02-04T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-vzlo7t37f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T18:45:00.000Z","end":"2026-02-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085785-p87hnwwce","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T19:00:00.000Z","end":"2026-02-04T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.785Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-l1p7b0tm9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T19:15:00.000Z","end":"2026-02-04T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-fob24de9e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T19:30:00.000Z","end":"2026-02-04T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-q8d8nqorv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T19:45:00.000Z","end":"2026-02-04T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-7gej3x8al","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-04T20:00:00.000Z","end":"2026-02-04T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-w5sc95ifq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T20:15:00.000Z","end":"2026-02-04T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-vg8emn01x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T20:30:00.000Z","end":"2026-02-04T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-f5eh3c6vm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-04T20:45:00.000Z","end":"2026-02-04T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-phe2ks2a9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T13:00:00.000Z","end":"2026-02-05T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-4gcx5h2da","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T13:15:00.000Z","end":"2026-02-05T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-rqa73to7m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T13:30:00.000Z","end":"2026-02-05T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-rpcsac10o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T13:45:00.000Z","end":"2026-02-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-yhvwai8ve","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T14:00:00.000Z","end":"2026-02-05T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-mau0ntgpe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T14:15:00.000Z","end":"2026-02-05T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-9uw0zkh7o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T14:30:00.000Z","end":"2026-02-05T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-rw3vyglyr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T14:45:00.000Z","end":"2026-02-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-ktsi7hfgg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T15:00:00.000Z","end":"2026-02-05T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-x89id0tek","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T15:15:00.000Z","end":"2026-02-05T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-ddjm49j4w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T15:30:00.000Z","end":"2026-02-05T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-o9b1k8jtq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T15:45:00.000Z","end":"2026-02-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-zjsxxrcdo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T16:00:00.000Z","end":"2026-02-05T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-tigtjfj0c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T16:15:00.000Z","end":"2026-02-05T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-fxd9zc5h8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T16:30:00.000Z","end":"2026-02-05T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-ls7ky5dz4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T16:45:00.000Z","end":"2026-02-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-33u3gzt7z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T17:00:00.000Z","end":"2026-02-05T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-eru5ky37c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T17:15:00.000Z","end":"2026-02-05T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-quzyfttit","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T17:30:00.000Z","end":"2026-02-05T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-lep60hx41","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T17:45:00.000Z","end":"2026-02-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-0a437otnj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T18:00:00.000Z","end":"2026-02-05T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-rt9jg6eag","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T18:15:00.000Z","end":"2026-02-05T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-dr28z5l5k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T18:30:00.000Z","end":"2026-02-05T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-56ra38ho6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T18:45:00.000Z","end":"2026-02-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-cesris84v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T19:00:00.000Z","end":"2026-02-05T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-9sfl07lp3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T19:15:00.000Z","end":"2026-02-05T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-xlbah7mvm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T19:30:00.000Z","end":"2026-02-05T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-lv4qerbh1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T19:45:00.000Z","end":"2026-02-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-m7gkz4rgo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T20:00:00.000Z","end":"2026-02-05T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-bxp88vo87","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T20:15:00.000Z","end":"2026-02-05T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-p4taco23w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-05T20:30:00.000Z","end":"2026-02-05T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.786Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085786-uc7dcfze3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-05T20:45:00.000Z","end":"2026-02-05T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085787-yy2khc9y5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T13:00:00.000Z","end":"2026-02-06T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085787-s4b7wmwjv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T13:15:00.000Z","end":"2026-02-06T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085787-l4x5siqr2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-06T13:30:00.000Z","end":"2026-02-06T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.787Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085787-d3134m1yq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T13:45:00.000Z","end":"2026-02-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085787-dyad51l0x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T14:00:00.000Z","end":"2026-02-06T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085787-a6xlul12z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T14:15:00.000Z","end":"2026-02-06T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-9b9gcfgv4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T14:30:00.000Z","end":"2026-02-06T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-5uynlj7ky","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T14:45:00.000Z","end":"2026-02-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-rjz5qcmyj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T15:00:00.000Z","end":"2026-02-06T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-zalw3hmiw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T15:15:00.000Z","end":"2026-02-06T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-g6oj6h5u9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T15:30:00.000Z","end":"2026-02-06T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-pn6ea94pf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T15:45:00.000Z","end":"2026-02-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-6lq59wy6z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-06T16:00:00.000Z","end":"2026-02-06T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.788Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-4ytrxytsy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T16:15:00.000Z","end":"2026-02-06T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-aw1p47sal","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T16:30:00.000Z","end":"2026-02-06T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-qg0vrk1gc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T16:45:00.000Z","end":"2026-02-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-gb29ff73n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T17:00:00.000Z","end":"2026-02-06T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-1bs97bwgu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T17:15:00.000Z","end":"2026-02-06T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-m831a8qyp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T17:30:00.000Z","end":"2026-02-06T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-lfhiik5gp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T17:45:00.000Z","end":"2026-02-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-1vuzswkq3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T18:00:00.000Z","end":"2026-02-06T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-fcrssolfq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-06T18:15:00.000Z","end":"2026-02-06T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.788Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-ycnt6foee","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-06T18:30:00.000Z","end":"2026-02-06T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.788Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-bze14tz9u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T18:45:00.000Z","end":"2026-02-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-03g6d9k52","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T19:00:00.000Z","end":"2026-02-06T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-5jp36xdha","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T19:15:00.000Z","end":"2026-02-06T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-wyjx6gmuf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T19:30:00.000Z","end":"2026-02-06T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-8aecrrypc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-06T19:45:00.000Z","end":"2026-02-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.788Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-4zpxhptch","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-06T20:00:00.000Z","end":"2026-02-06T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.788Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-pul3sttzi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T20:15:00.000Z","end":"2026-02-06T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-odb414yc3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T20:30:00.000Z","end":"2026-02-06T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.450Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085788-25vvnxf5o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-06T20:45:00.000Z","end":"2026-02-06T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-n58szddaf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T13:00:00.000Z","end":"2026-02-09T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-k717jy4or","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T13:15:00.000Z","end":"2026-02-09T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-u84j55890","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T13:30:00.000Z","end":"2026-02-09T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-uafg0sk6l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T13:45:00.000Z","end":"2026-02-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-abvvup8qi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T14:00:00.000Z","end":"2026-02-09T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-s39pvecrc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T14:15:00.000Z","end":"2026-02-09T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-jhwlljlla","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T14:30:00.000Z","end":"2026-02-09T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-t6bg6j18w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T14:45:00.000Z","end":"2026-02-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-npkzhpd3z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T15:00:00.000Z","end":"2026-02-09T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-ihyj12nvk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T15:15:00.000Z","end":"2026-02-09T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-rh2oxuhk8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T15:30:00.000Z","end":"2026-02-09T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-x0w9kquod","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T15:45:00.000Z","end":"2026-02-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-72xb94cui","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T16:00:00.000Z","end":"2026-02-09T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-fesbw0kj2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T16:15:00.000Z","end":"2026-02-09T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-ktz882nsh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T16:30:00.000Z","end":"2026-02-09T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-1n9qtrgwy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T16:45:00.000Z","end":"2026-02-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-178g45j59","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T17:00:00.000Z","end":"2026-02-09T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-guyxim282","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T17:15:00.000Z","end":"2026-02-09T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-188ykn8i1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T17:30:00.000Z","end":"2026-02-09T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-32oho1end","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T17:45:00.000Z","end":"2026-02-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-njgbai05r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T18:00:00.000Z","end":"2026-02-09T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-r7c57rj0y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T18:15:00.000Z","end":"2026-02-09T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-av1sfx3dk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T18:30:00.000Z","end":"2026-02-09T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-4nclk0051","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T18:45:00.000Z","end":"2026-02-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-gtdrbqf5v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T19:00:00.000Z","end":"2026-02-09T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-29ko3e9uu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T19:15:00.000Z","end":"2026-02-09T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-siv54sqek","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T19:30:00.000Z","end":"2026-02-09T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085789-camublf87","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T19:45:00.000Z","end":"2026-02-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.789Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-ij0jthf7a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-09T20:00:00.000Z","end":"2026-02-09T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-swvgirxw1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T20:15:00.000Z","end":"2026-02-09T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-uxc8433ls","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T20:30:00.000Z","end":"2026-02-09T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-pofle950j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-09T20:45:00.000Z","end":"2026-02-09T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-5xoo7eh0h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T13:00:00.000Z","end":"2026-02-10T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-970ru4glh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T13:15:00.000Z","end":"2026-02-10T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-8hst9joj4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T13:30:00.000Z","end":"2026-02-10T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-aj8d6f9hj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T13:45:00.000Z","end":"2026-02-10T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-109tb53x4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T14:00:00.000Z","end":"2026-02-10T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-2cq1wz8pq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T14:15:00.000Z","end":"2026-02-10T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-2pdexp22v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T14:30:00.000Z","end":"2026-02-10T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-f1ms7aie2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T14:45:00.000Z","end":"2026-02-10T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-ykbmkku3i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T15:00:00.000Z","end":"2026-02-10T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-qsqjt6erq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T15:15:00.000Z","end":"2026-02-10T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-l38rs5epx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T15:30:00.000Z","end":"2026-02-10T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-yecwx352m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T15:45:00.000Z","end":"2026-02-10T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-y4ewq1cjs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T16:00:00.000Z","end":"2026-02-10T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-zcm4exgl3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T16:15:00.000Z","end":"2026-02-10T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-xfv2ar59n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T16:30:00.000Z","end":"2026-02-10T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-i45v7ap5s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T16:45:00.000Z","end":"2026-02-10T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-unu4upj3j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T17:00:00.000Z","end":"2026-02-10T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-vm5n7z0pj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T17:15:00.000Z","end":"2026-02-10T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-rv4d36kl6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T17:30:00.000Z","end":"2026-02-10T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-vslguc81h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T17:45:00.000Z","end":"2026-02-10T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-3gr8t30re","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T18:00:00.000Z","end":"2026-02-10T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-fvm5urxhd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T18:15:00.000Z","end":"2026-02-10T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-kfr22afc2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T18:30:00.000Z","end":"2026-02-10T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-dtq2u9wje","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T18:45:00.000Z","end":"2026-02-10T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-harp0xhko","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T19:00:00.000Z","end":"2026-02-10T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-n331611cm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T19:15:00.000Z","end":"2026-02-10T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-jaufqqsgl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T19:30:00.000Z","end":"2026-02-10T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-ydfgr75ny","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T19:45:00.000Z","end":"2026-02-10T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-k24x5oqnc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T20:00:00.000Z","end":"2026-02-10T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-5baxpi3ez","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T20:15:00.000Z","end":"2026-02-10T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085790-pmkgrmmyc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-10T20:30:00.000Z","end":"2026-02-10T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.790Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-cfv5m75gw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-10T20:45:00.000Z","end":"2026-02-10T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-pwm2p0d0k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T13:00:00.000Z","end":"2026-02-11T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-xnwladl9r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T13:15:00.000Z","end":"2026-02-11T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-z2etu7q7y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T13:30:00.000Z","end":"2026-02-11T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-pz5gh2art","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T13:45:00.000Z","end":"2026-02-11T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-aqz19ddg3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T14:00:00.000Z","end":"2026-02-11T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-hphxyfvaf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T14:15:00.000Z","end":"2026-02-11T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-yilhhqty3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T14:30:00.000Z","end":"2026-02-11T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-ubkl207qe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T14:45:00.000Z","end":"2026-02-11T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-euvgarcgf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T15:00:00.000Z","end":"2026-02-11T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-orou7wl9m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T15:15:00.000Z","end":"2026-02-11T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-s7v2xgz1l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T15:30:00.000Z","end":"2026-02-11T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-mi6f8a0b9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T15:45:00.000Z","end":"2026-02-11T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-94dxuek9b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T16:00:00.000Z","end":"2026-02-11T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-uozznl710","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T16:15:00.000Z","end":"2026-02-11T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-ouv9orjct","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T16:30:00.000Z","end":"2026-02-11T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-fotzu4ddi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T16:45:00.000Z","end":"2026-02-11T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-cx62njkkt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T17:00:00.000Z","end":"2026-02-11T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-h61l9v3hl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T17:15:00.000Z","end":"2026-02-11T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-0kzspu1r2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T17:30:00.000Z","end":"2026-02-11T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-dcx602izg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T17:45:00.000Z","end":"2026-02-11T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-9vm089odb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T18:00:00.000Z","end":"2026-02-11T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-47svhwrqo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T18:15:00.000Z","end":"2026-02-11T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-munuwjuzn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T18:30:00.000Z","end":"2026-02-11T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-f3jd2jb7j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T18:45:00.000Z","end":"2026-02-11T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-ob9ka2j9s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T19:00:00.000Z","end":"2026-02-11T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-f2rvq1vze","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T19:15:00.000Z","end":"2026-02-11T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-b2ou303ae","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T19:30:00.000Z","end":"2026-02-11T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-smk5s9hfl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T19:45:00.000Z","end":"2026-02-11T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-632kyjc35","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T20:00:00.000Z","end":"2026-02-11T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-7cvg03poe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-11T20:15:00.000Z","end":"2026-02-11T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-xdlgc3zce","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T20:30:00.000Z","end":"2026-02-11T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-174yticun","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-11T20:45:00.000Z","end":"2026-02-11T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.791Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-nm4232yr9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T13:00:00.000Z","end":"2026-02-12T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085791-bkd27gmi5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T13:15:00.000Z","end":"2026-02-12T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-sn6c5buud","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T13:30:00.000Z","end":"2026-02-12T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-ijzr1mj68","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T13:45:00.000Z","end":"2026-02-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-8wzcojcfm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T14:00:00.000Z","end":"2026-02-12T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-rhmfgk7xm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T14:15:00.000Z","end":"2026-02-12T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-xg7x21238","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T14:30:00.000Z","end":"2026-02-12T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-gwqsopsqy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T14:45:00.000Z","end":"2026-02-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-yo0gqep3u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T15:00:00.000Z","end":"2026-02-12T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-xm1su9qud","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T15:15:00.000Z","end":"2026-02-12T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-4aj3vy7uu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T15:30:00.000Z","end":"2026-02-12T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-simeotl86","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T15:45:00.000Z","end":"2026-02-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-edp4vfrgs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T16:00:00.000Z","end":"2026-02-12T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-sxslwaavi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T16:15:00.000Z","end":"2026-02-12T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-6lswph5cj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T16:30:00.000Z","end":"2026-02-12T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-xmqdrsjya","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T16:45:00.000Z","end":"2026-02-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-3jzz9pfux","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T17:00:00.000Z","end":"2026-02-12T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-vgymbbyqf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T17:15:00.000Z","end":"2026-02-12T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-qrtwybsz5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T17:30:00.000Z","end":"2026-02-12T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-odt2vk0ea","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T17:45:00.000Z","end":"2026-02-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-yvz29ybar","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T18:00:00.000Z","end":"2026-02-12T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-4y29klhlo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T18:15:00.000Z","end":"2026-02-12T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-o8ibnx4oh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T18:30:00.000Z","end":"2026-02-12T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-7wbmcgd58","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T18:45:00.000Z","end":"2026-02-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-hcq2d3bbr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T19:00:00.000Z","end":"2026-02-12T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-1vrbpfgqz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T19:15:00.000Z","end":"2026-02-12T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-6ontuoma4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T19:30:00.000Z","end":"2026-02-12T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-czqllti1l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T19:45:00.000Z","end":"2026-02-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-tcbhdn6if","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T20:00:00.000Z","end":"2026-02-12T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-ab5sho056","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-12T20:15:00.000Z","end":"2026-02-12T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-hkyjsl37m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T20:30:00.000Z","end":"2026-02-12T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-42io02n5t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-12T20:45:00.000Z","end":"2026-02-12T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-j4htklx2m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T13:00:00.000Z","end":"2026-02-13T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-9ohu6i4y6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T13:15:00.000Z","end":"2026-02-13T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-kaygq552p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T13:30:00.000Z","end":"2026-02-13T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085792-9g67cvwm3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T13:45:00.000Z","end":"2026-02-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.792Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-jgn60q8fq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T14:00:00.000Z","end":"2026-02-13T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.793Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-jcgqajki8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T14:15:00.000Z","end":"2026-02-13T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.793Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-5mjz44glf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T14:30:00.000Z","end":"2026-02-13T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-br3v99eae","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T14:45:00.000Z","end":"2026-02-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.793Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-vi4owu1ho","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T15:00:00.000Z","end":"2026-02-13T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-7uxdv6x50","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T15:15:00.000Z","end":"2026-02-13T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-5me4mp055","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T15:30:00.000Z","end":"2026-02-13T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-4pdct9nug","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T15:45:00.000Z","end":"2026-02-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085793-9ss3bknaj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T16:00:00.000Z","end":"2026-02-13T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.793Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-i87ms6lap","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T16:15:00.000Z","end":"2026-02-13T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-cyxi8t5cs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T16:30:00.000Z","end":"2026-02-13T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-vr1bnmu80","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T16:45:00.000Z","end":"2026-02-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-um2gehxlb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T17:00:00.000Z","end":"2026-02-13T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-u89xclhj1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T17:15:00.000Z","end":"2026-02-13T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-6fgjk3kt3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T17:30:00.000Z","end":"2026-02-13T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-gxrk0i4uy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T17:45:00.000Z","end":"2026-02-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-m00vvrnfg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T18:00:00.000Z","end":"2026-02-13T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-7k24u9h81","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T18:15:00.000Z","end":"2026-02-13T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-fcbxifx3a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T18:30:00.000Z","end":"2026-02-13T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-twaxrudq4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T18:45:00.000Z","end":"2026-02-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-tdqpew2vw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T19:00:00.000Z","end":"2026-02-13T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-0p4kq9b30","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T19:15:00.000Z","end":"2026-02-13T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-sziqd3hmk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T19:30:00.000Z","end":"2026-02-13T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-fw49109i1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T19:45:00.000Z","end":"2026-02-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-j175m9r74","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T20:00:00.000Z","end":"2026-02-13T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-whhm21t18","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T20:15:00.000Z","end":"2026-02-13T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-83u1y0eah","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-13T20:30:00.000Z","end":"2026-02-13T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.794Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085794-0rhsczdaf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-13T20:45:00.000Z","end":"2026-02-13T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-5fhvdspxn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T13:00:00.000Z","end":"2026-02-16T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-m443914cw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T13:15:00.000Z","end":"2026-02-16T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-vr639u4dl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T13:30:00.000Z","end":"2026-02-16T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-bll38excl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T13:45:00.000Z","end":"2026-02-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-cegxeh8fo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T14:00:00.000Z","end":"2026-02-16T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-f7ovnlo68","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T14:15:00.000Z","end":"2026-02-16T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-fanarktea","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T14:30:00.000Z","end":"2026-02-16T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-ncrnaz4k4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T14:45:00.000Z","end":"2026-02-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-rhsp0s8wo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T15:00:00.000Z","end":"2026-02-16T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-ugpw1x67f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T15:15:00.000Z","end":"2026-02-16T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-40puce4ep","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T15:30:00.000Z","end":"2026-02-16T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-6u7127y3w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T15:45:00.000Z","end":"2026-02-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-ztqx0x8rg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T16:00:00.000Z","end":"2026-02-16T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-2sfjz70f3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T16:15:00.000Z","end":"2026-02-16T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-u8a10iqnd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T16:30:00.000Z","end":"2026-02-16T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-5qmwfjlv4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T16:45:00.000Z","end":"2026-02-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-cu7xdb0p0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T17:00:00.000Z","end":"2026-02-16T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-bak2i5z3l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T17:15:00.000Z","end":"2026-02-16T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-0i4bhr6pc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T17:30:00.000Z","end":"2026-02-16T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-jl6dy3eb3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T17:45:00.000Z","end":"2026-02-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-x1hrsk6y1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T18:00:00.000Z","end":"2026-02-16T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-7w0t17m2t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T18:15:00.000Z","end":"2026-02-16T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-3vg6leptt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T18:30:00.000Z","end":"2026-02-16T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-rjyb530ws","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T18:45:00.000Z","end":"2026-02-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-hx36oaelm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T19:00:00.000Z","end":"2026-02-16T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-gw94usonp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T19:15:00.000Z","end":"2026-02-16T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-rt1zmfp4k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T19:30:00.000Z","end":"2026-02-16T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-55se3bhzh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T19:45:00.000Z","end":"2026-02-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-d48bf53wa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-16T20:00:00.000Z","end":"2026-02-16T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-81snnj785","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T20:15:00.000Z","end":"2026-02-16T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-ax2vepjhb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T20:30:00.000Z","end":"2026-02-16T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-ynplilyya","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-16T20:45:00.000Z","end":"2026-02-16T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-nux24b55g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T13:00:00.000Z","end":"2026-02-17T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-1lxqydo9v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T13:15:00.000Z","end":"2026-02-17T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-4lophneng","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T13:30:00.000Z","end":"2026-02-17T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-rk54togh1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T13:45:00.000Z","end":"2026-02-17T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-e2cbu9qcd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T14:00:00.000Z","end":"2026-02-17T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085795-461ggpdrf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T14:15:00.000Z","end":"2026-02-17T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.795Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-akwrtrtm6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T14:30:00.000Z","end":"2026-02-17T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-tgbfehdrh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T14:45:00.000Z","end":"2026-02-17T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-8p12amh54","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T15:00:00.000Z","end":"2026-02-17T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-o30nsus3q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T15:15:00.000Z","end":"2026-02-17T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-z60zh0x10","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T15:30:00.000Z","end":"2026-02-17T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-p2alvy2wl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T15:45:00.000Z","end":"2026-02-17T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-njrm6x6nj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T16:00:00.000Z","end":"2026-02-17T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-n3l0orql8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T16:15:00.000Z","end":"2026-02-17T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-wro1xqw8q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T16:30:00.000Z","end":"2026-02-17T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-c971xga4y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T16:45:00.000Z","end":"2026-02-17T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-l9q8x4pt7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T17:00:00.000Z","end":"2026-02-17T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-nl7qswoec","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T17:15:00.000Z","end":"2026-02-17T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-aid6yq275","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T17:30:00.000Z","end":"2026-02-17T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-r7225exyx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T17:45:00.000Z","end":"2026-02-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-ntb46goxl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T18:00:00.000Z","end":"2026-02-17T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-9fhv325lr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T18:15:00.000Z","end":"2026-02-17T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-2bnegwm69","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T18:30:00.000Z","end":"2026-02-17T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-amuz21kpo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T18:45:00.000Z","end":"2026-02-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-lvqu0qend","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T19:00:00.000Z","end":"2026-02-17T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-kuzm71wk8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T19:15:00.000Z","end":"2026-02-17T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-0b4ra6xym","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T19:30:00.000Z","end":"2026-02-17T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-fkn0aob6t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T19:45:00.000Z","end":"2026-02-17T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-hjrxap5hw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T20:00:00.000Z","end":"2026-02-17T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-299l919a9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T20:15:00.000Z","end":"2026-02-17T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-tbzfkit66","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-17T20:30:00.000Z","end":"2026-02-17T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-bc1ik4rc0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-17T20:45:00.000Z","end":"2026-02-17T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-zwm7cqzl0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T13:00:00.000Z","end":"2026-02-18T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-zltebz147","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T13:15:00.000Z","end":"2026-02-18T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-lzjur8zwv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T13:30:00.000Z","end":"2026-02-18T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-dgf3qlmvx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T13:45:00.000Z","end":"2026-02-18T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-5vz18ab3f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-18T14:00:00.000Z","end":"2026-02-18T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.796Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-5gmdgxigp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T14:15:00.000Z","end":"2026-02-18T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-36g4if8ry","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T14:30:00.000Z","end":"2026-02-18T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085796-gqckxcunq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T14:45:00.000Z","end":"2026-02-18T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-wupib18lo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T15:00:00.000Z","end":"2026-02-18T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-wqbja060l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-18T15:15:00.000Z","end":"2026-02-18T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-7hthn5csg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T15:30:00.000Z","end":"2026-02-18T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-k900v0kx4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T15:45:00.000Z","end":"2026-02-18T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-v88ifaf3v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T16:00:00.000Z","end":"2026-02-18T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-rb5p0pl1w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T16:15:00.000Z","end":"2026-02-18T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-rsw378vry","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T16:30:00.000Z","end":"2026-02-18T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-elqgygx3e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-18T16:45:00.000Z","end":"2026-02-18T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-mqqxe1obg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T17:00:00.000Z","end":"2026-02-18T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-xxjxf7q0y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T17:15:00.000Z","end":"2026-02-18T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-g0nb4logs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T17:30:00.000Z","end":"2026-02-18T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-7ri3at480","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T17:45:00.000Z","end":"2026-02-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-dftm8jbv6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T18:00:00.000Z","end":"2026-02-18T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-7bdo9fqvo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T18:15:00.000Z","end":"2026-02-18T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-j3jds1ntw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T18:30:00.000Z","end":"2026-02-18T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-4hs1et2sj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-18T18:45:00.000Z","end":"2026-02-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-6klfzbn0m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T19:00:00.000Z","end":"2026-02-18T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-hak92r5ew","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-18T19:15:00.000Z","end":"2026-02-18T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-dyhk564kq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-18T19:30:00.000Z","end":"2026-02-18T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-dsnio2s4m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T19:45:00.000Z","end":"2026-02-18T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-a1n7oj0uc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-18T20:00:00.000Z","end":"2026-02-18T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-m6d7xus69","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T20:15:00.000Z","end":"2026-02-18T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-iqmqlpe0x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-18T20:30:00.000Z","end":"2026-02-18T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-ncwipyzfs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-18T20:45:00.000Z","end":"2026-02-18T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-x1ucl0qmu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T13:00:00.000Z","end":"2026-02-19T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-13ab31fo5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T13:15:00.000Z","end":"2026-02-19T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-3204l8xdl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T13:30:00.000Z","end":"2026-02-19T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-jlk293lof","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T13:45:00.000Z","end":"2026-02-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-g7zclwxbn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T14:00:00.000Z","end":"2026-02-19T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.797Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-7l8by8lyg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T14:15:00.000Z","end":"2026-02-19T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085797-4g3da6u81","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T14:30:00.000Z","end":"2026-02-19T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-fxfev84zb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T14:45:00.000Z","end":"2026-02-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-3pqqsbvw6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T15:00:00.000Z","end":"2026-02-19T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-arsf9v5ue","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T15:15:00.000Z","end":"2026-02-19T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-guc4bptlc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T15:30:00.000Z","end":"2026-02-19T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-xzsrmc0az","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T15:45:00.000Z","end":"2026-02-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-wlcgzn9b3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T16:00:00.000Z","end":"2026-02-19T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-xrprtr2oo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T16:15:00.000Z","end":"2026-02-19T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-xnxz4kayv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T16:30:00.000Z","end":"2026-02-19T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-hgny7regi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T16:45:00.000Z","end":"2026-02-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-uyxcs58wt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T17:00:00.000Z","end":"2026-02-19T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-g3y0vxakq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T17:15:00.000Z","end":"2026-02-19T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-glivsd2iy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T17:30:00.000Z","end":"2026-02-19T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-gc00s9mqh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T17:45:00.000Z","end":"2026-02-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-bqafc3qk3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T18:00:00.000Z","end":"2026-02-19T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-554971g51","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T18:15:00.000Z","end":"2026-02-19T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-svg8xw0rn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T18:30:00.000Z","end":"2026-02-19T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-5x9bvoi4d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T18:45:00.000Z","end":"2026-02-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-gn6mradkk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T19:00:00.000Z","end":"2026-02-19T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-cre3wta7q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T19:15:00.000Z","end":"2026-02-19T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-9jrpduaww","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T19:30:00.000Z","end":"2026-02-19T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-4d2vm2pdh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T19:45:00.000Z","end":"2026-02-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-29e0tv19j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T20:00:00.000Z","end":"2026-02-19T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-6v2fd4i63","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-19T20:15:00.000Z","end":"2026-02-19T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-cix2njj3k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T20:30:00.000Z","end":"2026-02-19T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-c5gbvz1io","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-19T20:45:00.000Z","end":"2026-02-19T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-g5khle523","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T13:00:00.000Z","end":"2026-02-20T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-om7bp4bf2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T13:15:00.000Z","end":"2026-02-20T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-j8y3d7e3y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T13:30:00.000Z","end":"2026-02-20T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-1t2kjtfsp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T13:45:00.000Z","end":"2026-02-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-1599m74aj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T14:00:00.000Z","end":"2026-02-20T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-wwabhnup6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T14:15:00.000Z","end":"2026-02-20T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-up9luh35h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T14:30:00.000Z","end":"2026-02-20T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-lhctkjj3t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T14:45:00.000Z","end":"2026-02-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-t1nx6qa9z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T15:00:00.000Z","end":"2026-02-20T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-h5fcy3s66","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T15:15:00.000Z","end":"2026-02-20T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-rs0ougozx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T15:30:00.000Z","end":"2026-02-20T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.798Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-4z4s61kn4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T15:45:00.000Z","end":"2026-02-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085798-apf7x0846","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T16:00:00.000Z","end":"2026-02-20T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-yw8de08jt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T16:15:00.000Z","end":"2026-02-20T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-gwvg60xkv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T16:30:00.000Z","end":"2026-02-20T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-1diy3nmii","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T16:45:00.000Z","end":"2026-02-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-jhfzptal5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T17:00:00.000Z","end":"2026-02-20T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-9amv3hc0o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T17:15:00.000Z","end":"2026-02-20T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-8kvg2x1km","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T17:30:00.000Z","end":"2026-02-20T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-70kq24495","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T17:45:00.000Z","end":"2026-02-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-hzdekluu6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T18:00:00.000Z","end":"2026-02-20T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-cv2iwdtns","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T18:15:00.000Z","end":"2026-02-20T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-8asiz7kmk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T18:30:00.000Z","end":"2026-02-20T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-tt62f5ud2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-20T18:45:00.000Z","end":"2026-02-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085799-ylui44fxm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T19:00:00.000Z","end":"2026-02-20T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.799Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-tmovlt633","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T19:15:00.000Z","end":"2026-02-20T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-ny3po7af9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T19:30:00.000Z","end":"2026-02-20T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-dzf5hi1vo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T19:45:00.000Z","end":"2026-02-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-vilmpkpw1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T20:00:00.000Z","end":"2026-02-20T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-mu4m5jj3f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T20:15:00.000Z","end":"2026-02-20T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-iwctukve4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T20:30:00.000Z","end":"2026-02-20T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-8ckp6ltd1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-20T20:45:00.000Z","end":"2026-02-20T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-3twyiw2kz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T13:00:00.000Z","end":"2026-02-23T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-bbaw94g8s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T13:15:00.000Z","end":"2026-02-23T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-201pkgazt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T13:30:00.000Z","end":"2026-02-23T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-2gmd033k8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T13:45:00.000Z","end":"2026-02-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-y4sxyntvi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T14:00:00.000Z","end":"2026-02-23T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-gy2pop9de","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T14:15:00.000Z","end":"2026-02-23T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-r65f1ri9f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T14:30:00.000Z","end":"2026-02-23T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-g2w85aaky","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T14:45:00.000Z","end":"2026-02-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-ag8equw9m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T15:00:00.000Z","end":"2026-02-23T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-u53ux20gq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T15:15:00.000Z","end":"2026-02-23T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-kvn33o8tx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T15:30:00.000Z","end":"2026-02-23T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085800-y11o0x0ip","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T15:45:00.000Z","end":"2026-02-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.800Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-368qojpbn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T16:00:00.000Z","end":"2026-02-23T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-lk9x0393i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T16:15:00.000Z","end":"2026-02-23T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-n1e26ex6a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T16:30:00.000Z","end":"2026-02-23T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-et8zj505y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T16:45:00.000Z","end":"2026-02-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-roc5dw86e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T17:00:00.000Z","end":"2026-02-23T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-8mgmiv2nl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T17:15:00.000Z","end":"2026-02-23T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-jo01smby0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T17:30:00.000Z","end":"2026-02-23T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-z9ypeh5us","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T17:45:00.000Z","end":"2026-02-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-fa8pizk36","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T18:00:00.000Z","end":"2026-02-23T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-tui9hmmna","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T18:15:00.000Z","end":"2026-02-23T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-rh1xmhjb9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T18:30:00.000Z","end":"2026-02-23T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-zxmzj31p2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T18:45:00.000Z","end":"2026-02-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-jmw4871gd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T19:00:00.000Z","end":"2026-02-23T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-wur9e58qt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T19:15:00.000Z","end":"2026-02-23T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-3gzs03qrz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T19:30:00.000Z","end":"2026-02-23T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-kvpl2qno8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T19:45:00.000Z","end":"2026-02-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-sie3yltx6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T20:00:00.000Z","end":"2026-02-23T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-520rdcae3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T20:15:00.000Z","end":"2026-02-23T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-77ymedv2j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-23T20:30:00.000Z","end":"2026-02-23T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-rxgx3ae9o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-23T20:45:00.000Z","end":"2026-02-23T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-x1jietkff","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T13:00:00.000Z","end":"2026-02-24T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-5nk2jrqpu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T13:15:00.000Z","end":"2026-02-24T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-vk4n506z4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T13:30:00.000Z","end":"2026-02-24T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-g1qs1syr7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T13:45:00.000Z","end":"2026-02-24T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-u1ljuy0kw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T14:00:00.000Z","end":"2026-02-24T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-wlhqdllem","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T14:15:00.000Z","end":"2026-02-24T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-89gd05qm4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T14:30:00.000Z","end":"2026-02-24T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-d4ctygbis","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T14:45:00.000Z","end":"2026-02-24T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-3s7nlqmtb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T15:00:00.000Z","end":"2026-02-24T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-1quvqndeo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T15:15:00.000Z","end":"2026-02-24T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-pllkuq2v6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T15:30:00.000Z","end":"2026-02-24T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-cg1yb6w0f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T15:45:00.000Z","end":"2026-02-24T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-u8pf1cl25","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T16:00:00.000Z","end":"2026-02-24T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.801Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085801-2gee52civ","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T16:15:00.000Z","end":"2026-02-24T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-eq2c5b72q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T16:30:00.000Z","end":"2026-02-24T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-578vz64pc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T16:45:00.000Z","end":"2026-02-24T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-k9ykkqgh5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T17:00:00.000Z","end":"2026-02-24T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-tezfts2ma","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T17:15:00.000Z","end":"2026-02-24T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-q4jutpms8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T17:30:00.000Z","end":"2026-02-24T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-k7dhszhy4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T17:45:00.000Z","end":"2026-02-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-5oqgov197","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T18:00:00.000Z","end":"2026-02-24T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-t27vkivoh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T18:15:00.000Z","end":"2026-02-24T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-kqilanvmm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T18:30:00.000Z","end":"2026-02-24T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-s25bhcyk1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T18:45:00.000Z","end":"2026-02-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-1v2rpv1mn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T19:00:00.000Z","end":"2026-02-24T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-85l1j41g3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T19:15:00.000Z","end":"2026-02-24T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-u7lwd4h8x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T19:30:00.000Z","end":"2026-02-24T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-jdd68n0mn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T19:45:00.000Z","end":"2026-02-24T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-jqorsqgq8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T20:00:00.000Z","end":"2026-02-24T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-u5iaa72df","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T20:15:00.000Z","end":"2026-02-24T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-wj03mw5nv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-24T20:30:00.000Z","end":"2026-02-24T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-ka8oc8gzn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-24T20:45:00.000Z","end":"2026-02-24T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-ir8wtfmwz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T13:00:00.000Z","end":"2026-02-25T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-8o0risxjx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T13:15:00.000Z","end":"2026-02-25T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-0z2pf2yid","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T13:30:00.000Z","end":"2026-02-25T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-qa969ofk0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T13:45:00.000Z","end":"2026-02-25T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-q4a2u6ksg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T14:00:00.000Z","end":"2026-02-25T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-q5l336lnu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T14:15:00.000Z","end":"2026-02-25T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-1nt8frpgd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T14:30:00.000Z","end":"2026-02-25T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-3tnucupzp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T14:45:00.000Z","end":"2026-02-25T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-h7a73v1g9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T15:00:00.000Z","end":"2026-02-25T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-5y9augs66","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T15:15:00.000Z","end":"2026-02-25T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-ygvfjqsln","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T15:30:00.000Z","end":"2026-02-25T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-zxedmgfcj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T15:45:00.000Z","end":"2026-02-25T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-uy0tyswva","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T16:00:00.000Z","end":"2026-02-25T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-bjqwzygpe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T16:15:00.000Z","end":"2026-02-25T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-ie6m554vb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T16:30:00.000Z","end":"2026-02-25T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085802-c015tgbbx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T16:45:00.000Z","end":"2026-02-25T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.802Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-ho53lkpaz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T17:00:00.000Z","end":"2026-02-25T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-csds8s1yu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T17:15:00.000Z","end":"2026-02-25T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-ct38ooey4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T17:30:00.000Z","end":"2026-02-25T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-remd4hjhe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T17:45:00.000Z","end":"2026-02-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-x7wpzhz00","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T18:00:00.000Z","end":"2026-02-25T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-rf8pv60k0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T18:15:00.000Z","end":"2026-02-25T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-loyca8gns","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T18:30:00.000Z","end":"2026-02-25T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-lf0j5xvn9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T18:45:00.000Z","end":"2026-02-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-h7jp3qgd1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T19:00:00.000Z","end":"2026-02-25T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-vjgoc9k0q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T19:15:00.000Z","end":"2026-02-25T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-8n9uq7xu8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T19:30:00.000Z","end":"2026-02-25T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-x6m88ytxc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T19:45:00.000Z","end":"2026-02-25T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-rgnkd0k1p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T20:00:00.000Z","end":"2026-02-25T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-cx33yaeva","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T20:15:00.000Z","end":"2026-02-25T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-d71s97eda","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-25T20:30:00.000Z","end":"2026-02-25T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-f109agkpm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-25T20:45:00.000Z","end":"2026-02-25T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-segrd6j2n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T13:00:00.000Z","end":"2026-02-26T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-dcp0udt8v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T13:15:00.000Z","end":"2026-02-26T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-bacepyr93","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T13:30:00.000Z","end":"2026-02-26T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-z5cds5yjj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T13:45:00.000Z","end":"2026-02-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-z492ge830","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T14:00:00.000Z","end":"2026-02-26T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-g40vxeygw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T14:15:00.000Z","end":"2026-02-26T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-27qbukjq5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T14:30:00.000Z","end":"2026-02-26T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-tf38u4966","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T14:45:00.000Z","end":"2026-02-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-5k2qg8uvo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T15:00:00.000Z","end":"2026-02-26T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-uoszk5pk7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T15:15:00.000Z","end":"2026-02-26T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-cpcfg1ner","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T15:30:00.000Z","end":"2026-02-26T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-rhafiws69","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T15:45:00.000Z","end":"2026-02-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-y8aprmr4s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T16:00:00.000Z","end":"2026-02-26T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-jjojxrt8v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T16:15:00.000Z","end":"2026-02-26T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-6v24sgwqy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T16:30:00.000Z","end":"2026-02-26T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-oplck61ba","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T16:45:00.000Z","end":"2026-02-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-8jh265zij","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T17:00:00.000Z","end":"2026-02-26T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-gctsvxnjj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T17:15:00.000Z","end":"2026-02-26T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-q6t5pzfb5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T17:30:00.000Z","end":"2026-02-26T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-1a7bw55rj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T17:45:00.000Z","end":"2026-02-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085803-po8xlqwpb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T18:00:00.000Z","end":"2026-02-26T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.803Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-m1ylzeq8c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T18:15:00.000Z","end":"2026-02-26T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-061b22dtc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T18:30:00.000Z","end":"2026-02-26T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-s54z776ph","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T18:45:00.000Z","end":"2026-02-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-u9e5f4qo6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T19:00:00.000Z","end":"2026-02-26T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-xynxe1h60","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T19:15:00.000Z","end":"2026-02-26T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-vvq37qjt0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T19:30:00.000Z","end":"2026-02-26T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-img0bqvqb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T19:45:00.000Z","end":"2026-02-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-p8lhw0bco","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T20:00:00.000Z","end":"2026-02-26T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-5f0vvx7aq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-26T20:15:00.000Z","end":"2026-02-26T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-po9infxqr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T20:30:00.000Z","end":"2026-02-26T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-3hscdgfgr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-26T20:45:00.000Z","end":"2026-02-26T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-ymcfvyog6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T13:00:00.000Z","end":"2026-02-27T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-41uwleorx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T13:15:00.000Z","end":"2026-02-27T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-m5k5pjc5e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T13:30:00.000Z","end":"2026-02-27T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-mngg02369","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T13:45:00.000Z","end":"2026-02-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-jjqfm0wed","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T14:00:00.000Z","end":"2026-02-27T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-hfkde7r0g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T14:15:00.000Z","end":"2026-02-27T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-nh0m1w894","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T14:30:00.000Z","end":"2026-02-27T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-m6sio1jx8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T14:45:00.000Z","end":"2026-02-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-xc60a9tp7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T15:00:00.000Z","end":"2026-02-27T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-5l5viigm5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T15:15:00.000Z","end":"2026-02-27T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-sel3y27cl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T15:30:00.000Z","end":"2026-02-27T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-cccm2bkgl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T15:45:00.000Z","end":"2026-02-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-jraqqmo9j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T16:00:00.000Z","end":"2026-02-27T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-wj5icrkgn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T16:15:00.000Z","end":"2026-02-27T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-4tc3mm0fu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T16:30:00.000Z","end":"2026-02-27T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-18j41wcc3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T16:45:00.000Z","end":"2026-02-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.441Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-3e0p75zu4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T17:00:00.000Z","end":"2026-02-27T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-gwct4scd1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T17:15:00.000Z","end":"2026-02-27T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-nt21xwvpd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T17:30:00.000Z","end":"2026-02-27T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-31hw0azc9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T17:45:00.000Z","end":"2026-02-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.804Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085804-5gaefw8r8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T18:00:00.000Z","end":"2026-02-27T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-9v550hypk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T18:15:00.000Z","end":"2026-02-27T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.805Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-2jlkkzjp6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T18:30:00.000Z","end":"2026-02-27T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-rq2ymzl0l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T18:45:00.000Z","end":"2026-02-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.805Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-r53lo77ns","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T19:00:00.000Z","end":"2026-02-27T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-z08jbl5wr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T19:15:00.000Z","end":"2026-02-27T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.805Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-v4398vq37","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T19:30:00.000Z","end":"2026-02-27T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-p1p6k3j7m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T19:45:00.000Z","end":"2026-02-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-3ann4ym23","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T20:00:00.000Z","end":"2026-02-27T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-v2ln31nxi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T20:15:00.000Z","end":"2026-02-27T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.805Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-dewejagko","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-02-27T20:30:00.000Z","end":"2026-02-27T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.805Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085805-za17qlxnq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-02-27T20:45:00.000Z","end":"2026-02-27T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-gj3pfw8we","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T13:00:00.000Z","end":"2026-03-02T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-7sm0pzove","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T13:15:00.000Z","end":"2026-03-02T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-fvaobi81q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T13:30:00.000Z","end":"2026-03-02T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-1bqg8iy24","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T13:45:00.000Z","end":"2026-03-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-3s0rwjuk4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T14:00:00.000Z","end":"2026-03-02T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-64rv5lmnh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T14:15:00.000Z","end":"2026-03-02T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-cj09j55yl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T14:30:00.000Z","end":"2026-03-02T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-jel5536gb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T14:45:00.000Z","end":"2026-03-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-gc3ydvr2v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T15:00:00.000Z","end":"2026-03-02T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-flkzea203","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T15:15:00.000Z","end":"2026-03-02T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-ys14pr9qu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T15:30:00.000Z","end":"2026-03-02T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-5i7zw909f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T15:45:00.000Z","end":"2026-03-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-32f85v22k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T16:00:00.000Z","end":"2026-03-02T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-lcg5zqpqx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T16:15:00.000Z","end":"2026-03-02T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085806-vk8bc61gx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T16:30:00.000Z","end":"2026-03-02T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.806Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-srkv2ymj9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T16:45:00.000Z","end":"2026-03-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-blcecckr3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T17:00:00.000Z","end":"2026-03-02T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-9rmf5cish","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T17:15:00.000Z","end":"2026-03-02T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-b18gbhsvs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T17:30:00.000Z","end":"2026-03-02T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-dixu9a2ng","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T17:45:00.000Z","end":"2026-03-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-0mb38op7v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T18:00:00.000Z","end":"2026-03-02T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-ockcnog1j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T18:15:00.000Z","end":"2026-03-02T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-c573v2nv3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T18:30:00.000Z","end":"2026-03-02T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-6o9qdiv6q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T18:45:00.000Z","end":"2026-03-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-5tlvnhfzs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T19:00:00.000Z","end":"2026-03-02T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-q4ib48vqn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T19:15:00.000Z","end":"2026-03-02T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-cthbx3of6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T19:30:00.000Z","end":"2026-03-02T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-xeo7lc4g4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T19:45:00.000Z","end":"2026-03-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-sotolrvi2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T20:00:00.000Z","end":"2026-03-02T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-iwbe6374i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T20:15:00.000Z","end":"2026-03-02T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-2vsqzzcqf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-02T20:30:00.000Z","end":"2026-03-02T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-pmcruzvk0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-02T20:45:00.000Z","end":"2026-03-02T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-w5mrecpt8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T13:00:00.000Z","end":"2026-03-03T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-v8uzy8ug1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T13:15:00.000Z","end":"2026-03-03T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-qwyr9oobr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T13:30:00.000Z","end":"2026-03-03T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-ikug90675","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T13:45:00.000Z","end":"2026-03-03T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-bqo0wmdpr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T14:00:00.000Z","end":"2026-03-03T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-gu51c5ir5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T14:15:00.000Z","end":"2026-03-03T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-ka6y32e90","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T14:30:00.000Z","end":"2026-03-03T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-g3fqhvw3t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T14:45:00.000Z","end":"2026-03-03T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-i8526drmm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T15:00:00.000Z","end":"2026-03-03T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-cjwpp8oiq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T15:15:00.000Z","end":"2026-03-03T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-3f5k62qx7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T15:30:00.000Z","end":"2026-03-03T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-9ru5al9mm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T15:45:00.000Z","end":"2026-03-03T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-yqurxy9gz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T16:00:00.000Z","end":"2026-03-03T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-o0s2w52yh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T16:15:00.000Z","end":"2026-03-03T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-tqh5uvmpf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T16:30:00.000Z","end":"2026-03-03T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-r4d4bom9d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T16:45:00.000Z","end":"2026-03-03T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.807Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-we8eb3pq5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T17:00:00.000Z","end":"2026-03-03T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-r456u5i0p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T17:15:00.000Z","end":"2026-03-03T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-hppimmm2p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T17:30:00.000Z","end":"2026-03-03T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085807-wstrbabjs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T17:45:00.000Z","end":"2026-03-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-6sfmmhrhw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T18:00:00.000Z","end":"2026-03-03T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-ujlcpfwlz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T18:15:00.000Z","end":"2026-03-03T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-xzzjyfzja","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T18:30:00.000Z","end":"2026-03-03T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-338tgh1jz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T18:45:00.000Z","end":"2026-03-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-r9yhzhpbf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T19:00:00.000Z","end":"2026-03-03T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-6p488td8l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T19:15:00.000Z","end":"2026-03-03T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-41dghiwdn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T19:30:00.000Z","end":"2026-03-03T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-k2ga6dn0g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T19:45:00.000Z","end":"2026-03-03T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-acuerp1u7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T20:00:00.000Z","end":"2026-03-03T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-eg7fthqt9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T20:15:00.000Z","end":"2026-03-03T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-n5rxw9sga","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-03T20:30:00.000Z","end":"2026-03-03T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-jst1e309y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-03T20:45:00.000Z","end":"2026-03-03T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-flyoak93c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T13:00:00.000Z","end":"2026-03-04T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-rfclgo0k5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T13:15:00.000Z","end":"2026-03-04T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-pbsf7gto1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T13:30:00.000Z","end":"2026-03-04T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-1y8ydpbht","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T13:45:00.000Z","end":"2026-03-04T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-hnd8361n4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T14:00:00.000Z","end":"2026-03-04T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-tqtarm4mh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T14:15:00.000Z","end":"2026-03-04T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-bx2vslmay","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T14:30:00.000Z","end":"2026-03-04T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-eyhlwrh3u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T14:45:00.000Z","end":"2026-03-04T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-jxolzyahu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T15:00:00.000Z","end":"2026-03-04T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-3ft5ryec1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T15:15:00.000Z","end":"2026-03-04T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-jo41owjt3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T15:30:00.000Z","end":"2026-03-04T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-aojwoinu2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T15:45:00.000Z","end":"2026-03-04T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-5mrss1wt8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T16:00:00.000Z","end":"2026-03-04T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-lvmhac3k2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T16:15:00.000Z","end":"2026-03-04T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-5rgt6jjc8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T16:30:00.000Z","end":"2026-03-04T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-jmbm3grrr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T16:45:00.000Z","end":"2026-03-04T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-fpbybl7id","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T17:00:00.000Z","end":"2026-03-04T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-tckn9iws3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T17:15:00.000Z","end":"2026-03-04T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-umyfwiubj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T17:30:00.000Z","end":"2026-03-04T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-50ixpokn7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T17:45:00.000Z","end":"2026-03-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-0msuq8hrt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T18:00:00.000Z","end":"2026-03-04T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-r6aue20g0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T18:15:00.000Z","end":"2026-03-04T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085808-j5bg98d56","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T18:30:00.000Z","end":"2026-03-04T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.808Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-cj69wn90v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T18:45:00.000Z","end":"2026-03-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-u7ndnjwmc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T19:00:00.000Z","end":"2026-03-04T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-ruubqo62f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T19:15:00.000Z","end":"2026-03-04T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-p50ztx8rd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T19:30:00.000Z","end":"2026-03-04T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-39jdhj2xd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T19:45:00.000Z","end":"2026-03-04T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-2qwsbmvge","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T20:00:00.000Z","end":"2026-03-04T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-2pawukghl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-04T20:15:00.000Z","end":"2026-03-04T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-6vssgbvou","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T20:30:00.000Z","end":"2026-03-04T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-4287708qf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-04T20:45:00.000Z","end":"2026-03-04T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-mrh7yrek9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T13:00:00.000Z","end":"2026-03-05T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-jrz7yh8xo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T13:15:00.000Z","end":"2026-03-05T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-7cut60e44","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T13:30:00.000Z","end":"2026-03-05T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-gn4dwxoen","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T13:45:00.000Z","end":"2026-03-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-oru87sn33","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T14:00:00.000Z","end":"2026-03-05T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-uyxfxz97v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T14:15:00.000Z","end":"2026-03-05T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-lt0ho3x77","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T14:30:00.000Z","end":"2026-03-05T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-7rtipifdj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T14:45:00.000Z","end":"2026-03-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-t6gbye8ld","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T15:00:00.000Z","end":"2026-03-05T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-ihme1z13l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T15:15:00.000Z","end":"2026-03-05T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-528envsj7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T15:30:00.000Z","end":"2026-03-05T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-bkefnkliv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T15:45:00.000Z","end":"2026-03-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-c3x1mhg46","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T16:00:00.000Z","end":"2026-03-05T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-rbbqwsnxa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T16:15:00.000Z","end":"2026-03-05T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-c16hccf22","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T16:30:00.000Z","end":"2026-03-05T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-tcyog5zds","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T16:45:00.000Z","end":"2026-03-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-ub07f2q6m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T17:00:00.000Z","end":"2026-03-05T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-96ay9q2a6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T17:15:00.000Z","end":"2026-03-05T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-cmfo0tq81","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T17:30:00.000Z","end":"2026-03-05T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-9yaa6u47f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T17:45:00.000Z","end":"2026-03-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-tz1atd3d3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T18:00:00.000Z","end":"2026-03-05T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-bqj86hza2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T18:15:00.000Z","end":"2026-03-05T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-qxdk7kb0c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T18:30:00.000Z","end":"2026-03-05T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085809-tejcxxdz9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T18:45:00.000Z","end":"2026-03-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.809Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-n1esc0tae","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T19:00:00.000Z","end":"2026-03-05T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-nwro6gg2n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T19:15:00.000Z","end":"2026-03-05T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-mrz7bdxtj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T19:30:00.000Z","end":"2026-03-05T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-zn5x8awhx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T19:45:00.000Z","end":"2026-03-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-u4oo822ny","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T20:00:00.000Z","end":"2026-03-05T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-uztym8s1f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T20:15:00.000Z","end":"2026-03-05T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-a99uut5xj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-05T20:30:00.000Z","end":"2026-03-05T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.441Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-342qq69z1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-05T20:45:00.000Z","end":"2026-03-05T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-ir11handw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T13:00:00.000Z","end":"2026-03-06T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-3s99ofw47","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T13:15:00.000Z","end":"2026-03-06T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.430Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-8jb0q479u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T13:30:00.000Z","end":"2026-03-06T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-fvqvltbm3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T13:45:00.000Z","end":"2026-03-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-x97vj7wdf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T14:00:00.000Z","end":"2026-03-06T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-jd66hpwyj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T14:15:00.000Z","end":"2026-03-06T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-ocx7za20n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T14:30:00.000Z","end":"2026-03-06T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-n9yjkithy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T14:45:00.000Z","end":"2026-03-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-7aydm53k2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T15:00:00.000Z","end":"2026-03-06T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-l1e3pcibp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T15:15:00.000Z","end":"2026-03-06T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-7llc8bj6a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T15:30:00.000Z","end":"2026-03-06T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-qxaggmqtt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T15:45:00.000Z","end":"2026-03-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-rbooqn8ji","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T16:00:00.000Z","end":"2026-03-06T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-74hikqam4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T16:15:00.000Z","end":"2026-03-06T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-16gp9jb40","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T16:30:00.000Z","end":"2026-03-06T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-dja8ciwac","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T16:45:00.000Z","end":"2026-03-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-vnwojjc1v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T17:00:00.000Z","end":"2026-03-06T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-v6qwf9en9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T17:15:00.000Z","end":"2026-03-06T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-wghediuw2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T17:30:00.000Z","end":"2026-03-06T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-huwjt0i21","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T17:45:00.000Z","end":"2026-03-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-5gcsyudal","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T18:00:00.000Z","end":"2026-03-06T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-n3wn0ob2k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T18:15:00.000Z","end":"2026-03-06T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-5nharlins","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T18:30:00.000Z","end":"2026-03-06T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-2yfa3071c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T18:45:00.000Z","end":"2026-03-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-9h535kfvr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T19:00:00.000Z","end":"2026-03-06T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-m0q4wpmqx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T19:15:00.000Z","end":"2026-03-06T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.810Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085810-dtl9w2uc3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T19:30:00.000Z","end":"2026-03-06T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-hm18w0qwh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T19:45:00.000Z","end":"2026-03-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-jl9p1097u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T20:00:00.000Z","end":"2026-03-06T20:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-08k3wjeoa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-06T20:15:00.000Z","end":"2026-03-06T20:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-uneqqzw2n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T20:30:00.000Z","end":"2026-03-06T20:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-le5esty36","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-06T20:45:00.000Z","end":"2026-03-06T21:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-87n51nqhl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T12:00:00.000Z","end":"2026-03-09T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-6e1lz3cg9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T12:15:00.000Z","end":"2026-03-09T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-85v66qsuv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T12:30:00.000Z","end":"2026-03-09T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-52b94qqhx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T12:45:00.000Z","end":"2026-03-09T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-7vt19zzm7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T13:00:00.000Z","end":"2026-03-09T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-nz0g15rom","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T13:15:00.000Z","end":"2026-03-09T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-8ohhb12w8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T13:30:00.000Z","end":"2026-03-09T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-66a6gpdsq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T13:45:00.000Z","end":"2026-03-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-8rgg56676","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T14:00:00.000Z","end":"2026-03-09T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-grk3prbv0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T14:15:00.000Z","end":"2026-03-09T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-vit6ptr4z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T14:30:00.000Z","end":"2026-03-09T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-nt63lifbc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T14:45:00.000Z","end":"2026-03-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085811-8bbx8ae8e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T15:00:00.000Z","end":"2026-03-09T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.811Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-t7spijzko","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T15:15:00.000Z","end":"2026-03-09T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-feevpz67s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T15:30:00.000Z","end":"2026-03-09T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-w1xtlib34","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T15:45:00.000Z","end":"2026-03-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-ib49v1bc4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T16:00:00.000Z","end":"2026-03-09T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-b70gqc6q9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T16:15:00.000Z","end":"2026-03-09T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-zrvrrwbzw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T16:30:00.000Z","end":"2026-03-09T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-j7pvy7jbm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T16:45:00.000Z","end":"2026-03-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-zbgq8vyy1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T17:00:00.000Z","end":"2026-03-09T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-5ev3i6nny","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T17:15:00.000Z","end":"2026-03-09T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-ddb68vvw4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T17:30:00.000Z","end":"2026-03-09T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-qsgoc7ym4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T17:45:00.000Z","end":"2026-03-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-4au2q5nvo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T18:00:00.000Z","end":"2026-03-09T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-l6h4rwsah","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T18:15:00.000Z","end":"2026-03-09T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085812-71xhq0hvf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T18:30:00.000Z","end":"2026-03-09T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.812Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-0yn1k7etu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T18:45:00.000Z","end":"2026-03-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-gt1zogaug","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T19:00:00.000Z","end":"2026-03-09T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-sngh2eg5p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-09T19:15:00.000Z","end":"2026-03-09T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-s6usevnef","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T19:30:00.000Z","end":"2026-03-09T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-3omuanh6j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-09T19:45:00.000Z","end":"2026-03-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-4cpo154s7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T12:00:00.000Z","end":"2026-03-10T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-3a0zc7hsd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T12:15:00.000Z","end":"2026-03-10T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-nugqkfsxx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T12:30:00.000Z","end":"2026-03-10T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-lchfjp9tr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T12:45:00.000Z","end":"2026-03-10T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-62vfqzz3w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T13:00:00.000Z","end":"2026-03-10T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-t424gurm6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T13:15:00.000Z","end":"2026-03-10T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-p7q3bcr6c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T13:30:00.000Z","end":"2026-03-10T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-rxwpwthw6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T13:45:00.000Z","end":"2026-03-10T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-tepp2wr2x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T14:00:00.000Z","end":"2026-03-10T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-knmsakk3q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T14:15:00.000Z","end":"2026-03-10T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-bx42v55z4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T14:30:00.000Z","end":"2026-03-10T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-kocqwrfay","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T14:45:00.000Z","end":"2026-03-10T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-lkzutx47o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T15:00:00.000Z","end":"2026-03-10T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-s21pz5i8v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T15:15:00.000Z","end":"2026-03-10T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-9y29ly969","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T15:30:00.000Z","end":"2026-03-10T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-b9yiyqxfg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T15:45:00.000Z","end":"2026-03-10T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-kfrezmoma","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T16:00:00.000Z","end":"2026-03-10T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-nok3w2we4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T16:15:00.000Z","end":"2026-03-10T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-qb1jtklfa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T16:30:00.000Z","end":"2026-03-10T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-avhebd9bi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T16:45:00.000Z","end":"2026-03-10T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-0y8qfvyjj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T17:00:00.000Z","end":"2026-03-10T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-33lflfg1u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T17:15:00.000Z","end":"2026-03-10T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-3mkageg9f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T17:30:00.000Z","end":"2026-03-10T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-l01nus0ha","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T17:45:00.000Z","end":"2026-03-10T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-n2wlsg7i2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T18:00:00.000Z","end":"2026-03-10T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-8tx4iwo66","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T18:15:00.000Z","end":"2026-03-10T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-g96xdhpot","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T18:30:00.000Z","end":"2026-03-10T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.813Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085813-tgel59r03","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T18:45:00.000Z","end":"2026-03-10T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-l2mmyad1f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T19:00:00.000Z","end":"2026-03-10T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-z0bnlj9nm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-10T19:15:00.000Z","end":"2026-03-10T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-6bu1vrz9u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T19:30:00.000Z","end":"2026-03-10T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-puxjg1uqe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-10T19:45:00.000Z","end":"2026-03-10T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-b970n5ycv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T12:00:00.000Z","end":"2026-03-11T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-psam6erin","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T12:15:00.000Z","end":"2026-03-11T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-bp4obgrxl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T12:30:00.000Z","end":"2026-03-11T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-1plntr5aq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T12:45:00.000Z","end":"2026-03-11T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-1b8eics5s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T13:00:00.000Z","end":"2026-03-11T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-vrrrntgiu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T13:15:00.000Z","end":"2026-03-11T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-e517kto01","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T13:30:00.000Z","end":"2026-03-11T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-n2sxfo6rv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T13:45:00.000Z","end":"2026-03-11T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-oqgupjomp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T14:00:00.000Z","end":"2026-03-11T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-zvt1ntysp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T14:15:00.000Z","end":"2026-03-11T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-wfpy8ea4q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T14:30:00.000Z","end":"2026-03-11T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-u2tfy133p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T14:45:00.000Z","end":"2026-03-11T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-sjer6tb1l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T15:00:00.000Z","end":"2026-03-11T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-2mr3wwc5g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T15:15:00.000Z","end":"2026-03-11T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-1so8i0x11","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T15:30:00.000Z","end":"2026-03-11T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-j5e580l28","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T15:45:00.000Z","end":"2026-03-11T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-7zdn7td1n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T16:00:00.000Z","end":"2026-03-11T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-3gs14go1r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T16:15:00.000Z","end":"2026-03-11T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-71vib6y5e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T16:30:00.000Z","end":"2026-03-11T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-j17nbw2z1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T16:45:00.000Z","end":"2026-03-11T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-wjor5ii3n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T17:00:00.000Z","end":"2026-03-11T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-d60qjcaqz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T17:15:00.000Z","end":"2026-03-11T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-od7j25oy6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T17:30:00.000Z","end":"2026-03-11T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-9ncra19ki","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T17:45:00.000Z","end":"2026-03-11T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-jfyr8jey1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T18:00:00.000Z","end":"2026-03-11T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-djzu94imx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T18:15:00.000Z","end":"2026-03-11T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085814-eo95nzm33","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T18:30:00.000Z","end":"2026-03-11T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.814Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-yjg3s3hkr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T18:45:00.000Z","end":"2026-03-11T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-yqjwuoqq2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T19:00:00.000Z","end":"2026-03-11T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-4egwqwlxs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T19:15:00.000Z","end":"2026-03-11T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-70mfl84pn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-11T19:30:00.000Z","end":"2026-03-11T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-u47lez9ty","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-11T19:45:00.000Z","end":"2026-03-11T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-1zttryhbv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T12:00:00.000Z","end":"2026-03-12T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-3jt9ku06w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T12:15:00.000Z","end":"2026-03-12T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-z9ypxfuxg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T12:30:00.000Z","end":"2026-03-12T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-ola63pc5x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T12:45:00.000Z","end":"2026-03-12T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-hiem43no0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T13:00:00.000Z","end":"2026-03-12T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-u3pbvt9g4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T13:15:00.000Z","end":"2026-03-12T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-c8hu2zasy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T13:30:00.000Z","end":"2026-03-12T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-kpsfctk57","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T13:45:00.000Z","end":"2026-03-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-y89uw52nu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T14:00:00.000Z","end":"2026-03-12T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-edfi5bl8z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T14:15:00.000Z","end":"2026-03-12T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-io62xx22o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T14:30:00.000Z","end":"2026-03-12T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-4z8ky5zzi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T14:45:00.000Z","end":"2026-03-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-rx7s88tbw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T15:00:00.000Z","end":"2026-03-12T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-bcc0ex6wv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T15:15:00.000Z","end":"2026-03-12T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-7e2uv28y6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T15:30:00.000Z","end":"2026-03-12T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-xp71o6gfi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T15:45:00.000Z","end":"2026-03-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-zrfrwwsoz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T16:00:00.000Z","end":"2026-03-12T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-mnx1se3xn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T16:15:00.000Z","end":"2026-03-12T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-pv89dwlb6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T16:30:00.000Z","end":"2026-03-12T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-0i5952u62","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T16:45:00.000Z","end":"2026-03-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-qgrxpfax7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T17:00:00.000Z","end":"2026-03-12T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-q4yq1fdcs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T17:15:00.000Z","end":"2026-03-12T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-d03s41oko","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T17:30:00.000Z","end":"2026-03-12T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085815-x10lfizl6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T17:45:00.000Z","end":"2026-03-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.815Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-0mq45ox5p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T18:00:00.000Z","end":"2026-03-12T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-6vbcvqxgq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T18:15:00.000Z","end":"2026-03-12T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-nvspwwb7b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T18:30:00.000Z","end":"2026-03-12T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-dyhr3qtxj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T18:45:00.000Z","end":"2026-03-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-zd8zs7s6l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-12T19:00:00.000Z","end":"2026-03-12T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.816Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-hmjsiocug","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T19:15:00.000Z","end":"2026-03-12T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-4kvbbozyl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T19:30:00.000Z","end":"2026-03-12T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-s4zt8ngto","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-12T19:45:00.000Z","end":"2026-03-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-z5a6b9vb5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T12:00:00.000Z","end":"2026-03-13T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-ybmows2g0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T12:15:00.000Z","end":"2026-03-13T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-dv0ybtem2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T12:30:00.000Z","end":"2026-03-13T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.816Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-b2mena1dt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T12:45:00.000Z","end":"2026-03-13T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.816Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-8a16nssd7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T13:00:00.000Z","end":"2026-03-13T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.816Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-w9oqs909l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T13:15:00.000Z","end":"2026-03-13T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-ikipv6mgt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T13:30:00.000Z","end":"2026-03-13T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-6rp9aeouj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T13:45:00.000Z","end":"2026-03-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.816Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-6rhwtwfqv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T14:00:00.000Z","end":"2026-03-13T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085816-e9yi5ap9y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T14:15:00.000Z","end":"2026-03-13T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.816Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-o0uoktvby","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T14:30:00.000Z","end":"2026-03-13T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-jmbx48y6j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T14:45:00.000Z","end":"2026-03-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-vrcdep7c9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T15:00:00.000Z","end":"2026-03-13T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-cvplux3ki","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T15:15:00.000Z","end":"2026-03-13T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-u2ocv6qve","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T15:30:00.000Z","end":"2026-03-13T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-yk09hx10w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T15:45:00.000Z","end":"2026-03-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-52xrlx7m7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T16:00:00.000Z","end":"2026-03-13T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-m7hi3afjl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T16:15:00.000Z","end":"2026-03-13T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-oy3az12lk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T16:30:00.000Z","end":"2026-03-13T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-v787n5atr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T16:45:00.000Z","end":"2026-03-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-kcpf0i9fm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T17:00:00.000Z","end":"2026-03-13T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-byxwxtgzc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T17:15:00.000Z","end":"2026-03-13T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-pfjg5r5ag","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T17:30:00.000Z","end":"2026-03-13T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-zcyxrac64","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T17:45:00.000Z","end":"2026-03-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-ig84oe709","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T18:00:00.000Z","end":"2026-03-13T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-4h8wzbp85","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T18:15:00.000Z","end":"2026-03-13T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-aqnkjp3rs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T18:30:00.000Z","end":"2026-03-13T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-tzx9nsunq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-13T18:45:00.000Z","end":"2026-03-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-uln6r6gkh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T19:00:00.000Z","end":"2026-03-13T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-n4q60yn7n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T19:15:00.000Z","end":"2026-03-13T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-zqulrtnrq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T19:30:00.000Z","end":"2026-03-13T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-v4znot865","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-13T19:45:00.000Z","end":"2026-03-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-tyaid2zo8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T12:00:00.000Z","end":"2026-03-16T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-e01t2f8hu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T12:15:00.000Z","end":"2026-03-16T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-5e4ph9yn1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T12:30:00.000Z","end":"2026-03-16T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-lh31m22yz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T12:45:00.000Z","end":"2026-03-16T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-vl2pd9ywt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T13:00:00.000Z","end":"2026-03-16T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-54ibko19i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-16T13:15:00.000Z","end":"2026-03-16T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-31mq0iu3q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T13:30:00.000Z","end":"2026-03-16T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-9ey0c28fm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T13:45:00.000Z","end":"2026-03-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-1nw8f8a53","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T14:00:00.000Z","end":"2026-03-16T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-sxkv7kbjz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T14:15:00.000Z","end":"2026-03-16T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-f1rnuqguw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T14:30:00.000Z","end":"2026-03-16T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-sh5uzseat","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-16T14:45:00.000Z","end":"2026-03-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.817Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-0qtaitwcy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T15:00:00.000Z","end":"2026-03-16T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085817-6tpudeei2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T15:15:00.000Z","end":"2026-03-16T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085818-g0q72lxgz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T15:30:00.000Z","end":"2026-03-16T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085818-yreejs6eq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T15:45:00.000Z","end":"2026-03-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085818-opsr2qlwr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T16:00:00.000Z","end":"2026-03-16T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085818-bsplf5apb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T16:15:00.000Z","end":"2026-03-16T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085818-l46oo1ks9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T16:30:00.000Z","end":"2026-03-16T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085818-x6k1r50gt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-16T16:45:00.000Z","end":"2026-03-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.818Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085818-b2efldz0s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-16T17:00:00.000Z","end":"2026-03-16T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.818Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-gudj4d6k4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T17:15:00.000Z","end":"2026-03-16T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-wtfvpigdo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T17:30:00.000Z","end":"2026-03-16T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-bhm3ybmdi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T17:45:00.000Z","end":"2026-03-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-irxagses6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T18:00:00.000Z","end":"2026-03-16T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-3t6vapnj5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T18:15:00.000Z","end":"2026-03-16T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-ck356nr8v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T18:30:00.000Z","end":"2026-03-16T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-f9ypc1qlw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T18:45:00.000Z","end":"2026-03-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-728atljgb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T19:00:00.000Z","end":"2026-03-16T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-za89nqfz4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T19:15:00.000Z","end":"2026-03-16T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-o0xidc8l0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-16T19:30:00.000Z","end":"2026-03-16T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.819Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-cgsa0by9k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-16T19:45:00.000Z","end":"2026-03-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-x9mu1g47b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T12:00:00.000Z","end":"2026-03-17T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-nchms5i4a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T12:15:00.000Z","end":"2026-03-17T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-n8tjzq40h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T12:30:00.000Z","end":"2026-03-17T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.819Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-sjvimq2qg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T12:45:00.000Z","end":"2026-03-17T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.819Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-lea8jekg0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T13:00:00.000Z","end":"2026-03-17T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-5ov4ybf5o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T13:15:00.000Z","end":"2026-03-17T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.819Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-jprjj43aa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T13:30:00.000Z","end":"2026-03-17T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085819-hzad4pdtd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T13:45:00.000Z","end":"2026-03-17T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-jfgqitluu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T14:00:00.000Z","end":"2026-03-17T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-lvaf383u8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T14:15:00.000Z","end":"2026-03-17T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-7mjljg6ca","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T14:30:00.000Z","end":"2026-03-17T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-14g7uzg20","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T14:45:00.000Z","end":"2026-03-17T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-ttyuffzoa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T15:00:00.000Z","end":"2026-03-17T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-vz53p094e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T15:15:00.000Z","end":"2026-03-17T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-nedgfnv61","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T15:30:00.000Z","end":"2026-03-17T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-p5p8hdbvx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T15:45:00.000Z","end":"2026-03-17T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-kchl7am9e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T16:00:00.000Z","end":"2026-03-17T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-kfra0n3aa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T16:15:00.000Z","end":"2026-03-17T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-9gta88jqx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T16:30:00.000Z","end":"2026-03-17T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-g5ky1gbbv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T16:45:00.000Z","end":"2026-03-17T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-pufrjw5u3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T17:00:00.000Z","end":"2026-03-17T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-hzkvj585m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T17:15:00.000Z","end":"2026-03-17T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-zm7dh64fn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T17:30:00.000Z","end":"2026-03-17T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-8goubmjv8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T17:45:00.000Z","end":"2026-03-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-jjuyws7f6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T18:00:00.000Z","end":"2026-03-17T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-d6zlvznx6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T18:15:00.000Z","end":"2026-03-17T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-uj4nua43i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T18:30:00.000Z","end":"2026-03-17T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-5a94tpml0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T18:45:00.000Z","end":"2026-03-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-p6ajm6n3y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T19:00:00.000Z","end":"2026-03-17T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-4r5le1rqg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T19:15:00.000Z","end":"2026-03-17T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-bvhx1wpb0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-17T19:30:00.000Z","end":"2026-03-17T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-kfywd6ljb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-17T19:45:00.000Z","end":"2026-03-17T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-fges1wsw1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T12:00:00.000Z","end":"2026-03-18T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-ubtw6ydm1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T12:15:00.000Z","end":"2026-03-18T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-fdsp9p01e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T12:30:00.000Z","end":"2026-03-18T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-5icsny0uj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T12:45:00.000Z","end":"2026-03-18T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-1y1b8actp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T13:00:00.000Z","end":"2026-03-18T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-stqgnzugn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T13:15:00.000Z","end":"2026-03-18T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-wq4rjihi9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T13:30:00.000Z","end":"2026-03-18T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-92rvqfml8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T13:45:00.000Z","end":"2026-03-18T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-q1a82g5j7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T14:00:00.000Z","end":"2026-03-18T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-yoc1jd5ah","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T14:15:00.000Z","end":"2026-03-18T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-d13kpl2pg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T14:30:00.000Z","end":"2026-03-18T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-228k8sey2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T14:45:00.000Z","end":"2026-03-18T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.820Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-to1op0wxq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T15:00:00.000Z","end":"2026-03-18T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085820-wn4ydffq0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T15:15:00.000Z","end":"2026-03-18T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-ilhmk78q6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T15:30:00.000Z","end":"2026-03-18T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-uaouu86uh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T15:45:00.000Z","end":"2026-03-18T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.441Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-vk6dbldjz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T16:00:00.000Z","end":"2026-03-18T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-0quy3mntg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T16:15:00.000Z","end":"2026-03-18T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-10g4nj9bz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T16:30:00.000Z","end":"2026-03-18T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-vkwn858gu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T16:45:00.000Z","end":"2026-03-18T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-f3ph9gxgl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T17:00:00.000Z","end":"2026-03-18T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-sbyqkakjs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T17:15:00.000Z","end":"2026-03-18T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-psaw554kv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T17:30:00.000Z","end":"2026-03-18T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-30va0qxjs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T17:45:00.000Z","end":"2026-03-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-4xshs8eai","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T18:00:00.000Z","end":"2026-03-18T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-cnxvch2nf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T18:15:00.000Z","end":"2026-03-18T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-nrzdz6fab","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T18:30:00.000Z","end":"2026-03-18T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-6ul0zpg7a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T18:45:00.000Z","end":"2026-03-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-k3ms682r7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-18T19:00:00.000Z","end":"2026-03-18T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-q1wd5q9bt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T19:15:00.000Z","end":"2026-03-18T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-f4v2ihsgd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T19:30:00.000Z","end":"2026-03-18T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-8pfrcijcc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-18T19:45:00.000Z","end":"2026-03-18T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-a271n8qou","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T12:00:00.000Z","end":"2026-03-19T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-54lrpr8n2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T12:15:00.000Z","end":"2026-03-19T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-wmt65v5l2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T12:30:00.000Z","end":"2026-03-19T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-oxtmo5vnz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T12:45:00.000Z","end":"2026-03-19T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-90ddk9hvw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T13:00:00.000Z","end":"2026-03-19T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-sd1tcceqt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T13:15:00.000Z","end":"2026-03-19T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-gxntjr4xj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T13:30:00.000Z","end":"2026-03-19T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-009ebjda2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T13:45:00.000Z","end":"2026-03-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-pdwj1eeh8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T14:00:00.000Z","end":"2026-03-19T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-syipz4vsb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T14:15:00.000Z","end":"2026-03-19T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-f0fd67ow8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T14:30:00.000Z","end":"2026-03-19T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-ufvnz79lq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T14:45:00.000Z","end":"2026-03-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-f1kasdkov","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T15:00:00.000Z","end":"2026-03-19T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-3exlff6fv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T15:15:00.000Z","end":"2026-03-19T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-w6yq0bfcp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T15:30:00.000Z","end":"2026-03-19T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-16658el9p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T15:45:00.000Z","end":"2026-03-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-wfxgsxnq6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T16:00:00.000Z","end":"2026-03-19T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-z3i2wyelh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T16:15:00.000Z","end":"2026-03-19T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085821-q40jrz4nv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T16:30:00.000Z","end":"2026-03-19T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.821Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-b83n3jqkg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T16:45:00.000Z","end":"2026-03-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-4uzwyr5hd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T17:00:00.000Z","end":"2026-03-19T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-htyfs4tkl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T17:15:00.000Z","end":"2026-03-19T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-a9ezehdem","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T17:30:00.000Z","end":"2026-03-19T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-n1ng8prlx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T17:45:00.000Z","end":"2026-03-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-058ofzapt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T18:00:00.000Z","end":"2026-03-19T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-rb7kgmqrs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T18:15:00.000Z","end":"2026-03-19T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-turku1eav","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T18:30:00.000Z","end":"2026-03-19T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-9pixrzgex","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T18:45:00.000Z","end":"2026-03-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-weyh2gyy5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T19:00:00.000Z","end":"2026-03-19T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-8yo3q97xj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T19:15:00.000Z","end":"2026-03-19T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-n8h1hw7sr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-19T19:30:00.000Z","end":"2026-03-19T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-59oymoquq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-19T19:45:00.000Z","end":"2026-03-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-zwvucfk9u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T12:00:00.000Z","end":"2026-03-20T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-5mgnxzmd2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T12:15:00.000Z","end":"2026-03-20T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-pw25w6rmt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T12:30:00.000Z","end":"2026-03-20T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-43l7my8hp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T12:45:00.000Z","end":"2026-03-20T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-j38wlgugn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T13:00:00.000Z","end":"2026-03-20T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-4ru8xh585","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T13:15:00.000Z","end":"2026-03-20T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-hpkoj609z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T13:30:00.000Z","end":"2026-03-20T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-d7lj733p4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T13:45:00.000Z","end":"2026-03-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-3v179x1zm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T14:00:00.000Z","end":"2026-03-20T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-fqnz56tjb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T14:15:00.000Z","end":"2026-03-20T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-p7e94el0z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T14:30:00.000Z","end":"2026-03-20T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-x2bu6it0f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T14:45:00.000Z","end":"2026-03-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-s6962sk60","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T15:00:00.000Z","end":"2026-03-20T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-bqc6ty4ra","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T15:15:00.000Z","end":"2026-03-20T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-geid5hsax","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T15:30:00.000Z","end":"2026-03-20T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-wbqxmvj05","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T15:45:00.000Z","end":"2026-03-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-aqwzxtyyq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T16:00:00.000Z","end":"2026-03-20T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-98cgzc5tf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T16:15:00.000Z","end":"2026-03-20T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.822Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-exgihzrzg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T16:30:00.000Z","end":"2026-03-20T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085822-2t39est97","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T16:45:00.000Z","end":"2026-03-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-ieklp3c6n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T17:00:00.000Z","end":"2026-03-20T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-0jms0g8mq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T17:15:00.000Z","end":"2026-03-20T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-imgimsaoj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T17:30:00.000Z","end":"2026-03-20T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-v7anf9mbr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T17:45:00.000Z","end":"2026-03-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-z705565dl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T18:00:00.000Z","end":"2026-03-20T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-xbm3gv0vd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T18:15:00.000Z","end":"2026-03-20T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-y8qwbjh8d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T18:30:00.000Z","end":"2026-03-20T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-qd70e5f5p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T18:45:00.000Z","end":"2026-03-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-og0fbf84h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T19:00:00.000Z","end":"2026-03-20T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-8ukvwq9pe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T19:15:00.000Z","end":"2026-03-20T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-3wgi0o4n9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-20T19:30:00.000Z","end":"2026-03-20T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-mr7acs20n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-20T19:45:00.000Z","end":"2026-03-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-n1wsivfhm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T12:00:00.000Z","end":"2026-03-23T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-wuz5dgyav","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T12:15:00.000Z","end":"2026-03-23T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-pa52dg0sc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T12:30:00.000Z","end":"2026-03-23T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-hptwkdqaz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T12:45:00.000Z","end":"2026-03-23T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-9tsigge9o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T13:00:00.000Z","end":"2026-03-23T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-fkmjy8yzg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T13:15:00.000Z","end":"2026-03-23T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-mb8v2imjy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T13:30:00.000Z","end":"2026-03-23T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-k4wf3uqh1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T13:45:00.000Z","end":"2026-03-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-unrpkjjda","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T14:00:00.000Z","end":"2026-03-23T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-t9ljz93io","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T14:15:00.000Z","end":"2026-03-23T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-0sywk2z2x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T14:30:00.000Z","end":"2026-03-23T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-k0c308y0y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T14:45:00.000Z","end":"2026-03-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-x160wykdw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T15:00:00.000Z","end":"2026-03-23T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-178koqbff","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T15:15:00.000Z","end":"2026-03-23T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-bs4v3xftq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T15:30:00.000Z","end":"2026-03-23T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-t3p6da2vi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T15:45:00.000Z","end":"2026-03-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-7wzdhvgxg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T16:00:00.000Z","end":"2026-03-23T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085823-uo5x81nzu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T16:15:00.000Z","end":"2026-03-23T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.823Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-q6xbyxle1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T16:30:00.000Z","end":"2026-03-23T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.824Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-4jgveabdw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T16:45:00.000Z","end":"2026-03-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-ljnx7ojbm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T17:00:00.000Z","end":"2026-03-23T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.824Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-edq65f6nz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T17:15:00.000Z","end":"2026-03-23T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.824Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-fqfkvtfkg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T17:30:00.000Z","end":"2026-03-23T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.824Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-liw6eazm0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T17:45:00.000Z","end":"2026-03-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-kqg6sane3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T18:00:00.000Z","end":"2026-03-23T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-pdhi7tnqq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T18:15:00.000Z","end":"2026-03-23T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.824Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-138fdi74p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T18:30:00.000Z","end":"2026-03-23T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-jmifdemhw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T18:45:00.000Z","end":"2026-03-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.824Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085824-n1um94g3t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T19:00:00.000Z","end":"2026-03-23T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.824Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-m237zkyda","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-23T19:15:00.000Z","end":"2026-03-23T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-pcduen2qv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T19:30:00.000Z","end":"2026-03-23T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-y591lo2eh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-23T19:45:00.000Z","end":"2026-03-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-898w6wcwx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T12:00:00.000Z","end":"2026-03-24T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-036sf1cwx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T12:15:00.000Z","end":"2026-03-24T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-d7yr7knip","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T12:30:00.000Z","end":"2026-03-24T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-rmrnsvkzc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T12:45:00.000Z","end":"2026-03-24T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-lm2hj13tp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T13:00:00.000Z","end":"2026-03-24T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-008pts267","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T13:15:00.000Z","end":"2026-03-24T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-sp3ldm9e5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T13:30:00.000Z","end":"2026-03-24T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-pgpe9okxs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T13:45:00.000Z","end":"2026-03-24T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-9eg6yv4xb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T14:00:00.000Z","end":"2026-03-24T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-gewwux0uo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T14:15:00.000Z","end":"2026-03-24T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-e2878fu3j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T14:30:00.000Z","end":"2026-03-24T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-j8k89fnof","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T14:45:00.000Z","end":"2026-03-24T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-lyflw4afw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T15:00:00.000Z","end":"2026-03-24T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-37ppce195","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T15:15:00.000Z","end":"2026-03-24T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-58pmkzb66","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T15:30:00.000Z","end":"2026-03-24T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-hvgjf7u07","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T15:45:00.000Z","end":"2026-03-24T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.825Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085825-y3rle5fgn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T16:00:00.000Z","end":"2026-03-24T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-joslnzj2f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T16:15:00.000Z","end":"2026-03-24T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-eios1qrwy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T16:30:00.000Z","end":"2026-03-24T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-a7knf568v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T16:45:00.000Z","end":"2026-03-24T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-cm1rl6wl7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T17:00:00.000Z","end":"2026-03-24T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-67f7twz8q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T17:15:00.000Z","end":"2026-03-24T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-3yhoysiax","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T17:30:00.000Z","end":"2026-03-24T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-um118z0xg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T17:45:00.000Z","end":"2026-03-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-tnynw1gs0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T18:00:00.000Z","end":"2026-03-24T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-pmi1e6lb9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T18:15:00.000Z","end":"2026-03-24T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-fflgqkp93","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T18:30:00.000Z","end":"2026-03-24T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-zpzw09qnd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T18:45:00.000Z","end":"2026-03-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-b2wya1g0a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T19:00:00.000Z","end":"2026-03-24T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-45fsrvo2d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-24T19:15:00.000Z","end":"2026-03-24T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-09y102eb4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T19:30:00.000Z","end":"2026-03-24T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-83itygkg0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-24T19:45:00.000Z","end":"2026-03-24T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-6mvtsv8p6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T12:00:00.000Z","end":"2026-03-25T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-movt7ektx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T12:15:00.000Z","end":"2026-03-25T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-lligj4d3y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T12:30:00.000Z","end":"2026-03-25T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-ykjucthbu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T12:45:00.000Z","end":"2026-03-25T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-l9yhm9wq1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T13:00:00.000Z","end":"2026-03-25T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-5yditd9cp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T13:15:00.000Z","end":"2026-03-25T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-4kv5b7c94","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T13:30:00.000Z","end":"2026-03-25T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.585Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-6eyi898gz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T13:45:00.000Z","end":"2026-03-25T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-leszmhgsk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T14:00:00.000Z","end":"2026-03-25T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-sromzfbxx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T14:15:00.000Z","end":"2026-03-25T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-hgofsfhwf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T14:30:00.000Z","end":"2026-03-25T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-51ue4e2ik","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T14:45:00.000Z","end":"2026-03-25T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-141r0bs0i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T15:00:00.000Z","end":"2026-03-25T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-2ylk994ym","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T15:15:00.000Z","end":"2026-03-25T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-hz7wce8z3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T15:30:00.000Z","end":"2026-03-25T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-89ebs04zm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T15:45:00.000Z","end":"2026-03-25T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-dz8ifae4i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T16:00:00.000Z","end":"2026-03-25T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-gc3roo202","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T16:15:00.000Z","end":"2026-03-25T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-pum7187bv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T16:30:00.000Z","end":"2026-03-25T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085826-mji8a2ni3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T16:45:00.000Z","end":"2026-03-25T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.826Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-n2zb0b1qr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T17:00:00.000Z","end":"2026-03-25T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-ryj7tx8cw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T17:15:00.000Z","end":"2026-03-25T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-xpjns9lxf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T17:30:00.000Z","end":"2026-03-25T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-3dfwd37yd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T17:45:00.000Z","end":"2026-03-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-1edimgur0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T18:00:00.000Z","end":"2026-03-25T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-amsae8uzy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T18:15:00.000Z","end":"2026-03-25T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-d1h7o907d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T18:30:00.000Z","end":"2026-03-25T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-zf1f59wr2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T18:45:00.000Z","end":"2026-03-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-lra7zvqgj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T19:00:00.000Z","end":"2026-03-25T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-50zmzjc1g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T19:15:00.000Z","end":"2026-03-25T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-p5p0igdfh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-25T19:30:00.000Z","end":"2026-03-25T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-933wb28na","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-25T19:45:00.000Z","end":"2026-03-25T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-9xi0b57e8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T12:00:00.000Z","end":"2026-03-26T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-gbyd4aaa9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T12:15:00.000Z","end":"2026-03-26T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-u23xbvokp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T12:30:00.000Z","end":"2026-03-26T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-t5ix0a14j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T12:45:00.000Z","end":"2026-03-26T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-15eoqpgxt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T13:00:00.000Z","end":"2026-03-26T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-wfwxeeyre","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T13:15:00.000Z","end":"2026-03-26T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-800jrmuuu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T13:30:00.000Z","end":"2026-03-26T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-3owdm6cqj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T13:45:00.000Z","end":"2026-03-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-grc8l3f90","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T14:00:00.000Z","end":"2026-03-26T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-t6pn6lk6y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T14:15:00.000Z","end":"2026-03-26T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-d77klvn9s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T14:30:00.000Z","end":"2026-03-26T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.827Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-47uvvxy7n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T14:45:00.000Z","end":"2026-03-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-5se8p6zgf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T15:00:00.000Z","end":"2026-03-26T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-06qjafcky","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T15:15:00.000Z","end":"2026-03-26T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-nhh8rthbi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T15:30:00.000Z","end":"2026-03-26T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-sfraqooxg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T15:45:00.000Z","end":"2026-03-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085827-jrvgxy4js","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T16:00:00.000Z","end":"2026-03-26T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-kn5118iim","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T16:15:00.000Z","end":"2026-03-26T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-nur1szb05","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T16:30:00.000Z","end":"2026-03-26T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-f4l1wc84m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T16:45:00.000Z","end":"2026-03-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-tmyq84n90","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T17:00:00.000Z","end":"2026-03-26T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-0ms81vs45","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T17:15:00.000Z","end":"2026-03-26T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-bqkadkwmc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T17:30:00.000Z","end":"2026-03-26T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-rjnwnqekf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T17:45:00.000Z","end":"2026-03-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-ck8nlz0qn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T18:00:00.000Z","end":"2026-03-26T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-l0nr8rokr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T18:15:00.000Z","end":"2026-03-26T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-ani937o6y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T18:30:00.000Z","end":"2026-03-26T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-55b2nxn6y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T18:45:00.000Z","end":"2026-03-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-hmlp13vtm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T19:00:00.000Z","end":"2026-03-26T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-59uxf3q22","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T19:15:00.000Z","end":"2026-03-26T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-5mh7gtfaj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-26T19:30:00.000Z","end":"2026-03-26T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-h473eqobd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-26T19:45:00.000Z","end":"2026-03-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-t28ktux7z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T12:00:00.000Z","end":"2026-03-27T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-8pn867pgn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T12:15:00.000Z","end":"2026-03-27T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-2raxqb3n3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T12:30:00.000Z","end":"2026-03-27T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-m5ybqcipf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T12:45:00.000Z","end":"2026-03-27T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-dvuxn5yb1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T13:00:00.000Z","end":"2026-03-27T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-pcbu19yv6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T13:15:00.000Z","end":"2026-03-27T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-3fx8pcdsr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T13:30:00.000Z","end":"2026-03-27T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-y3lba2is2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T13:45:00.000Z","end":"2026-03-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-7x5ndwns2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T14:00:00.000Z","end":"2026-03-27T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-f36zxfnnd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T14:15:00.000Z","end":"2026-03-27T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-s920dq4kd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T14:30:00.000Z","end":"2026-03-27T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-qf9kpm2x6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T14:45:00.000Z","end":"2026-03-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-lftm6g29v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T15:00:00.000Z","end":"2026-03-27T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-ca33wg6ni","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T15:15:00.000Z","end":"2026-03-27T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-du2crs59n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T15:30:00.000Z","end":"2026-03-27T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-qknkh65gr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T15:45:00.000Z","end":"2026-03-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-le7lhszel","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T16:00:00.000Z","end":"2026-03-27T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-wh84fwvoz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T16:15:00.000Z","end":"2026-03-27T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-ai0h6z2vz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T16:30:00.000Z","end":"2026-03-27T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-7ni58ddx4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T16:45:00.000Z","end":"2026-03-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-6xfl2am34","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T17:00:00.000Z","end":"2026-03-27T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085828-zd5c6zm19","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T17:15:00.000Z","end":"2026-03-27T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.828Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-3zmpx0nhp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T17:30:00.000Z","end":"2026-03-27T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-p99zkzf2z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T17:45:00.000Z","end":"2026-03-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-lfb93cfdd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T18:00:00.000Z","end":"2026-03-27T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-qqjtpdewn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T18:15:00.000Z","end":"2026-03-27T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-26xr7uru8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T18:30:00.000Z","end":"2026-03-27T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-6rm0e7yes","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T18:45:00.000Z","end":"2026-03-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-kz2z24ieg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-27T19:00:00.000Z","end":"2026-03-27T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-9tk0ynuit","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T19:15:00.000Z","end":"2026-03-27T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-iylo3z3f0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T19:30:00.000Z","end":"2026-03-27T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-8txhq50td","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-27T19:45:00.000Z","end":"2026-03-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-b3t1svg1p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-30T12:00:00.000Z","end":"2026-03-30T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-74xtttiyw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T12:15:00.000Z","end":"2026-03-30T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-b7ayk85xz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T12:30:00.000Z","end":"2026-03-30T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-7oq8d0b44","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T12:45:00.000Z","end":"2026-03-30T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-cc1ahv9dd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T13:00:00.000Z","end":"2026-03-30T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-ftso3n8l7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T13:15:00.000Z","end":"2026-03-30T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-postir6fa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T13:30:00.000Z","end":"2026-03-30T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-nx9vmt6yj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T13:45:00.000Z","end":"2026-03-30T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-as9reqx26","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T14:00:00.000Z","end":"2026-03-30T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-7ch2r5ise","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T14:15:00.000Z","end":"2026-03-30T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-e9jrhqdn7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T14:30:00.000Z","end":"2026-03-30T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-jedqtaqnp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T14:45:00.000Z","end":"2026-03-30T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-vxrq9i7jx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T15:00:00.000Z","end":"2026-03-30T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-3db60qayb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T15:15:00.000Z","end":"2026-03-30T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-k64qax7b9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-30T15:30:00.000Z","end":"2026-03-30T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-sop9letgx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-30T15:45:00.000Z","end":"2026-03-30T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-cu9mj8eda","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T16:00:00.000Z","end":"2026-03-30T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-11n757bgx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T16:15:00.000Z","end":"2026-03-30T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-ivlqkecff","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T16:30:00.000Z","end":"2026-03-30T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-an171rmva","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-30T16:45:00.000Z","end":"2026-03-30T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-rikd5da88","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T17:00:00.000Z","end":"2026-03-30T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-p990bn7t5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T17:15:00.000Z","end":"2026-03-30T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-7vssalj3v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T17:30:00.000Z","end":"2026-03-30T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-idkmg3el3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T17:45:00.000Z","end":"2026-03-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-cwzc93z4e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T18:00:00.000Z","end":"2026-03-30T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085829-0l7hz1vfi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T18:15:00.000Z","end":"2026-03-30T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.829Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-04eppvifs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T18:30:00.000Z","end":"2026-03-30T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-8q8frrr7a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T18:45:00.000Z","end":"2026-03-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-hgp0u0hwb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T19:00:00.000Z","end":"2026-03-30T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-7ybw8e6yc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-30T19:15:00.000Z","end":"2026-03-30T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.506Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-kgqdvbgz8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T19:30:00.000Z","end":"2026-03-30T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-dvp0ksa8l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-30T19:45:00.000Z","end":"2026-03-30T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-1zbnuqtlx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T12:00:00.000Z","end":"2026-03-31T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-oca9n4g5f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T12:15:00.000Z","end":"2026-03-31T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-kt1tqw2mf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T12:30:00.000Z","end":"2026-03-31T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-aesrcfrtl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-31T12:45:00.000Z","end":"2026-03-31T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-6v9rmiv20","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T13:00:00.000Z","end":"2026-03-31T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-h3icpl3yb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T13:15:00.000Z","end":"2026-03-31T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-teacg47hw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-31T13:30:00.000Z","end":"2026-03-31T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-cagc5aw8p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T13:45:00.000Z","end":"2026-03-31T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-vvj6nrkst","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T14:00:00.000Z","end":"2026-03-31T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.830Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085830-iipu03dhf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-31T14:15:00.000Z","end":"2026-03-31T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-b11esti1m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T14:30:00.000Z","end":"2026-03-31T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-k0t72zdzc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-31T14:45:00.000Z","end":"2026-03-31T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-ccc1m5433","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T15:00:00.000Z","end":"2026-03-31T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-cx7r4bvlo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T15:15:00.000Z","end":"2026-03-31T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-323kr6y0z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T15:30:00.000Z","end":"2026-03-31T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-gz3w47mmt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T15:45:00.000Z","end":"2026-03-31T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-yh6le3g67","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T16:00:00.000Z","end":"2026-03-31T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-bore7mvri","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T16:15:00.000Z","end":"2026-03-31T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-c241jm4w7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T16:30:00.000Z","end":"2026-03-31T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-suixegy23","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-03-31T16:45:00.000Z","end":"2026-03-31T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-v5dee8zrx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T17:00:00.000Z","end":"2026-03-31T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-qwb4cb9k2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T17:15:00.000Z","end":"2026-03-31T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085831-xqz22leg2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T17:30:00.000Z","end":"2026-03-31T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.831Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-7oi6965zq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T17:45:00.000Z","end":"2026-03-31T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-xecw5ueze","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T18:00:00.000Z","end":"2026-03-31T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-7v9x99aev","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T18:15:00.000Z","end":"2026-03-31T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-zb6eqr4jt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T18:30:00.000Z","end":"2026-03-31T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-qpwi4p6dd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T18:45:00.000Z","end":"2026-03-31T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-pzquek03g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T19:00:00.000Z","end":"2026-03-31T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-x27h4ypyg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T19:15:00.000Z","end":"2026-03-31T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-lqwo4bfei","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T19:30:00.000Z","end":"2026-03-31T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-qsy18zwyo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-03-31T19:45:00.000Z","end":"2026-03-31T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-yv8zedko4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T12:00:00.000Z","end":"2026-04-01T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-3m360lbpb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T12:15:00.000Z","end":"2026-04-01T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-46559bcuz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T12:30:00.000Z","end":"2026-04-01T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-bvj97aowr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T12:45:00.000Z","end":"2026-04-01T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-u3q3mwvqh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T13:00:00.000Z","end":"2026-04-01T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-7k872e21u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T13:15:00.000Z","end":"2026-04-01T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-rc0ke1dap","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T13:30:00.000Z","end":"2026-04-01T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-dzmhh8dme","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T13:45:00.000Z","end":"2026-04-01T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-jnayx563t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T14:00:00.000Z","end":"2026-04-01T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-x74djotog","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T14:15:00.000Z","end":"2026-04-01T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-xcdf4l1z0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T14:30:00.000Z","end":"2026-04-01T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-b9spffyi5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T14:45:00.000Z","end":"2026-04-01T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-z4ufwxbdn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T15:00:00.000Z","end":"2026-04-01T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-cwxfzlvtn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T15:15:00.000Z","end":"2026-04-01T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-z1pqr7t92","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T15:30:00.000Z","end":"2026-04-01T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-jz406htgq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T15:45:00.000Z","end":"2026-04-01T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-4lfk32li7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T16:00:00.000Z","end":"2026-04-01T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-ytomtcsxp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T16:15:00.000Z","end":"2026-04-01T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-3o9xwu3ft","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T16:30:00.000Z","end":"2026-04-01T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-rauz41f13","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T16:45:00.000Z","end":"2026-04-01T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085832-17lz3xzq1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T17:00:00.000Z","end":"2026-04-01T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.832Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-z18wfvuif","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T17:15:00.000Z","end":"2026-04-01T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-uy7eauotv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T17:30:00.000Z","end":"2026-04-01T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-0anz0rkpz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T17:45:00.000Z","end":"2026-04-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-b9vme7xdn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T18:00:00.000Z","end":"2026-04-01T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-35l0vrk23","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T18:15:00.000Z","end":"2026-04-01T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-5tvsvnpfc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T18:30:00.000Z","end":"2026-04-01T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-gz8apiryj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T18:45:00.000Z","end":"2026-04-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-nnnqafewv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T19:00:00.000Z","end":"2026-04-01T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-7tqplzmsd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T19:15:00.000Z","end":"2026-04-01T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-wqjtewfbl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T19:30:00.000Z","end":"2026-04-01T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-n1io882aw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-01T19:45:00.000Z","end":"2026-04-01T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-w450aqmd4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-02T12:00:00.000Z","end":"2026-04-02T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-txrjpqu7j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T12:15:00.000Z","end":"2026-04-02T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-tplb8biqy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T12:30:00.000Z","end":"2026-04-02T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-0zzd73edn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-02T12:45:00.000Z","end":"2026-04-02T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-jzttv4gc4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T13:00:00.000Z","end":"2026-04-02T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-bukuprx40","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T13:15:00.000Z","end":"2026-04-02T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-lcaz43et2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T13:30:00.000Z","end":"2026-04-02T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-o7v6pvttf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T13:45:00.000Z","end":"2026-04-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-tjn2c44rq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T14:00:00.000Z","end":"2026-04-02T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-cmo6u65ly","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T14:15:00.000Z","end":"2026-04-02T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-cfnyxixq5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-02T14:30:00.000Z","end":"2026-04-02T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.485Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-xhp7skosw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T14:45:00.000Z","end":"2026-04-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-hcwy7swbo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T15:00:00.000Z","end":"2026-04-02T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-g9i7ficdl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T15:15:00.000Z","end":"2026-04-02T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-d7djjci85","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T15:30:00.000Z","end":"2026-04-02T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-q3s17wzrn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-02T15:45:00.000Z","end":"2026-04-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-t9yi1i8km","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T16:00:00.000Z","end":"2026-04-02T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-u8yv4hyre","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T16:15:00.000Z","end":"2026-04-02T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-ydi633a88","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T16:30:00.000Z","end":"2026-04-02T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-0q2dbx48h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T16:45:00.000Z","end":"2026-04-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-ukl4e1s6h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-02T17:00:00.000Z","end":"2026-04-02T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-au3yy5oej","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T17:15:00.000Z","end":"2026-04-02T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-c8d21jafh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T17:30:00.000Z","end":"2026-04-02T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-a5uvulzj0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T17:45:00.000Z","end":"2026-04-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-mdkh82hvd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T18:00:00.000Z","end":"2026-04-02T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.833Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085833-mfkf3mpb7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-02T18:15:00.000Z","end":"2026-04-02T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-oln5pf8vc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T18:30:00.000Z","end":"2026-04-02T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-vtir7eeor","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T18:45:00.000Z","end":"2026-04-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-f54yh22in","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T19:00:00.000Z","end":"2026-04-02T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-127bl5wf3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T19:15:00.000Z","end":"2026-04-02T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-6g3nv70h1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T19:30:00.000Z","end":"2026-04-02T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-66vy07es7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-02T19:45:00.000Z","end":"2026-04-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-7b552ywr1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T12:00:00.000Z","end":"2026-04-03T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-q3myfaw7v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T12:15:00.000Z","end":"2026-04-03T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-lpkn26d8m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T12:30:00.000Z","end":"2026-04-03T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-mqjlshzmd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T12:45:00.000Z","end":"2026-04-03T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-hiubrxogt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T13:00:00.000Z","end":"2026-04-03T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-uz80r53i0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T13:15:00.000Z","end":"2026-04-03T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-tgb86d2n4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-03T13:30:00.000Z","end":"2026-04-03T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-cmaepoiki","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T13:45:00.000Z","end":"2026-04-03T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-jldnh4fxo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-03T14:00:00.000Z","end":"2026-04-03T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-io322mj5a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T14:15:00.000Z","end":"2026-04-03T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-v6y6t80f3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T14:30:00.000Z","end":"2026-04-03T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-z7npp7s6o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T14:45:00.000Z","end":"2026-04-03T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-8726pzuck","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T15:00:00.000Z","end":"2026-04-03T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-nc9w4sh23","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-03T15:15:00.000Z","end":"2026-04-03T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-qi7o880xn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T15:30:00.000Z","end":"2026-04-03T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-q5qnanseh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T15:45:00.000Z","end":"2026-04-03T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-d5i0efbwh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T16:00:00.000Z","end":"2026-04-03T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-ab8qe4kwk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T16:15:00.000Z","end":"2026-04-03T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-c91x5ij0m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T16:30:00.000Z","end":"2026-04-03T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-c3l0k7uga","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T16:45:00.000Z","end":"2026-04-03T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-2sjckmuaz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T17:00:00.000Z","end":"2026-04-03T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-nqpa4ljj2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T17:15:00.000Z","end":"2026-04-03T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-owmc81rd2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T17:30:00.000Z","end":"2026-04-03T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-6veev41hi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T17:45:00.000Z","end":"2026-04-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-frzjfjyf4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T18:00:00.000Z","end":"2026-04-03T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-bgpwhwop5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T18:15:00.000Z","end":"2026-04-03T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-x73egpmql","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-03T18:30:00.000Z","end":"2026-04-03T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-7ams0bofg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-03T18:45:00.000Z","end":"2026-04-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-vk6rnbrjl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-03T19:00:00.000Z","end":"2026-04-03T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085834-xpjhpqot6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-03T19:15:00.000Z","end":"2026-04-03T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.834Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-wuc38f04a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-03T19:30:00.000Z","end":"2026-04-03T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-le35s6g99","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-03T19:45:00.000Z","end":"2026-04-03T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-y8kezaw49","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T12:00:00.000Z","end":"2026-04-06T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-b4v5s9aiy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T12:15:00.000Z","end":"2026-04-06T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-6qaja4lcj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T12:30:00.000Z","end":"2026-04-06T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-5xax1soki","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T12:45:00.000Z","end":"2026-04-06T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-dwh0mvxyy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T13:00:00.000Z","end":"2026-04-06T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-1mnjdzqbu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T13:15:00.000Z","end":"2026-04-06T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-4gfym8eq7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T13:30:00.000Z","end":"2026-04-06T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-2ucf785e6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T13:45:00.000Z","end":"2026-04-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-ujnzdlr3a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T14:00:00.000Z","end":"2026-04-06T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-o3580dl3c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T14:15:00.000Z","end":"2026-04-06T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-5o82zon0b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T14:30:00.000Z","end":"2026-04-06T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-1ogqaftwv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T14:45:00.000Z","end":"2026-04-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-qz32duz1y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T15:00:00.000Z","end":"2026-04-06T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-dz0ifsbwm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T15:15:00.000Z","end":"2026-04-06T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-801stuu6n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T15:30:00.000Z","end":"2026-04-06T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-59eir6xtb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T15:45:00.000Z","end":"2026-04-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-2x3rn3otq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T16:00:00.000Z","end":"2026-04-06T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-ajho0bdmg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T16:15:00.000Z","end":"2026-04-06T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-eo89yymeg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T16:30:00.000Z","end":"2026-04-06T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-tsvonbmpy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T16:45:00.000Z","end":"2026-04-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-43r9b72rx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T17:00:00.000Z","end":"2026-04-06T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-rfzv6y9fd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T17:15:00.000Z","end":"2026-04-06T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-9hbl8qvyx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T17:30:00.000Z","end":"2026-04-06T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-p7cty5r9d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T17:45:00.000Z","end":"2026-04-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-lry97gvwj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T18:00:00.000Z","end":"2026-04-06T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-d63ui86v8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-06T18:15:00.000Z","end":"2026-04-06T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.835Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-hs356f86i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T18:30:00.000Z","end":"2026-04-06T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-vsc72as0k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T18:45:00.000Z","end":"2026-04-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-wyc46zodw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T19:00:00.000Z","end":"2026-04-06T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-00k0mjcde","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T19:15:00.000Z","end":"2026-04-06T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085835-squn2bal5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T19:30:00.000Z","end":"2026-04-06T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-q3jxgpour","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-06T19:45:00.000Z","end":"2026-04-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-yzw7qfpwd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T12:00:00.000Z","end":"2026-04-07T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-psyvhq2vj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T12:15:00.000Z","end":"2026-04-07T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-frokg3j19","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T12:30:00.000Z","end":"2026-04-07T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-7d8dos1ts","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T12:45:00.000Z","end":"2026-04-07T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-3xkrf67ur","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T13:00:00.000Z","end":"2026-04-07T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-0ijpjnjm4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T13:15:00.000Z","end":"2026-04-07T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-17wtstfgw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T13:30:00.000Z","end":"2026-04-07T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-a0mjeaf3g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-07T13:45:00.000Z","end":"2026-04-07T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-kl9e3frkf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-07T14:00:00.000Z","end":"2026-04-07T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-4o35375dd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T14:15:00.000Z","end":"2026-04-07T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-k5c6w7zu7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T14:30:00.000Z","end":"2026-04-07T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-lmfuif4dv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T14:45:00.000Z","end":"2026-04-07T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-ghb0xhxum","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T15:00:00.000Z","end":"2026-04-07T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-w5kb1ttjv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T15:15:00.000Z","end":"2026-04-07T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-tnvrt1rsr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T15:30:00.000Z","end":"2026-04-07T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-opcyx8tei","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T15:45:00.000Z","end":"2026-04-07T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-qb8qyt4ph","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T16:00:00.000Z","end":"2026-04-07T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085836-6e3wsupea","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T16:15:00.000Z","end":"2026-04-07T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.836Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-8kjuy9svb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T16:30:00.000Z","end":"2026-04-07T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-uvli0eem2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T16:45:00.000Z","end":"2026-04-07T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-fkw3ku4nh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T17:00:00.000Z","end":"2026-04-07T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-go0utoyyx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-07T17:15:00.000Z","end":"2026-04-07T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-dotcnn58u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T17:30:00.000Z","end":"2026-04-07T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-vov0tm3p7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T17:45:00.000Z","end":"2026-04-07T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-zfccwhdxt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-07T18:00:00.000Z","end":"2026-04-07T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-1almbz2t2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T18:15:00.000Z","end":"2026-04-07T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-om238zf0a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T18:30:00.000Z","end":"2026-04-07T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-lf1wx37jg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T18:45:00.000Z","end":"2026-04-07T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-zdtfj9r34","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T19:00:00.000Z","end":"2026-04-07T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-zl81q3g7c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T19:15:00.000Z","end":"2026-04-07T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085837-cdgtm64c3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T19:30:00.000Z","end":"2026-04-07T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.837Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-lni9v9bu7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-07T19:45:00.000Z","end":"2026-04-07T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-vaqym3kcb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T12:00:00.000Z","end":"2026-04-08T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-wnsomrl2s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T12:15:00.000Z","end":"2026-04-08T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-3ifx25zv9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T12:30:00.000Z","end":"2026-04-08T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-jl38ch7nu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T12:45:00.000Z","end":"2026-04-08T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-ii3no78ri","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T13:00:00.000Z","end":"2026-04-08T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-cvlrj1mds","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T13:15:00.000Z","end":"2026-04-08T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-2hgcpr4qi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T13:30:00.000Z","end":"2026-04-08T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-awt06iw2k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T13:45:00.000Z","end":"2026-04-08T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-wcrjbcqul","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T14:00:00.000Z","end":"2026-04-08T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-w2ibfuurt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T14:15:00.000Z","end":"2026-04-08T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-uxqwd6hqc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T14:30:00.000Z","end":"2026-04-08T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-57de3vzq4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T14:45:00.000Z","end":"2026-04-08T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-deq1qj6tv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T15:00:00.000Z","end":"2026-04-08T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-9fnvqnh7z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T15:15:00.000Z","end":"2026-04-08T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-cekzmx1o6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T15:30:00.000Z","end":"2026-04-08T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-bwzbbda9j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T15:45:00.000Z","end":"2026-04-08T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-afqs39mds","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T16:00:00.000Z","end":"2026-04-08T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-888tghadk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T16:15:00.000Z","end":"2026-04-08T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-o3jpag82y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T16:30:00.000Z","end":"2026-04-08T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-myyr1dfa2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T16:45:00.000Z","end":"2026-04-08T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-ke6taz35e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T17:00:00.000Z","end":"2026-04-08T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-u13ig9yme","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T17:15:00.000Z","end":"2026-04-08T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-9jwzx2axx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T17:30:00.000Z","end":"2026-04-08T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-5mbi2p2gn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T17:45:00.000Z","end":"2026-04-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-q25zbesa6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T18:00:00.000Z","end":"2026-04-08T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-3nn0boao5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T18:15:00.000Z","end":"2026-04-08T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-u5u6aii8a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T18:30:00.000Z","end":"2026-04-08T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-fngwrma89","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T18:45:00.000Z","end":"2026-04-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-thqq9e0lm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T19:00:00.000Z","end":"2026-04-08T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-kms8nho4f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T19:15:00.000Z","end":"2026-04-08T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-6j8idi61f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-08T19:30:00.000Z","end":"2026-04-08T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-1iy9v7xpw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-08T19:45:00.000Z","end":"2026-04-08T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-d1rrrswhv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T12:00:00.000Z","end":"2026-04-09T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.838Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-853xxmf7t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T12:15:00.000Z","end":"2026-04-09T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-a49khgfli","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T12:30:00.000Z","end":"2026-04-09T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085838-13e1vflwk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T12:45:00.000Z","end":"2026-04-09T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-85zimgnq1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T13:00:00.000Z","end":"2026-04-09T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-4ivhp9wwi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T13:15:00.000Z","end":"2026-04-09T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-e3ekdwi1u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T13:30:00.000Z","end":"2026-04-09T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-9vb0rgm0l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T13:45:00.000Z","end":"2026-04-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-4nf3q2n6o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T14:00:00.000Z","end":"2026-04-09T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-9eeb9wczn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T14:15:00.000Z","end":"2026-04-09T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-akaoq0i2i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T14:30:00.000Z","end":"2026-04-09T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-3u0z67rk1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T14:45:00.000Z","end":"2026-04-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-l3ba9ir06","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T15:00:00.000Z","end":"2026-04-09T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-s22eat3hm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T15:15:00.000Z","end":"2026-04-09T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-4l7a653wz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T15:30:00.000Z","end":"2026-04-09T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-26a6eqtn4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T15:45:00.000Z","end":"2026-04-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-yl4pevpg2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T16:00:00.000Z","end":"2026-04-09T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-vl4vlqbi7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T16:15:00.000Z","end":"2026-04-09T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-jm0wxvfky","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T16:30:00.000Z","end":"2026-04-09T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-sfm1dargt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T16:45:00.000Z","end":"2026-04-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-jntwtbxic","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T17:00:00.000Z","end":"2026-04-09T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-vjea61na0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T17:15:00.000Z","end":"2026-04-09T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-appemlvx9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T17:30:00.000Z","end":"2026-04-09T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-wkuen0vaa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T17:45:00.000Z","end":"2026-04-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-4f08ysbp7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T18:00:00.000Z","end":"2026-04-09T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-vmc0jxi1q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T18:15:00.000Z","end":"2026-04-09T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-7l03m3s6f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T18:30:00.000Z","end":"2026-04-09T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-k6v25a7ft","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T18:45:00.000Z","end":"2026-04-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-kh7rfyi1n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T19:00:00.000Z","end":"2026-04-09T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-827a8760e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T19:15:00.000Z","end":"2026-04-09T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-meo3z48pz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-09T19:30:00.000Z","end":"2026-04-09T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-y6ybl3hsx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-09T19:45:00.000Z","end":"2026-04-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-cg0eieq32","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T12:00:00.000Z","end":"2026-04-10T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085839-cxg95gln0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T12:15:00.000Z","end":"2026-04-10T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.839Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-d90aj2a1i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T12:30:00.000Z","end":"2026-04-10T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-1k1xy3ook","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T12:45:00.000Z","end":"2026-04-10T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-cscawndls","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T13:00:00.000Z","end":"2026-04-10T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-z9eo29adl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T13:15:00.000Z","end":"2026-04-10T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-hu5k11pin","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T13:30:00.000Z","end":"2026-04-10T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-vn2tavjr2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T13:45:00.000Z","end":"2026-04-10T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-ep9j18n0z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T14:00:00.000Z","end":"2026-04-10T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-guuouoi1h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T14:15:00.000Z","end":"2026-04-10T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-r1jh863af","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T14:30:00.000Z","end":"2026-04-10T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-r8aht8qb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T14:45:00.000Z","end":"2026-04-10T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-b3gn60n6v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T15:00:00.000Z","end":"2026-04-10T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-qx7vde8ea","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T15:15:00.000Z","end":"2026-04-10T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-gtmqrv407","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T15:30:00.000Z","end":"2026-04-10T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-gx34no6vi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T15:45:00.000Z","end":"2026-04-10T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-zyim0puxd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T16:00:00.000Z","end":"2026-04-10T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-od0akx90d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T16:15:00.000Z","end":"2026-04-10T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-q0hzow501","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T16:30:00.000Z","end":"2026-04-10T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-duw2xpseg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T16:45:00.000Z","end":"2026-04-10T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-mrkbh6cig","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T17:00:00.000Z","end":"2026-04-10T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-g8v1ujjco","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T17:15:00.000Z","end":"2026-04-10T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-u8ps0es92","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T17:30:00.000Z","end":"2026-04-10T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-63fx2s3lx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T17:45:00.000Z","end":"2026-04-10T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-2zm0hb73j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T18:00:00.000Z","end":"2026-04-10T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-uvk066p22","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T18:15:00.000Z","end":"2026-04-10T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-g1xjxdsjd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T18:30:00.000Z","end":"2026-04-10T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-64md6udif","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T18:45:00.000Z","end":"2026-04-10T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-8cwxbz2ej","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T19:00:00.000Z","end":"2026-04-10T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-rie7te00c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T19:15:00.000Z","end":"2026-04-10T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-m790gwnbx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-10T19:30:00.000Z","end":"2026-04-10T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-24neaz8lf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-10T19:45:00.000Z","end":"2026-04-10T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-dfkw0u9x3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T12:00:00.000Z","end":"2026-04-13T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.840Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-egyjcd6m8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T12:15:00.000Z","end":"2026-04-13T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-678vcbqqh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T12:30:00.000Z","end":"2026-04-13T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085840-0j89ys22z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T12:45:00.000Z","end":"2026-04-13T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-4hx6x90mr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T13:00:00.000Z","end":"2026-04-13T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-h5tfrezji","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T13:15:00.000Z","end":"2026-04-13T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-5qcd2tkex","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T13:30:00.000Z","end":"2026-04-13T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-5hny83k80","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T13:45:00.000Z","end":"2026-04-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-l8tjh9a5v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T14:00:00.000Z","end":"2026-04-13T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-g7tqjps4s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T14:15:00.000Z","end":"2026-04-13T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-2usr91x28","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T14:30:00.000Z","end":"2026-04-13T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-pxu5si53i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T14:45:00.000Z","end":"2026-04-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-w3tsd1ode","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T15:00:00.000Z","end":"2026-04-13T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-qyno7r9v7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T15:15:00.000Z","end":"2026-04-13T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-vnutpfa7k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T15:30:00.000Z","end":"2026-04-13T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-1fj16qji2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T15:45:00.000Z","end":"2026-04-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-7oh8b5hq5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T16:00:00.000Z","end":"2026-04-13T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-60ahdjj1l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T16:15:00.000Z","end":"2026-04-13T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-7qwa3s0pe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T16:30:00.000Z","end":"2026-04-13T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-icyoh1901","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T16:45:00.000Z","end":"2026-04-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-q0lbniuve","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T17:00:00.000Z","end":"2026-04-13T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-qbbtmy20u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T17:15:00.000Z","end":"2026-04-13T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-dszg4qll6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T17:30:00.000Z","end":"2026-04-13T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-vicqrflps","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T17:45:00.000Z","end":"2026-04-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-51a5pmk0q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T18:00:00.000Z","end":"2026-04-13T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-f9f68plks","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T18:15:00.000Z","end":"2026-04-13T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-1c0oug75d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T18:30:00.000Z","end":"2026-04-13T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-nuvisw37p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T18:45:00.000Z","end":"2026-04-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-7be7xf0tt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T19:00:00.000Z","end":"2026-04-13T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-3bsymnt4c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T19:15:00.000Z","end":"2026-04-13T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-qhwnh76cm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-13T19:30:00.000Z","end":"2026-04-13T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-dbetymmw7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-13T19:45:00.000Z","end":"2026-04-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-a3m5foqxu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T12:00:00.000Z","end":"2026-04-14T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-dr0cgp6bh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T12:15:00.000Z","end":"2026-04-14T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-v9zfh6eg0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T12:30:00.000Z","end":"2026-04-14T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-grfnm4kwh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T12:45:00.000Z","end":"2026-04-14T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-5468x6ys8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T13:00:00.000Z","end":"2026-04-14T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-osrc5d8rk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T13:15:00.000Z","end":"2026-04-14T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-lyhtw8w0a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T13:30:00.000Z","end":"2026-04-14T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-7akdfahlr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T13:45:00.000Z","end":"2026-04-14T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.841Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085841-qk5bn5x72","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T14:00:00.000Z","end":"2026-04-14T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-vrtz9cbgc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T14:15:00.000Z","end":"2026-04-14T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-8tetnbb4e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T14:30:00.000Z","end":"2026-04-14T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-vz8iubta7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T14:45:00.000Z","end":"2026-04-14T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-wicnzdfvm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T15:00:00.000Z","end":"2026-04-14T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-7lolouc90","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T15:15:00.000Z","end":"2026-04-14T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-n6v6u8jka","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T15:30:00.000Z","end":"2026-04-14T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-thuxsw2ew","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T15:45:00.000Z","end":"2026-04-14T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-4lng7cmxf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T16:00:00.000Z","end":"2026-04-14T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-a4pquxs48","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T16:15:00.000Z","end":"2026-04-14T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-6p9fbbz7k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T16:30:00.000Z","end":"2026-04-14T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-f7ux8a6u9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T16:45:00.000Z","end":"2026-04-14T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-g1wtl73nw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T17:00:00.000Z","end":"2026-04-14T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-94zykx76a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T17:15:00.000Z","end":"2026-04-14T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-g1dgewxnb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T17:30:00.000Z","end":"2026-04-14T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-p9ym0mnug","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T17:45:00.000Z","end":"2026-04-14T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-fm63obm58","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T18:00:00.000Z","end":"2026-04-14T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-jm7bjnpxa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T18:15:00.000Z","end":"2026-04-14T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-mcbq01rpf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T18:30:00.000Z","end":"2026-04-14T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-7urzdc016","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T18:45:00.000Z","end":"2026-04-14T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-4o890f1xe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-14T19:00:00.000Z","end":"2026-04-14T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-f807aolwq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T19:15:00.000Z","end":"2026-04-14T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085842-ef6bjt2c9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T19:30:00.000Z","end":"2026-04-14T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.842Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085843-8zrvb7pk6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-14T19:45:00.000Z","end":"2026-04-14T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.843Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085843-n6synlo7b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-15T12:00:00.000Z","end":"2026-04-15T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.843Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085843-21wmqxdm2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-15T12:15:00.000Z","end":"2026-04-15T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.843Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085843-8sabua7gh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T12:30:00.000Z","end":"2026-04-15T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085843-1csn659t1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T12:45:00.000Z","end":"2026-04-15T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085843-cpxx2mc1b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T13:00:00.000Z","end":"2026-04-15T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085843-jjukt0npt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T13:15:00.000Z","end":"2026-04-15T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-9vc0bhxbw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-15T13:30:00.000Z","end":"2026-04-15T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.844Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-494cdvuvq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-15T13:45:00.000Z","end":"2026-04-15T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.844Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-h3ko10ryk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T14:00:00.000Z","end":"2026-04-15T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-erae7minv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T14:15:00.000Z","end":"2026-04-15T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-rx6hvauvh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T14:30:00.000Z","end":"2026-04-15T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-hi846kiyg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T14:45:00.000Z","end":"2026-04-15T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-eanonxb03","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T15:00:00.000Z","end":"2026-04-15T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-1blh6phuh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T15:15:00.000Z","end":"2026-04-15T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-2pvergguy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-15T15:30:00.000Z","end":"2026-04-15T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.844Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-8i2imctg2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T15:45:00.000Z","end":"2026-04-15T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-f46uwu56b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-15T16:00:00.000Z","end":"2026-04-15T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.844Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-n56pa5r9x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T16:15:00.000Z","end":"2026-04-15T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-yxe2lvbqs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T16:30:00.000Z","end":"2026-04-15T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-3atkjkpxm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T16:45:00.000Z","end":"2026-04-15T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-kfen2aea6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-15T17:00:00.000Z","end":"2026-04-15T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.844Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-j1lw69gan","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T17:15:00.000Z","end":"2026-04-15T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-s46hhvacr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T17:30:00.000Z","end":"2026-04-15T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-7niimbmtx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T17:45:00.000Z","end":"2026-04-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-7gceeeohs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T18:00:00.000Z","end":"2026-04-15T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-s49m0gu14","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T18:15:00.000Z","end":"2026-04-15T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-w8ixe439l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T18:30:00.000Z","end":"2026-04-15T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-k21byfsij","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T18:45:00.000Z","end":"2026-04-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-n5rqphhqk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T19:00:00.000Z","end":"2026-04-15T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-udns0uukm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T19:15:00.000Z","end":"2026-04-15T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-0wiktq0ii","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-15T19:30:00.000Z","end":"2026-04-15T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.844Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-or92gcz56","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-15T19:45:00.000Z","end":"2026-04-15T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-ae41netkk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T12:00:00.000Z","end":"2026-04-16T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-nl05ac2s1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T12:15:00.000Z","end":"2026-04-16T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-u0381klx2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T12:30:00.000Z","end":"2026-04-16T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-yaoqvmhoc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T12:45:00.000Z","end":"2026-04-16T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-3iuuvp3vb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T13:00:00.000Z","end":"2026-04-16T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-apu7x7zgl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T13:15:00.000Z","end":"2026-04-16T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.844Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085844-swne9lscr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T13:30:00.000Z","end":"2026-04-16T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-wql89diux","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T13:45:00.000Z","end":"2026-04-16T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.420Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-8r9yo4g03","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T14:00:00.000Z","end":"2026-04-16T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-b681gm80l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T14:15:00.000Z","end":"2026-04-16T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-qowgqjx6i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T14:30:00.000Z","end":"2026-04-16T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-qqm9y3ds6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T14:45:00.000Z","end":"2026-04-16T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-bbchp1zuf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T15:00:00.000Z","end":"2026-04-16T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-fapsasd2t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T15:15:00.000Z","end":"2026-04-16T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-5k2j9ps6f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T15:30:00.000Z","end":"2026-04-16T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-4k1igvbpf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T15:45:00.000Z","end":"2026-04-16T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-afkkn6zw1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T16:00:00.000Z","end":"2026-04-16T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-lepvyyz6a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T16:15:00.000Z","end":"2026-04-16T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-52p7umiwt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T16:30:00.000Z","end":"2026-04-16T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-u3rw9mqnu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T16:45:00.000Z","end":"2026-04-16T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-begw4e181","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T17:00:00.000Z","end":"2026-04-16T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-lkftkfas8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T17:15:00.000Z","end":"2026-04-16T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-c4nt04q43","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T17:30:00.000Z","end":"2026-04-16T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-be6xpp35y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T17:45:00.000Z","end":"2026-04-16T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-jna2czkx1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T18:00:00.000Z","end":"2026-04-16T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-g44lbj3it","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T18:15:00.000Z","end":"2026-04-16T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-4gk09op9q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T18:30:00.000Z","end":"2026-04-16T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-ucznlmzln","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T18:45:00.000Z","end":"2026-04-16T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-ptdp79hp4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-16T19:00:00.000Z","end":"2026-04-16T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-wngh2u7af","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T19:15:00.000Z","end":"2026-04-16T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-qcpvah75b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T19:30:00.000Z","end":"2026-04-16T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.457Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-c0k43691d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-16T19:45:00.000Z","end":"2026-04-16T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-57yw49uun","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T12:00:00.000Z","end":"2026-04-17T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-gb6dwa616","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T12:15:00.000Z","end":"2026-04-17T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-1jg9q736j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T12:30:00.000Z","end":"2026-04-17T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-ssuzr1dkm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T12:45:00.000Z","end":"2026-04-17T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-jz4gf4eow","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T13:00:00.000Z","end":"2026-04-17T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-xywdvxqyp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T13:15:00.000Z","end":"2026-04-17T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-q6fx5d4ic","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T13:30:00.000Z","end":"2026-04-17T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-v09lli46k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T13:45:00.000Z","end":"2026-04-17T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.515Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-aerf18g1i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T14:00:00.000Z","end":"2026-04-17T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-zjsoljtjj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T14:15:00.000Z","end":"2026-04-17T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-7xdm21hrw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T14:30:00.000Z","end":"2026-04-17T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.845Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-cg80p9nv3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T14:45:00.000Z","end":"2026-04-17T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085845-ka3oedf5q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T15:00:00.000Z","end":"2026-04-17T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-yz9jjh5wi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T15:15:00.000Z","end":"2026-04-17T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-1xjbbm1pv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T15:30:00.000Z","end":"2026-04-17T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-29596x8b3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T15:45:00.000Z","end":"2026-04-17T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-qe2svvlu9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T16:00:00.000Z","end":"2026-04-17T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-ekxa98l4e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T16:15:00.000Z","end":"2026-04-17T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-u3ltcfr4o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T16:30:00.000Z","end":"2026-04-17T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-g5js0pt9t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T16:45:00.000Z","end":"2026-04-17T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-h6yvqkx8q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T17:00:00.000Z","end":"2026-04-17T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-bfvxqjh4h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T17:15:00.000Z","end":"2026-04-17T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-t50vker7e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T17:30:00.000Z","end":"2026-04-17T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-klx5aoji4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T17:45:00.000Z","end":"2026-04-17T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-a8rafvcs0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T18:00:00.000Z","end":"2026-04-17T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-apmv0ek9p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T18:15:00.000Z","end":"2026-04-17T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-6fw06vijp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T18:30:00.000Z","end":"2026-04-17T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-yx7nmg41n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T18:45:00.000Z","end":"2026-04-17T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-0vgjr15gt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T19:00:00.000Z","end":"2026-04-17T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-9jbxlsty7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T19:15:00.000Z","end":"2026-04-17T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-36giz1f3g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-17T19:30:00.000Z","end":"2026-04-17T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-4lfcat37s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-17T19:45:00.000Z","end":"2026-04-17T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-ul18stdfa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T12:00:00.000Z","end":"2026-04-20T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-z40wntug4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T12:15:00.000Z","end":"2026-04-20T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-tepxjtklg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T12:30:00.000Z","end":"2026-04-20T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-2cszt1653","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T12:45:00.000Z","end":"2026-04-20T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-oer3ze1ec","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T13:00:00.000Z","end":"2026-04-20T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-i9wobv9h5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T13:15:00.000Z","end":"2026-04-20T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-ikwwpa2ek","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T13:30:00.000Z","end":"2026-04-20T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-5tn4h3r3r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T13:45:00.000Z","end":"2026-04-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-fb3dp8ady","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T14:00:00.000Z","end":"2026-04-20T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-lis0vyzz4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T14:15:00.000Z","end":"2026-04-20T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-wlbvaxba2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T14:30:00.000Z","end":"2026-04-20T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-ftth4qbdt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T14:45:00.000Z","end":"2026-04-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-r7y7ae50i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T15:00:00.000Z","end":"2026-04-20T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-vs6hy24eb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T15:15:00.000Z","end":"2026-04-20T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085846-lsduwhr51","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T15:30:00.000Z","end":"2026-04-20T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.846Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-ymm6q4wk2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T15:45:00.000Z","end":"2026-04-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-l67abtmtj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T16:00:00.000Z","end":"2026-04-20T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-jdoczv0t5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T16:15:00.000Z","end":"2026-04-20T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-d3l4l0o9c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T16:30:00.000Z","end":"2026-04-20T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-oljaiatlj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T16:45:00.000Z","end":"2026-04-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-y4k2m9o4d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T17:00:00.000Z","end":"2026-04-20T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-hafpnvmyw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T17:15:00.000Z","end":"2026-04-20T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-2z5kr5o40","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T17:30:00.000Z","end":"2026-04-20T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-ikw7br57f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T17:45:00.000Z","end":"2026-04-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-wonr1v6b0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T18:00:00.000Z","end":"2026-04-20T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-ct4khha77","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T18:15:00.000Z","end":"2026-04-20T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-q9cvnwgak","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T18:30:00.000Z","end":"2026-04-20T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-djs3i5b36","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T18:45:00.000Z","end":"2026-04-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-9err3ydj3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T19:00:00.000Z","end":"2026-04-20T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-tnj428v9p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T19:15:00.000Z","end":"2026-04-20T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-zy69y0ed9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-20T19:30:00.000Z","end":"2026-04-20T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-f1u8oepmv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-20T19:45:00.000Z","end":"2026-04-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-kucrexq1f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T12:00:00.000Z","end":"2026-04-21T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-n9w3ua5n7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T12:15:00.000Z","end":"2026-04-21T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-pq0ghgcyv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T12:30:00.000Z","end":"2026-04-21T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-gpkk0gpgd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T12:45:00.000Z","end":"2026-04-21T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-zppcec8ks","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T13:00:00.000Z","end":"2026-04-21T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-s7i18md4y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T13:15:00.000Z","end":"2026-04-21T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-rgmx3zbsu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T13:30:00.000Z","end":"2026-04-21T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-qyjt7zlk3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T13:45:00.000Z","end":"2026-04-21T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-pm6ljfslt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T14:00:00.000Z","end":"2026-04-21T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-actet2blb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T14:15:00.000Z","end":"2026-04-21T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-fdtonm179","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T14:30:00.000Z","end":"2026-04-21T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085847-a5wr58o7d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T14:45:00.000Z","end":"2026-04-21T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.847Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-oxr1zgf9s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T15:00:00.000Z","end":"2026-04-21T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-zad9c46ct","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T15:15:00.000Z","end":"2026-04-21T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-y82z44kus","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T15:30:00.000Z","end":"2026-04-21T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-qkfylocdq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T15:45:00.000Z","end":"2026-04-21T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-xi3kwz7wi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T16:00:00.000Z","end":"2026-04-21T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-8k8in706u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T16:15:00.000Z","end":"2026-04-21T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-uqmozzf2g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T16:30:00.000Z","end":"2026-04-21T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-4doao7rh6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T16:45:00.000Z","end":"2026-04-21T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.504Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-7x5uff2bq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T17:00:00.000Z","end":"2026-04-21T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-j43ycsb0b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T17:15:00.000Z","end":"2026-04-21T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-pccp0qy2v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T17:30:00.000Z","end":"2026-04-21T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-bkjexyw8o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T17:45:00.000Z","end":"2026-04-21T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-r736zq29s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-21T18:00:00.000Z","end":"2026-04-21T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-4voeby2mk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T18:15:00.000Z","end":"2026-04-21T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-vltwsvibw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T18:30:00.000Z","end":"2026-04-21T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-p90yu7xxl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T18:45:00.000Z","end":"2026-04-21T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-altwcndaj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T19:00:00.000Z","end":"2026-04-21T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-pyk2x4e3m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T19:15:00.000Z","end":"2026-04-21T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-9mqjkumvl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T19:30:00.000Z","end":"2026-04-21T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085848-zv5a3x2bn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-21T19:45:00.000Z","end":"2026-04-21T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.848Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085849-v00zlxye4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T12:00:00.000Z","end":"2026-04-22T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085849-q36d54o73","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T12:15:00.000Z","end":"2026-04-22T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085849-669n5mhm1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T12:30:00.000Z","end":"2026-04-22T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-jf0zlv7zo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T12:45:00.000Z","end":"2026-04-22T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-95iamku8y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T13:00:00.000Z","end":"2026-04-22T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-wxyms3boi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T13:15:00.000Z","end":"2026-04-22T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.850Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-riij58opg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T13:30:00.000Z","end":"2026-04-22T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-owohtm95f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T13:45:00.000Z","end":"2026-04-22T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.850Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-wdcvr3gpm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T14:00:00.000Z","end":"2026-04-22T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-30cxfyo2x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T14:15:00.000Z","end":"2026-04-22T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-6ndp2x7xq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T14:30:00.000Z","end":"2026-04-22T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.850Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-0i1if17qf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T14:45:00.000Z","end":"2026-04-22T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-g810kckbs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T15:00:00.000Z","end":"2026-04-22T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-0xcpuga9a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T15:15:00.000Z","end":"2026-04-22T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-ulr2lhkhk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T15:30:00.000Z","end":"2026-04-22T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.850Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-ncfzsnkr1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T15:45:00.000Z","end":"2026-04-22T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.850Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-kpczhzpr5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T16:00:00.000Z","end":"2026-04-22T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-24andah50","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T16:15:00.000Z","end":"2026-04-22T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.850Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-tv77b1u2q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T16:30:00.000Z","end":"2026-04-22T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-yjavlubba","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T16:45:00.000Z","end":"2026-04-22T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085850-krvf4jjgk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T17:00:00.000Z","end":"2026-04-22T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.850Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-lukcxydtm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T17:15:00.000Z","end":"2026-04-22T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-0d6pa6ij7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T17:30:00.000Z","end":"2026-04-22T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-un3shnn8u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T17:45:00.000Z","end":"2026-04-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-v7fnyn14h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T18:00:00.000Z","end":"2026-04-22T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-oz4xu3t3a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T18:15:00.000Z","end":"2026-04-22T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-e5yemg8a0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T18:30:00.000Z","end":"2026-04-22T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-9aa8cmocn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T18:45:00.000Z","end":"2026-04-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-t48xmx7df","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T19:00:00.000Z","end":"2026-04-22T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-shwuc9vuc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T19:15:00.000Z","end":"2026-04-22T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-rfzoyivwq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-22T19:30:00.000Z","end":"2026-04-22T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-oq64x0y2r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-22T19:45:00.000Z","end":"2026-04-22T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-6k6joohk7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T12:00:00.000Z","end":"2026-04-23T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-epb9hsuf2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T12:15:00.000Z","end":"2026-04-23T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-z1ahm4m2c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T12:30:00.000Z","end":"2026-04-23T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-4775x6fmg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T12:45:00.000Z","end":"2026-04-23T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-dmeljjlw7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T13:00:00.000Z","end":"2026-04-23T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-atp12fppw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T13:15:00.000Z","end":"2026-04-23T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-42ft3bnn7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T13:30:00.000Z","end":"2026-04-23T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-lh7ekn8ma","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T13:45:00.000Z","end":"2026-04-23T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-po5bhqlio","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T14:00:00.000Z","end":"2026-04-23T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-gr9zp40al","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T14:15:00.000Z","end":"2026-04-23T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-pwr9j6nkw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T14:30:00.000Z","end":"2026-04-23T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-j3v1q3idf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T14:45:00.000Z","end":"2026-04-23T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-fkp11pmqa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T15:00:00.000Z","end":"2026-04-23T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-j16dmnbjh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T15:15:00.000Z","end":"2026-04-23T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-2hcfe4gw4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T15:30:00.000Z","end":"2026-04-23T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-z3a199qg5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T15:45:00.000Z","end":"2026-04-23T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-vkegbelma","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T16:00:00.000Z","end":"2026-04-23T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-3knvo60k0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T16:15:00.000Z","end":"2026-04-23T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-6x2i10mph","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T16:30:00.000Z","end":"2026-04-23T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-vsge1gw2m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T16:45:00.000Z","end":"2026-04-23T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.851Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-046i2r5c5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T17:00:00.000Z","end":"2026-04-23T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-gf4cdi1x3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T17:15:00.000Z","end":"2026-04-23T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-el4vf54lb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T17:30:00.000Z","end":"2026-04-23T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085851-0valk6jmr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T17:45:00.000Z","end":"2026-04-23T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-8eevbdru9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T18:00:00.000Z","end":"2026-04-23T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-0h63jnv61","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T18:15:00.000Z","end":"2026-04-23T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-fj7ivnpsf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T18:30:00.000Z","end":"2026-04-23T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-gj1y0ygow","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T18:45:00.000Z","end":"2026-04-23T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-bhrrvnyin","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-23T19:00:00.000Z","end":"2026-04-23T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-hhx8ugj4a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T19:15:00.000Z","end":"2026-04-23T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-7i2gdvnrj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T19:30:00.000Z","end":"2026-04-23T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-g8phqa3ai","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-23T19:45:00.000Z","end":"2026-04-23T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-l7d8zzzjw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T12:00:00.000Z","end":"2026-04-24T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-zuyjgb1js","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T12:15:00.000Z","end":"2026-04-24T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-31cbq4vpt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T12:30:00.000Z","end":"2026-04-24T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-igmzeiz7y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T12:45:00.000Z","end":"2026-04-24T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-ra5o43fr4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T13:00:00.000Z","end":"2026-04-24T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-xol0sz893","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T13:15:00.000Z","end":"2026-04-24T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-4e77322up","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T13:30:00.000Z","end":"2026-04-24T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-1cfe6kqu9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T13:45:00.000Z","end":"2026-04-24T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-t6q48tfq0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T14:00:00.000Z","end":"2026-04-24T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-jf04euns9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T14:15:00.000Z","end":"2026-04-24T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-4nwgwlsgo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T14:30:00.000Z","end":"2026-04-24T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-nhkb70eq2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T14:45:00.000Z","end":"2026-04-24T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-9uioylgfp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T15:00:00.000Z","end":"2026-04-24T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-53153hadk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T15:15:00.000Z","end":"2026-04-24T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-j6dobx32n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T15:30:00.000Z","end":"2026-04-24T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-agox797d6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T15:45:00.000Z","end":"2026-04-24T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-9quud2mac","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T16:00:00.000Z","end":"2026-04-24T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-28sgw7r83","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T16:15:00.000Z","end":"2026-04-24T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-6gri49fgv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T16:30:00.000Z","end":"2026-04-24T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-ha7lru7bu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T16:45:00.000Z","end":"2026-04-24T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-3ojde7yv8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T17:00:00.000Z","end":"2026-04-24T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-pq0vka5ep","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T17:15:00.000Z","end":"2026-04-24T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-s44ncapdv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T17:30:00.000Z","end":"2026-04-24T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-97fb3alen","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T17:45:00.000Z","end":"2026-04-24T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-o3cuh4sjw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T18:00:00.000Z","end":"2026-04-24T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085852-r3540xvcl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T18:15:00.000Z","end":"2026-04-24T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.852Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-mscohmqqq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T18:30:00.000Z","end":"2026-04-24T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-y5nax8iw8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T18:45:00.000Z","end":"2026-04-24T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-8hnqvjii4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T19:00:00.000Z","end":"2026-04-24T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-c6g36h0kp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-24T19:15:00.000Z","end":"2026-04-24T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-klicdrgee","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T19:30:00.000Z","end":"2026-04-24T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-zfwxoodsv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-24T19:45:00.000Z","end":"2026-04-24T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-3o5m9mbvb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T12:00:00.000Z","end":"2026-04-27T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-y829rao6y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T12:15:00.000Z","end":"2026-04-27T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-qcvk2b0ek","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T12:30:00.000Z","end":"2026-04-27T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-lnmwzbilf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T12:45:00.000Z","end":"2026-04-27T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-gcz76wzaf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T13:00:00.000Z","end":"2026-04-27T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-2akwb454h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T13:15:00.000Z","end":"2026-04-27T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-s9tk42ox8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T13:30:00.000Z","end":"2026-04-27T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-pd1rijatm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T13:45:00.000Z","end":"2026-04-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-usfmylfoq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T14:00:00.000Z","end":"2026-04-27T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-l3470o1nc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T14:15:00.000Z","end":"2026-04-27T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-7k3tfvktw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T14:30:00.000Z","end":"2026-04-27T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-1w5cy7u6d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T14:45:00.000Z","end":"2026-04-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-bco81t8tl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T15:00:00.000Z","end":"2026-04-27T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-u0syjrxd2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T15:15:00.000Z","end":"2026-04-27T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-dyxnj8fus","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T15:30:00.000Z","end":"2026-04-27T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-aaxv0i1rh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T15:45:00.000Z","end":"2026-04-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-tcyz01hhs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T16:00:00.000Z","end":"2026-04-27T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-lssc5bcbz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T16:15:00.000Z","end":"2026-04-27T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-xt05h57j8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T16:30:00.000Z","end":"2026-04-27T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-ks221tl88","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T16:45:00.000Z","end":"2026-04-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-2c3yfovim","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T17:00:00.000Z","end":"2026-04-27T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-7sfkuv3nq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T17:15:00.000Z","end":"2026-04-27T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-k488k2ypj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T17:30:00.000Z","end":"2026-04-27T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-jsav16p05","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T17:45:00.000Z","end":"2026-04-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-t8e99ysbb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T18:00:00.000Z","end":"2026-04-27T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-tao4r8clo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T18:15:00.000Z","end":"2026-04-27T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-sbol9mrvw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T18:30:00.000Z","end":"2026-04-27T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-mqpvadq6a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T18:45:00.000Z","end":"2026-04-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085853-97blc2kzc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T19:00:00.000Z","end":"2026-04-27T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.853Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-aykh35m56","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-27T19:15:00.000Z","end":"2026-04-27T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-k99lpn20d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T19:30:00.000Z","end":"2026-04-27T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-bf8ru478l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-27T19:45:00.000Z","end":"2026-04-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-7u2iav6k3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T12:00:00.000Z","end":"2026-04-28T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.565Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-lig2ffy5h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T12:15:00.000Z","end":"2026-04-28T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-8jjaulh8i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T12:30:00.000Z","end":"2026-04-28T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-4ky97upd1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T12:45:00.000Z","end":"2026-04-28T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-v9iq5n4yl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-28T13:00:00.000Z","end":"2026-04-28T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-33x7dr3m5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T13:15:00.000Z","end":"2026-04-28T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-eewyneq7z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-28T13:30:00.000Z","end":"2026-04-28T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-3531z9ncj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T13:45:00.000Z","end":"2026-04-28T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-of3bytzbc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T14:00:00.000Z","end":"2026-04-28T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-nkx3pmksi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T14:15:00.000Z","end":"2026-04-28T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-ci1c3hhbn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T14:30:00.000Z","end":"2026-04-28T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-y4voas3au","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T14:45:00.000Z","end":"2026-04-28T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-8nvmllzib","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-28T15:00:00.000Z","end":"2026-04-28T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-z8ae4vkwm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T15:15:00.000Z","end":"2026-04-28T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-653n6alcn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T15:30:00.000Z","end":"2026-04-28T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-xsjzp6m7c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-28T15:45:00.000Z","end":"2026-04-28T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-el5jza7yn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T16:00:00.000Z","end":"2026-04-28T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-t49wk9lls","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T16:15:00.000Z","end":"2026-04-28T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-1mbhz3575","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T16:30:00.000Z","end":"2026-04-28T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-s1bkk1j7q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T16:45:00.000Z","end":"2026-04-28T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-1f8416ivt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T17:00:00.000Z","end":"2026-04-28T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-fwj4mroq9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T17:15:00.000Z","end":"2026-04-28T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-alpfzmdbl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T17:30:00.000Z","end":"2026-04-28T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-0sc5gzdi3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-28T17:45:00.000Z","end":"2026-04-28T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-yyxcy8vbe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T18:00:00.000Z","end":"2026-04-28T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-j3ygi38ar","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T18:15:00.000Z","end":"2026-04-28T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-lj6z3p255","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-28T18:30:00.000Z","end":"2026-04-28T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-iszkozmmd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-28T18:45:00.000Z","end":"2026-04-28T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-vw1o4pg8u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T19:00:00.000Z","end":"2026-04-28T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-w3la00kml","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T19:15:00.000Z","end":"2026-04-28T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-o4szocl5y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-28T19:30:00.000Z","end":"2026-04-28T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-efpawa9h7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-28T19:45:00.000Z","end":"2026-04-28T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.854Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-43zpvxh1f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T12:00:00.000Z","end":"2026-04-29T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085854-u0c4p1vkj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T12:15:00.000Z","end":"2026-04-29T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-2no90pl1w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T12:30:00.000Z","end":"2026-04-29T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.477Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-yfjy4qi6p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T12:45:00.000Z","end":"2026-04-29T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-u9h6yien0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T13:00:00.000Z","end":"2026-04-29T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-bywi5m2ta","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T13:15:00.000Z","end":"2026-04-29T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-xxybure1t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T13:30:00.000Z","end":"2026-04-29T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-ac5wse61d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T13:45:00.000Z","end":"2026-04-29T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-kh7btnex9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T14:00:00.000Z","end":"2026-04-29T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.855Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-hitw8bqp0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T14:15:00.000Z","end":"2026-04-29T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.409Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-9soqv4zxb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T14:30:00.000Z","end":"2026-04-29T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-sfivwks93","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T14:45:00.000Z","end":"2026-04-29T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-wd3lxxp5y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T15:00:00.000Z","end":"2026-04-29T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-378lhrx7b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T15:15:00.000Z","end":"2026-04-29T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-v0cl18rfi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T15:30:00.000Z","end":"2026-04-29T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.855Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-mlbe4q54c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T15:45:00.000Z","end":"2026-04-29T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-77cb5dh0c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T16:00:00.000Z","end":"2026-04-29T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.855Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-iij6i3c33","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T16:15:00.000Z","end":"2026-04-29T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.855Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085855-dg0ea23db","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T16:30:00.000Z","end":"2026-04-29T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.855Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-uhwj8o7zo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T16:45:00.000Z","end":"2026-04-29T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.564Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-pwhr3n941","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T17:00:00.000Z","end":"2026-04-29T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-zqqhzdmjy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T17:15:00.000Z","end":"2026-04-29T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-d8xw6eg03","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T17:30:00.000Z","end":"2026-04-29T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-s8x454nkf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T17:45:00.000Z","end":"2026-04-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-byf53zzkz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T18:00:00.000Z","end":"2026-04-29T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-170b6m9dh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T18:15:00.000Z","end":"2026-04-29T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-v4t3m898h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T18:30:00.000Z","end":"2026-04-29T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-nf4qx4g7x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T18:45:00.000Z","end":"2026-04-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-gue4sgtk0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T19:00:00.000Z","end":"2026-04-29T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085856-q1czg5096","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T19:15:00.000Z","end":"2026-04-29T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.856Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-a5ns79o9h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-29T19:30:00.000Z","end":"2026-04-29T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-ich8bwe6m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-29T19:45:00.000Z","end":"2026-04-29T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-szhsib0xe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T12:00:00.000Z","end":"2026-04-30T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-mlp9so26m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T12:15:00.000Z","end":"2026-04-30T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-jsa5c7qpn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T12:30:00.000Z","end":"2026-04-30T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-syigg35le","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T12:45:00.000Z","end":"2026-04-30T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-z1nu5gaq3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T13:00:00.000Z","end":"2026-04-30T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-y45kzfbof","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T13:15:00.000Z","end":"2026-04-30T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-oo0l60zba","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T13:30:00.000Z","end":"2026-04-30T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-vq0c1yrq6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T13:45:00.000Z","end":"2026-04-30T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-qm6vlspbj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T14:00:00.000Z","end":"2026-04-30T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-ir5jgm8b9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T14:15:00.000Z","end":"2026-04-30T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-22yp0p90l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T14:30:00.000Z","end":"2026-04-30T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-i8sy2rxyk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T14:45:00.000Z","end":"2026-04-30T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-8kp4rtwwg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T15:00:00.000Z","end":"2026-04-30T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-m2swm1mwk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T15:15:00.000Z","end":"2026-04-30T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-v0bl21b75","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T15:30:00.000Z","end":"2026-04-30T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-l0p6ge9vl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T15:45:00.000Z","end":"2026-04-30T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-n4sqidf38","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T16:00:00.000Z","end":"2026-04-30T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-rvxta2y1n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T16:15:00.000Z","end":"2026-04-30T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.496Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-qs3v19xrc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T16:30:00.000Z","end":"2026-04-30T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-bznn77vlp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T16:45:00.000Z","end":"2026-04-30T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-wcqljik59","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T17:00:00.000Z","end":"2026-04-30T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-58msuj09c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T17:15:00.000Z","end":"2026-04-30T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.517Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-ktfwy5xqo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T17:30:00.000Z","end":"2026-04-30T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-gwfxc1ywx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T17:45:00.000Z","end":"2026-04-30T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-fxlj619u3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T18:00:00.000Z","end":"2026-04-30T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-lyw96wkmx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T18:15:00.000Z","end":"2026-04-30T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-n5z1i09xh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T18:30:00.000Z","end":"2026-04-30T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-ltdbxc0pr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T18:45:00.000Z","end":"2026-04-30T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-qvtz7j0r2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T19:00:00.000Z","end":"2026-04-30T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-3q36eran0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T19:15:00.000Z","end":"2026-04-30T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085857-docc4jumh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-04-30T19:30:00.000Z","end":"2026-04-30T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.857Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-iqelzvomn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-04-30T19:45:00.000Z","end":"2026-04-30T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.403Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-i293kk3fk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T12:00:00.000Z","end":"2026-05-01T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-81im1j1ga","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T12:15:00.000Z","end":"2026-05-01T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-1vq9xyoy5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T12:30:00.000Z","end":"2026-05-01T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.407Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-ublde3aql","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T12:45:00.000Z","end":"2026-05-01T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-rv1isq4pd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T13:00:00.000Z","end":"2026-05-01T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-zpqkdu07j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T13:15:00.000Z","end":"2026-05-01T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-yugvuoqpn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T13:30:00.000Z","end":"2026-05-01T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-caps7c06k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T13:45:00.000Z","end":"2026-05-01T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-vkt5k2dtk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T14:00:00.000Z","end":"2026-05-01T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-pks7jc6ss","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T14:15:00.000Z","end":"2026-05-01T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-7bm4eq1n4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T14:30:00.000Z","end":"2026-05-01T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-m4dd3mqrz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T14:45:00.000Z","end":"2026-05-01T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-jti7s4pvf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T15:00:00.000Z","end":"2026-05-01T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-jus8jjmku","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T15:15:00.000Z","end":"2026-05-01T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-gp7f3ci6z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T15:30:00.000Z","end":"2026-05-01T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-e1yavu5z4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T15:45:00.000Z","end":"2026-05-01T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-srjr271ca","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T16:00:00.000Z","end":"2026-05-01T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-d3zh3qhd0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T16:15:00.000Z","end":"2026-05-01T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.450Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-dcj9dga2r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T16:30:00.000Z","end":"2026-05-01T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-tbaeb70vq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T16:45:00.000Z","end":"2026-05-01T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-d7wleo0er","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T17:00:00.000Z","end":"2026-05-01T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-yz570pnah","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T17:15:00.000Z","end":"2026-05-01T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-ea0ybi71z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T17:30:00.000Z","end":"2026-05-01T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-s3634idwu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T17:45:00.000Z","end":"2026-05-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-xyukc6rkx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T18:00:00.000Z","end":"2026-05-01T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-2j86s0chf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T18:15:00.000Z","end":"2026-05-01T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-lex2yy8a3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T18:30:00.000Z","end":"2026-05-01T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-3zxrprhtz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T18:45:00.000Z","end":"2026-05-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-m484oorxw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T19:00:00.000Z","end":"2026-05-01T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.402Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-r3tygb4xb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-01T19:15:00.000Z","end":"2026-05-01T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.858Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-tcy0od61p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T19:30:00.000Z","end":"2026-05-01T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-wxakkmdi5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-01T19:45:00.000Z","end":"2026-05-01T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-ghgujuo9l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T12:00:00.000Z","end":"2026-05-04T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085858-tt63qq8mp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T12:15:00.000Z","end":"2026-05-04T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-0xl67zr7f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T12:30:00.000Z","end":"2026-05-04T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.859Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-etgyqjb4m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T12:45:00.000Z","end":"2026-05-04T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.859Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-nm199yg8e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T13:00:00.000Z","end":"2026-05-04T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.859Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-5pf6nf8jc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T13:15:00.000Z","end":"2026-05-04T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.859Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-zd7y6zzer","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T13:30:00.000Z","end":"2026-05-04T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.859Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-se175md3u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T13:45:00.000Z","end":"2026-05-04T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-mm9vd1lro","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T14:00:00.000Z","end":"2026-05-04T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.859Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-2oy60b6cg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T14:15:00.000Z","end":"2026-05-04T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-0ft8ng6jw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T14:30:00.000Z","end":"2026-05-04T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.859Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-lnct43xvi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T14:45:00.000Z","end":"2026-05-04T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.859Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-js08dl7jp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T15:00:00.000Z","end":"2026-05-04T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-6qya6c8ds","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T15:15:00.000Z","end":"2026-05-04T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085859-jscnp9uh4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T15:30:00.000Z","end":"2026-05-04T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-soiojl4v0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T15:45:00.000Z","end":"2026-05-04T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.860Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-0mrv5404o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T16:00:00.000Z","end":"2026-05-04T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.860Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-5i4bkuzeu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T16:15:00.000Z","end":"2026-05-04T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-is6gpynwo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T16:30:00.000Z","end":"2026-05-04T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-js3jj3hy7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T16:45:00.000Z","end":"2026-05-04T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-77y0ewvdf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T17:00:00.000Z","end":"2026-05-04T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-8spmuj9lt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T17:15:00.000Z","end":"2026-05-04T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-hz7nqkxw0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T17:30:00.000Z","end":"2026-05-04T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-ef6mqjpss","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T17:45:00.000Z","end":"2026-05-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.441Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-wegyv3cbr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T18:00:00.000Z","end":"2026-05-04T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-bj1rup1la","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T18:15:00.000Z","end":"2026-05-04T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-g2ldaufxz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T18:30:00.000Z","end":"2026-05-04T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-03sl68nb8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T18:45:00.000Z","end":"2026-05-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-ub94n8qqg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T19:00:00.000Z","end":"2026-05-04T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-uio5vgn6j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T19:15:00.000Z","end":"2026-05-04T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-y2en8l2xi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-04T19:30:00.000Z","end":"2026-05-04T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-g9xry9vf4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-04T19:45:00.000Z","end":"2026-05-04T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.860Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-xhbfj8gws","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T12:00:00.000Z","end":"2026-05-05T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.860Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-mcoy1mhfj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T12:15:00.000Z","end":"2026-05-05T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.860Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-9t5l23pmz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T12:30:00.000Z","end":"2026-05-05T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-psggfq2u0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T12:45:00.000Z","end":"2026-05-05T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-bsiygvi0c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T13:00:00.000Z","end":"2026-05-05T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-egz0f75nn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T13:15:00.000Z","end":"2026-05-05T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-eguzf7b88","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T13:30:00.000Z","end":"2026-05-05T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.860Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-78tfonkrz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T13:45:00.000Z","end":"2026-05-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-9khod68dz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T14:00:00.000Z","end":"2026-05-05T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.860Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-go0kv0csz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T14:15:00.000Z","end":"2026-05-05T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-qs1thn70m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T14:30:00.000Z","end":"2026-05-05T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-lbefembf6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T14:45:00.000Z","end":"2026-05-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-7c4535pnn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T15:00:00.000Z","end":"2026-05-05T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085860-dhoujlfvc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T15:15:00.000Z","end":"2026-05-05T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.860Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-yy1btn3rh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T15:30:00.000Z","end":"2026-05-05T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-9nh5akzms","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T15:45:00.000Z","end":"2026-05-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-e4y1wrbpi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T16:00:00.000Z","end":"2026-05-05T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-jwt3443pr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T16:15:00.000Z","end":"2026-05-05T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-qe3zva0z8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T16:30:00.000Z","end":"2026-05-05T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.491Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-vx10qer9s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T16:45:00.000Z","end":"2026-05-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-a98148jb2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T17:00:00.000Z","end":"2026-05-05T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-dx8f0w5r6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T17:15:00.000Z","end":"2026-05-05T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.501Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-um7xqi876","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T17:30:00.000Z","end":"2026-05-05T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-9s3q2ue8e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T17:45:00.000Z","end":"2026-05-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-1ipcvpnl1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T18:00:00.000Z","end":"2026-05-05T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-lx6f4p4tx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T18:15:00.000Z","end":"2026-05-05T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-lxceeynby","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T18:30:00.000Z","end":"2026-05-05T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-kkzafcdr8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T18:45:00.000Z","end":"2026-05-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-fg3cc2dvx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T19:00:00.000Z","end":"2026-05-05T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-nytp2zat0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T19:15:00.000Z","end":"2026-05-05T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-ep6j20yve","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-05T19:30:00.000Z","end":"2026-05-05T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-ogrs4vzhl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-05T19:45:00.000Z","end":"2026-05-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-tnhjlf5av","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T12:00:00.000Z","end":"2026-05-06T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-7gyklrtpr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T12:15:00.000Z","end":"2026-05-06T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-2xqwkaqkz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T12:30:00.000Z","end":"2026-05-06T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-7x3pk9xbp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T12:45:00.000Z","end":"2026-05-06T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-68iq6s0h4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T13:00:00.000Z","end":"2026-05-06T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-xa9mxpcyt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T13:15:00.000Z","end":"2026-05-06T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-u7hr8jae0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T13:30:00.000Z","end":"2026-05-06T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.401Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-glffqkvom","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T13:45:00.000Z","end":"2026-05-06T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-o9j8oh16w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T14:00:00.000Z","end":"2026-05-06T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-1moojnbqf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T14:15:00.000Z","end":"2026-05-06T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-xzo2xte21","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T14:30:00.000Z","end":"2026-05-06T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-2gdacsp72","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T14:45:00.000Z","end":"2026-05-06T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.861Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-82bvcpswu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T15:00:00.000Z","end":"2026-05-06T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-ruk597nb5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T15:15:00.000Z","end":"2026-05-06T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085861-10yfm3zqq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T15:30:00.000Z","end":"2026-05-06T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085862-99jp20b3q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T15:45:00.000Z","end":"2026-05-06T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085862-wzes07xpw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T16:00:00.000Z","end":"2026-05-06T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085862-tydi6uoov","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T16:15:00.000Z","end":"2026-05-06T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085862-m4a59wc7w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T16:30:00.000Z","end":"2026-05-06T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.862Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085862-1908mywg8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T16:45:00.000Z","end":"2026-05-06T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085862-0cdqtfg2f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T17:00:00.000Z","end":"2026-05-06T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.862Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085862-uebt6aude","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T17:15:00.000Z","end":"2026-05-06T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085862-gf8ek4m4n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T17:30:00.000Z","end":"2026-05-06T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.862Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-gpabhkoq4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T17:45:00.000Z","end":"2026-05-06T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-j13y5ce67","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T18:00:00.000Z","end":"2026-05-06T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-6rdopg4oy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T18:15:00.000Z","end":"2026-05-06T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-vw8vowd3t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T18:30:00.000Z","end":"2026-05-06T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-67wfa4eoz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T18:45:00.000Z","end":"2026-05-06T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-8oaco3url","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T19:00:00.000Z","end":"2026-05-06T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-d9bo19ob2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-06T19:15:00.000Z","end":"2026-05-06T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-i20ogd65d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T19:30:00.000Z","end":"2026-05-06T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-5087n51a9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-06T19:45:00.000Z","end":"2026-05-06T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-pm8j2rrim","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-07T12:00:00.000Z","end":"2026-05-07T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-1vb0wi91v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T12:15:00.000Z","end":"2026-05-07T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-rlluhdk2d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T12:30:00.000Z","end":"2026-05-07T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-q2o1kcmcq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T12:45:00.000Z","end":"2026-05-07T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-bi0xff4iz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T13:00:00.000Z","end":"2026-05-07T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-198famftx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-07T13:15:00.000Z","end":"2026-05-07T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.573Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-4gupdmqhc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-07T13:30:00.000Z","end":"2026-05-07T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-6sb7ciabe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T13:45:00.000Z","end":"2026-05-07T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-d7c1we264","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T14:00:00.000Z","end":"2026-05-07T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-s8jyutgm2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-07T14:15:00.000Z","end":"2026-05-07T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-z0lx5hg69","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T14:30:00.000Z","end":"2026-05-07T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-25g0nhejj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T14:45:00.000Z","end":"2026-05-07T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-tsnfycl77","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T15:00:00.000Z","end":"2026-05-07T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-ixcjm7i30","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T15:15:00.000Z","end":"2026-05-07T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085863-kwoqdik84","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T15:30:00.000Z","end":"2026-05-07T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.863Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-nytxda948","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T15:45:00.000Z","end":"2026-05-07T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-ogp5ggkwz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T16:00:00.000Z","end":"2026-05-07T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-9b5rd826p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T16:15:00.000Z","end":"2026-05-07T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-zz6rfbb3h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T16:30:00.000Z","end":"2026-05-07T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-fvd3c76f5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T16:45:00.000Z","end":"2026-05-07T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-o0z56u2mk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T17:00:00.000Z","end":"2026-05-07T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-j7suw29at","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T17:15:00.000Z","end":"2026-05-07T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-qhg80c82r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T17:30:00.000Z","end":"2026-05-07T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-lhwqdo039","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T17:45:00.000Z","end":"2026-05-07T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-j55t3no97","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T18:00:00.000Z","end":"2026-05-07T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-cbg4gf60a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T18:15:00.000Z","end":"2026-05-07T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-e0i5smxxi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T18:30:00.000Z","end":"2026-05-07T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-lxgubp329","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T18:45:00.000Z","end":"2026-05-07T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-xujfdppij","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T19:00:00.000Z","end":"2026-05-07T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-tgjkrt5ml","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T19:15:00.000Z","end":"2026-05-07T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-ekmgb8ufk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T19:30:00.000Z","end":"2026-05-07T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-qprxgp07c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-07T19:45:00.000Z","end":"2026-05-07T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-0jplkyrs9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T12:00:00.000Z","end":"2026-05-08T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-2j3avzuvm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T12:15:00.000Z","end":"2026-05-08T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-o84rrpfj7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T12:30:00.000Z","end":"2026-05-08T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-9q4dz6lnj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T12:45:00.000Z","end":"2026-05-08T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-ov838u5y8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T13:00:00.000Z","end":"2026-05-08T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-uafn59eec","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T13:15:00.000Z","end":"2026-05-08T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.472Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-xf7tvv2vw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T13:30:00.000Z","end":"2026-05-08T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-vof7cxky8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T13:45:00.000Z","end":"2026-05-08T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-hekayjj25","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T14:00:00.000Z","end":"2026-05-08T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-tz2ldeqdl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T14:15:00.000Z","end":"2026-05-08T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-ckl6ydudq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T14:30:00.000Z","end":"2026-05-08T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-l8djqc02y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T14:45:00.000Z","end":"2026-05-08T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-uand1vgjc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T15:00:00.000Z","end":"2026-05-08T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-v8tv4bkew","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T15:15:00.000Z","end":"2026-05-08T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-olplst6ox","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T15:30:00.000Z","end":"2026-05-08T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-6dgagxm74","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T15:45:00.000Z","end":"2026-05-08T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-tvqnpizo8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T16:00:00.000Z","end":"2026-05-08T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-fkplq557f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T16:15:00.000Z","end":"2026-05-08T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085864-84u8yee1s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T16:30:00.000Z","end":"2026-05-08T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.864Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-snvnne7jf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T16:45:00.000Z","end":"2026-05-08T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-9q1n7qff9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T17:00:00.000Z","end":"2026-05-08T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-wdi2j1t9m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T17:15:00.000Z","end":"2026-05-08T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-qmsr4kqbx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T17:30:00.000Z","end":"2026-05-08T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-k0wlc1dz7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T17:45:00.000Z","end":"2026-05-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.470Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-e8ota2otx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T18:00:00.000Z","end":"2026-05-08T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-nr7mqnuej","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T18:15:00.000Z","end":"2026-05-08T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-3iydqn0on","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T18:30:00.000Z","end":"2026-05-08T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-pb8ks8lek","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T18:45:00.000Z","end":"2026-05-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-z43htxxxg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T19:00:00.000Z","end":"2026-05-08T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-s7ji4v628","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-08T19:15:00.000Z","end":"2026-05-08T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.528Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-t5kxpqtn5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T19:30:00.000Z","end":"2026-05-08T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-f9zj0jxdu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-08T19:45:00.000Z","end":"2026-05-08T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-wy1nj8uyb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T12:00:00.000Z","end":"2026-05-11T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.405Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-6bvg81us6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T12:15:00.000Z","end":"2026-05-11T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-9gzo50frf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T12:30:00.000Z","end":"2026-05-11T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-7gpj91qf4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T12:45:00.000Z","end":"2026-05-11T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.596Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-vwkf7jmdr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T13:00:00.000Z","end":"2026-05-11T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-d6q4mm293","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-11T13:15:00.000Z","end":"2026-05-11T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-6spg08zw1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T13:30:00.000Z","end":"2026-05-11T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-wmg91c4ix","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T13:45:00.000Z","end":"2026-05-11T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-wu34jeijh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-11T14:00:00.000Z","end":"2026-05-11T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-11zexfx9b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T14:15:00.000Z","end":"2026-05-11T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-p3e56qsy8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T14:30:00.000Z","end":"2026-05-11T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-eet049724","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T14:45:00.000Z","end":"2026-05-11T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-j0y32kcpw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T15:00:00.000Z","end":"2026-05-11T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-aw7yusyu1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T15:15:00.000Z","end":"2026-05-11T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.408Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-2hb7bj23y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-11T15:30:00.000Z","end":"2026-05-11T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-2v2ab2jhr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T15:45:00.000Z","end":"2026-05-11T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-kdn7azxp3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-11T16:00:00.000Z","end":"2026-05-11T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-7ivz3q0ji","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T16:15:00.000Z","end":"2026-05-11T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-6bb262w3x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T16:30:00.000Z","end":"2026-05-11T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-w1vruwvm8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-11T16:45:00.000Z","end":"2026-05-11T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.865Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-ut5lp7708","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T17:00:00.000Z","end":"2026-05-11T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085865-rvpvk9zzq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T17:15:00.000Z","end":"2026-05-11T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-ucis4m94a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T17:30:00.000Z","end":"2026-05-11T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-3xt3p1z6d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T17:45:00.000Z","end":"2026-05-11T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-gbx8qfmo3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T18:00:00.000Z","end":"2026-05-11T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-ypr7bshjy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-11T18:15:00.000Z","end":"2026-05-11T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-zpdzzldnx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T18:30:00.000Z","end":"2026-05-11T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-h4rbmgk6o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-11T18:45:00.000Z","end":"2026-05-11T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-ze9vjj852","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T19:00:00.000Z","end":"2026-05-11T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-mv55fqugh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T19:15:00.000Z","end":"2026-05-11T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-fsu6ipcu0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-11T19:30:00.000Z","end":"2026-05-11T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-4t8o0ovvt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-11T19:45:00.000Z","end":"2026-05-11T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-zq8jv4mum","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T12:00:00.000Z","end":"2026-05-12T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-3m1c8ehv2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T12:15:00.000Z","end":"2026-05-12T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-7q196asbw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T12:30:00.000Z","end":"2026-05-12T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-swa8sg4dk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T12:45:00.000Z","end":"2026-05-12T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-i3ngmtqvy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T13:00:00.000Z","end":"2026-05-12T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.606Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-prwu5g2pe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T13:15:00.000Z","end":"2026-05-12T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-0u5yxlmm0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T13:30:00.000Z","end":"2026-05-12T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-qzulla2n9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T13:45:00.000Z","end":"2026-05-12T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-h1xdqwr2o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T14:00:00.000Z","end":"2026-05-12T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-1oahafea3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T14:15:00.000Z","end":"2026-05-12T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-n0yagsy0s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T14:30:00.000Z","end":"2026-05-12T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-87juxhvn3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T14:45:00.000Z","end":"2026-05-12T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-fafx6spmy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T15:00:00.000Z","end":"2026-05-12T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-kq19gdmyi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T15:15:00.000Z","end":"2026-05-12T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-zba59td7f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T15:30:00.000Z","end":"2026-05-12T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-73h23ql8i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T15:45:00.000Z","end":"2026-05-12T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-984zlpzqv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T16:00:00.000Z","end":"2026-05-12T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-ytrmkjpra","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T16:15:00.000Z","end":"2026-05-12T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-lyzv961eb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T16:30:00.000Z","end":"2026-05-12T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-95kkrzi7c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T16:45:00.000Z","end":"2026-05-12T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-z7nwm04lb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T17:00:00.000Z","end":"2026-05-12T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-wtitbutbu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T17:15:00.000Z","end":"2026-05-12T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-ykvl944l9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T17:30:00.000Z","end":"2026-05-12T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-ys2l68l03","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T17:45:00.000Z","end":"2026-05-12T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.866Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085866-htgwr1sak","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T18:00:00.000Z","end":"2026-05-12T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-ud5p69is6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T18:15:00.000Z","end":"2026-05-12T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.437Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-qs727lghl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T18:30:00.000Z","end":"2026-05-12T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-kerwmwd3t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T18:45:00.000Z","end":"2026-05-12T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-crdrzgeko","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T19:00:00.000Z","end":"2026-05-12T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-kh8v5yle2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-12T19:15:00.000Z","end":"2026-05-12T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-6254nxkk9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T19:30:00.000Z","end":"2026-05-12T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-w77bwx95m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-12T19:45:00.000Z","end":"2026-05-12T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.519Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-7olji8ep9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T12:00:00.000Z","end":"2026-05-13T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-uga9h9fya","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T12:15:00.000Z","end":"2026-05-13T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-nt7zvqsfc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T12:30:00.000Z","end":"2026-05-13T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-dhqb8qkdp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T12:45:00.000Z","end":"2026-05-13T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.558Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-wn9syatvp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T13:00:00.000Z","end":"2026-05-13T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-dnkowzy8e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T13:15:00.000Z","end":"2026-05-13T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-bn4u8ddt0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T13:30:00.000Z","end":"2026-05-13T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-jc2s7zi57","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T13:45:00.000Z","end":"2026-05-13T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-o08jkgt29","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T14:00:00.000Z","end":"2026-05-13T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-4xrv9aj38","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T14:15:00.000Z","end":"2026-05-13T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-6qfrwpovy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T14:30:00.000Z","end":"2026-05-13T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-affn1dxml","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T14:45:00.000Z","end":"2026-05-13T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-pstfudqji","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T15:00:00.000Z","end":"2026-05-13T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-sqfzwxv58","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T15:15:00.000Z","end":"2026-05-13T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-bgy920vko","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T15:30:00.000Z","end":"2026-05-13T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-h5janc2r1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T15:45:00.000Z","end":"2026-05-13T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-eoeh138p5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T16:00:00.000Z","end":"2026-05-13T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-tk8gkpouw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T16:15:00.000Z","end":"2026-05-13T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-rkr519lc8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T16:30:00.000Z","end":"2026-05-13T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-n4ibfvofl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T16:45:00.000Z","end":"2026-05-13T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-ahab4gcj1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T17:00:00.000Z","end":"2026-05-13T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-rx2d5xhbo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T17:15:00.000Z","end":"2026-05-13T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-04464jobb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T17:30:00.000Z","end":"2026-05-13T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-vgwf0gjdx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T17:45:00.000Z","end":"2026-05-13T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-ec9tsorzz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T18:00:00.000Z","end":"2026-05-13T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-x0yw0h2m5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T18:15:00.000Z","end":"2026-05-13T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-8g6ydynld","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T18:30:00.000Z","end":"2026-05-13T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-5c7j5betw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T18:45:00.000Z","end":"2026-05-13T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-vi8oqxelo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T19:00:00.000Z","end":"2026-05-13T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085867-z8pxko100","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-13T19:15:00.000Z","end":"2026-05-13T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.867Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-xmmjzyw1z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T19:30:00.000Z","end":"2026-05-13T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-58kyw7ggc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-13T19:45:00.000Z","end":"2026-05-13T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-9n2kmw48b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T12:00:00.000Z","end":"2026-05-14T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-dkc8tlb0l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T12:15:00.000Z","end":"2026-05-14T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-p3sq0vucy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T12:30:00.000Z","end":"2026-05-14T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.868Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-wh6kv9amh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T12:45:00.000Z","end":"2026-05-14T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.868Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-uqtre3i68","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T13:00:00.000Z","end":"2026-05-14T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-km3fh7ufc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T13:15:00.000Z","end":"2026-05-14T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085868-ltdbyo3j0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T13:30:00.000Z","end":"2026-05-14T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.868Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-dp3l256qq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T13:45:00.000Z","end":"2026-05-14T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-toydjy2md","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T14:00:00.000Z","end":"2026-05-14T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.498Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-2u6xwp0bf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T14:15:00.000Z","end":"2026-05-14T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-sp4lrec6l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T14:30:00.000Z","end":"2026-05-14T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-hewxwo8fk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T14:45:00.000Z","end":"2026-05-14T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-9fgf6mej1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T15:00:00.000Z","end":"2026-05-14T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-vrdagqay2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T15:15:00.000Z","end":"2026-05-14T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-gaxjaq6vq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T15:30:00.000Z","end":"2026-05-14T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-be4dn02jr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T15:45:00.000Z","end":"2026-05-14T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-mfzjelz7g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T16:00:00.000Z","end":"2026-05-14T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-rdusv1y5a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T16:15:00.000Z","end":"2026-05-14T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-6obudv224","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T16:30:00.000Z","end":"2026-05-14T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-zactc079m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T16:45:00.000Z","end":"2026-05-14T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-gn8lup5nc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T17:00:00.000Z","end":"2026-05-14T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-37h1wtspr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T17:15:00.000Z","end":"2026-05-14T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-7dj400exv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T17:30:00.000Z","end":"2026-05-14T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-o7x6mgxc7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T17:45:00.000Z","end":"2026-05-14T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-jk17bjpoe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T18:00:00.000Z","end":"2026-05-14T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-5ui5b7hs1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T18:15:00.000Z","end":"2026-05-14T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-ysvy1qix0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T18:30:00.000Z","end":"2026-05-14T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.582Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-704uxtu72","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T18:45:00.000Z","end":"2026-05-14T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085869-j74ni5mcs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T19:00:00.000Z","end":"2026-05-14T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.869Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-iie1k79rp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T19:15:00.000Z","end":"2026-05-14T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-c3b97wwqu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-14T19:30:00.000Z","end":"2026-05-14T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.870Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-j5nqd98n7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-14T19:45:00.000Z","end":"2026-05-14T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.397Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-vnuh6z1hi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T12:00:00.000Z","end":"2026-05-15T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.499Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-wq9rm3mgs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-15T12:15:00.000Z","end":"2026-05-15T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.870Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-6qu06punl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-15T12:30:00.000Z","end":"2026-05-15T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.870Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-p6c1wmeu8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T12:45:00.000Z","end":"2026-05-15T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.507Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-7fj5l9gaz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-15T13:00:00.000Z","end":"2026-05-15T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.870Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-onwcwct7o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T13:15:00.000Z","end":"2026-05-15T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-6sqnvmpy9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-15T13:30:00.000Z","end":"2026-05-15T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.870Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-ps368spez","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T13:45:00.000Z","end":"2026-05-15T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.398Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-1wzw5vl8l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-15T14:00:00.000Z","end":"2026-05-15T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.870Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-gl9ist3my","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T14:15:00.000Z","end":"2026-05-15T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-rfaiwdyhh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T14:30:00.000Z","end":"2026-05-15T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-hrnik0ldk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-15T14:45:00.000Z","end":"2026-05-15T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.870Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-2iwwmk0ua","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T15:00:00.000Z","end":"2026-05-15T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-fmz7bka41","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T15:15:00.000Z","end":"2026-05-15T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-t8zix3aje","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T15:30:00.000Z","end":"2026-05-15T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-xjkvm53je","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T15:45:00.000Z","end":"2026-05-15T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.605Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-otbgav3gx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T16:00:00.000Z","end":"2026-05-15T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-t0z8zlben","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T16:15:00.000Z","end":"2026-05-15T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-qcty36znn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T16:30:00.000Z","end":"2026-05-15T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-y9c5b53y7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T16:45:00.000Z","end":"2026-05-15T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-6suveqrqu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T17:00:00.000Z","end":"2026-05-15T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-lugxoba8x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T17:15:00.000Z","end":"2026-05-15T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-7gy5nj5gt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T17:30:00.000Z","end":"2026-05-15T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-qh3vlk4o3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T17:45:00.000Z","end":"2026-05-15T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.406Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-98w55lsuz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T18:00:00.000Z","end":"2026-05-15T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-xncav7y1b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-15T18:15:00.000Z","end":"2026-05-15T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.870Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-sqr000xd9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T18:30:00.000Z","end":"2026-05-15T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-9jrudn6s2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T18:45:00.000Z","end":"2026-05-15T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-g5dztw5u8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T19:00:00.000Z","end":"2026-05-15T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.521Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085870-gafs9kscn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T19:15:00.000Z","end":"2026-05-15T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-gprjpldsn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-15T19:30:00.000Z","end":"2026-05-15T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-4at0i7jhj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-15T19:45:00.000Z","end":"2026-05-15T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-u4pfp0ibs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T12:00:00.000Z","end":"2026-05-18T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-2sm18l9rt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T12:15:00.000Z","end":"2026-05-18T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.577Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-lnxrby1zq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T12:30:00.000Z","end":"2026-05-18T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-lwbe4a489","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T12:45:00.000Z","end":"2026-05-18T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-lh578vtel","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T13:00:00.000Z","end":"2026-05-18T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.400Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-bp0dnyq6d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T13:15:00.000Z","end":"2026-05-18T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.399Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-fnla5945d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T13:30:00.000Z","end":"2026-05-18T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-9r515yogt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T13:45:00.000Z","end":"2026-05-18T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-n1n6tljfm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T14:00:00.000Z","end":"2026-05-18T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-rkx8t7o22","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T14:15:00.000Z","end":"2026-05-18T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-qps3fk6qf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T14:30:00.000Z","end":"2026-05-18T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-8pct3ea99","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T14:45:00.000Z","end":"2026-05-18T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-6t0p385h4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T15:00:00.000Z","end":"2026-05-18T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-2kgdkh518","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T15:15:00.000Z","end":"2026-05-18T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-k2nhuudfj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T15:30:00.000Z","end":"2026-05-18T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-2li4sdp3q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T15:45:00.000Z","end":"2026-05-18T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-w2237vj5b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T16:00:00.000Z","end":"2026-05-18T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.574Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-7zrezikjt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T16:15:00.000Z","end":"2026-05-18T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.518Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-8dyrkf6bz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T16:30:00.000Z","end":"2026-05-18T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-y2dzfo7ck","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T16:45:00.000Z","end":"2026-05-18T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-9jpgpqm4t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T17:00:00.000Z","end":"2026-05-18T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-rt2arvnde","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T17:15:00.000Z","end":"2026-05-18T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-gov53890c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T17:30:00.000Z","end":"2026-05-18T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-z9blv1fsw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T17:45:00.000Z","end":"2026-05-18T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-2492d0wrh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T18:00:00.000Z","end":"2026-05-18T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-nemhcq9qh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T18:15:00.000Z","end":"2026-05-18T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-1ze0oksks","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T18:30:00.000Z","end":"2026-05-18T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-cvv5u3gkq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-18T18:45:00.000Z","end":"2026-05-18T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-9polr6ss5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T19:00:00.000Z","end":"2026-05-18T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-d3a40rgr7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T19:15:00.000Z","end":"2026-05-18T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.580Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-nzhfhhku2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T19:30:00.000Z","end":"2026-05-18T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-9fd1lh8nv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-18T19:45:00.000Z","end":"2026-05-18T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-c6syrg8ff","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T12:00:00.000Z","end":"2026-05-19T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085871-4prvszbec","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T12:15:00.000Z","end":"2026-05-19T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.871Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-akw5t590a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T12:30:00.000Z","end":"2026-05-19T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-av9xdbnun","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T12:45:00.000Z","end":"2026-05-19T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-deygme1gk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T13:00:00.000Z","end":"2026-05-19T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-5kd0pscbg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T13:15:00.000Z","end":"2026-05-19T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-m4tbwma7w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T13:30:00.000Z","end":"2026-05-19T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-s5x4kcxlz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T13:45:00.000Z","end":"2026-05-19T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-j3i9ppdb3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T14:00:00.000Z","end":"2026-05-19T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-gif3xcaaq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T14:15:00.000Z","end":"2026-05-19T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.588Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-zlclzxybv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T14:30:00.000Z","end":"2026-05-19T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-3amebfq9i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T14:45:00.000Z","end":"2026-05-19T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-dgaeuag75","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T15:00:00.000Z","end":"2026-05-19T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-muih9vqg0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T15:15:00.000Z","end":"2026-05-19T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-14tbngtfa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T15:30:00.000Z","end":"2026-05-19T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-j8jzcrgom","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T15:45:00.000Z","end":"2026-05-19T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-apico56bv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T16:00:00.000Z","end":"2026-05-19T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-hol4v1fc0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T16:15:00.000Z","end":"2026-05-19T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-k6t2qs2g7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T16:30:00.000Z","end":"2026-05-19T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-stwse5dg2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T16:45:00.000Z","end":"2026-05-19T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-j46zpglaf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T17:00:00.000Z","end":"2026-05-19T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-7mweq64db","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T17:15:00.000Z","end":"2026-05-19T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-nl020yvjz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T17:30:00.000Z","end":"2026-05-19T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-usjj1oepe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T17:45:00.000Z","end":"2026-05-19T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.427Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-2ocmq3j5f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T18:00:00.000Z","end":"2026-05-19T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-b35md31sm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T18:15:00.000Z","end":"2026-05-19T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-kkjlu54p3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T18:30:00.000Z","end":"2026-05-19T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-zw4ys67r8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T18:45:00.000Z","end":"2026-05-19T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-r9xdg1auk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T19:00:00.000Z","end":"2026-05-19T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-r2tdbbrhg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-19T19:15:00.000Z","end":"2026-05-19T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-zzr017d4u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T19:30:00.000Z","end":"2026-05-19T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-foea99idh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-19T19:45:00.000Z","end":"2026-05-19T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-jwjh7lkho","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T12:00:00.000Z","end":"2026-05-20T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-v5wdd0g48","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T12:15:00.000Z","end":"2026-05-20T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.524Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-dy9o7xkx4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T12:30:00.000Z","end":"2026-05-20T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.576Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-ndfmd7rax","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T12:45:00.000Z","end":"2026-05-20T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085872-6kmg2a9ew","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T13:00:00.000Z","end":"2026-05-20T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.872Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-mc653gzad","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T13:15:00.000Z","end":"2026-05-20T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-bdwqr2fng","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T13:30:00.000Z","end":"2026-05-20T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-gqbts9jso","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T13:45:00.000Z","end":"2026-05-20T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-gweesfajp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T14:00:00.000Z","end":"2026-05-20T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.520Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-huunrfrxh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T14:15:00.000Z","end":"2026-05-20T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-odwu7bjhh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T14:30:00.000Z","end":"2026-05-20T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-olh4tn2j5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T14:45:00.000Z","end":"2026-05-20T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-5rvtwiwky","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T15:00:00.000Z","end":"2026-05-20T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-18ihktvqt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T15:15:00.000Z","end":"2026-05-20T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.513Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-1shxwxblp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T15:30:00.000Z","end":"2026-05-20T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-54alm32ub","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T15:45:00.000Z","end":"2026-05-20T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-iit0tn7nw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T16:00:00.000Z","end":"2026-05-20T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.535Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-scod1do4l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T16:15:00.000Z","end":"2026-05-20T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-ls89hrtt4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T16:30:00.000Z","end":"2026-05-20T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-y1zqztf7y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T16:45:00.000Z","end":"2026-05-20T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-y2tde4jgx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T17:00:00.000Z","end":"2026-05-20T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-qddivjlsg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T17:15:00.000Z","end":"2026-05-20T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-3t6z7df9v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T17:30:00.000Z","end":"2026-05-20T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-4lngu69y9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T17:45:00.000Z","end":"2026-05-20T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-9p6s48yzu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T18:00:00.000Z","end":"2026-05-20T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-wxyq9oxth","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T18:15:00.000Z","end":"2026-05-20T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-ku2eftnor","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T18:30:00.000Z","end":"2026-05-20T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.443Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-qov6a05rt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T18:45:00.000Z","end":"2026-05-20T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-cfd00c22j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-20T19:00:00.000Z","end":"2026-05-20T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-5veqmu27l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T19:15:00.000Z","end":"2026-05-20T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-vsdyl0l6f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T19:30:00.000Z","end":"2026-05-20T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-gu75ufp64","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-20T19:45:00.000Z","end":"2026-05-20T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.568Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085873-2sdhfb7t1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T12:00:00.000Z","end":"2026-05-21T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.873Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-78hj11s7e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T12:15:00.000Z","end":"2026-05-21T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-uyrfod1x9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T12:30:00.000Z","end":"2026-05-21T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-bvb05fqdx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T12:45:00.000Z","end":"2026-05-21T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-7w8mmaaht","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T13:00:00.000Z","end":"2026-05-21T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.497Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-1m6uxthf5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T13:15:00.000Z","end":"2026-05-21T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.874Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-q8eb5rsgu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T13:30:00.000Z","end":"2026-05-21T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.874Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-pljygv382","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T13:45:00.000Z","end":"2026-05-21T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-yr0iu8oeh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T14:00:00.000Z","end":"2026-05-21T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-3hf5sv5pc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T14:15:00.000Z","end":"2026-05-21T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.874Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085874-ezi7ijjjw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T14:30:00.000Z","end":"2026-05-21T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.595Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-rqdm3mvca","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T14:45:00.000Z","end":"2026-05-21T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-lk829rx80","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T15:00:00.000Z","end":"2026-05-21T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-56wlwdyy9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T15:15:00.000Z","end":"2026-05-21T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-85wfb4hec","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T15:30:00.000Z","end":"2026-05-21T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.552Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-eolrkhebc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T15:45:00.000Z","end":"2026-05-21T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.549Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-3tnlgzye2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T16:00:00.000Z","end":"2026-05-21T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-6k7fjjsqe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T16:15:00.000Z","end":"2026-05-21T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-elosvmvq4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T16:30:00.000Z","end":"2026-05-21T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-gn2o4sh8v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T16:45:00.000Z","end":"2026-05-21T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-ad6jk4tvf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T17:00:00.000Z","end":"2026-05-21T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-hzt2d9l6n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T17:15:00.000Z","end":"2026-05-21T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.466Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-yn9b3py7j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T17:30:00.000Z","end":"2026-05-21T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-7uvpudqc3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T17:45:00.000Z","end":"2026-05-21T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-7wzacx79w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T18:00:00.000Z","end":"2026-05-21T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-30mmemg6g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T18:15:00.000Z","end":"2026-05-21T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-ibmpc5yzv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T18:30:00.000Z","end":"2026-05-21T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-l68qlcq82","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T18:45:00.000Z","end":"2026-05-21T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-e290w0dh7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-21T19:00:00.000Z","end":"2026-05-21T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085875-db3r96gd9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T19:15:00.000Z","end":"2026-05-21T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.875Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-wagodof0y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T19:30:00.000Z","end":"2026-05-21T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-vaeh68ccp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-21T19:45:00.000Z","end":"2026-05-21T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-t7hldqt6s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T12:00:00.000Z","end":"2026-05-22T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-916psqt1f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T12:15:00.000Z","end":"2026-05-22T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-cf9bxue3g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T12:30:00.000Z","end":"2026-05-22T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.592Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-vpm64l9mk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T12:45:00.000Z","end":"2026-05-22T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-su11eo5y5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T13:00:00.000Z","end":"2026-05-22T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-bqm1n78gf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T13:15:00.000Z","end":"2026-05-22T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-9nfitjzuw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T13:30:00.000Z","end":"2026-05-22T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-taaqnjabz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T13:45:00.000Z","end":"2026-05-22T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-sonabnas2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T14:00:00.000Z","end":"2026-05-22T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-sffrjvecp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T14:15:00.000Z","end":"2026-05-22T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-a6n2dx9q3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T14:30:00.000Z","end":"2026-05-22T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-ixio75w41","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T14:45:00.000Z","end":"2026-05-22T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-96f0oxgct","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T15:00:00.000Z","end":"2026-05-22T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.593Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-q0lj5fwks","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T15:15:00.000Z","end":"2026-05-22T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-e8nah1eoa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T15:30:00.000Z","end":"2026-05-22T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-09ftkk5gp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T15:45:00.000Z","end":"2026-05-22T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-uinn338bu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T16:00:00.000Z","end":"2026-05-22T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-1oxh11p97","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T16:15:00.000Z","end":"2026-05-22T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-6hmwb40xp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T16:30:00.000Z","end":"2026-05-22T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-1wew8mian","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T16:45:00.000Z","end":"2026-05-22T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-yqnxhxtf1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T17:00:00.000Z","end":"2026-05-22T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-xwjzq9cvf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T17:15:00.000Z","end":"2026-05-22T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-cfwqlfzcq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T17:30:00.000Z","end":"2026-05-22T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-7xj4a5q3u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T17:45:00.000Z","end":"2026-05-22T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-m23m5mzc1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T18:00:00.000Z","end":"2026-05-22T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-sb2c2y8s6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T18:15:00.000Z","end":"2026-05-22T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-8xwnmg6vt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T18:30:00.000Z","end":"2026-05-22T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-jp6j4k0bq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T18:45:00.000Z","end":"2026-05-22T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-hyula0ljg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T19:00:00.000Z","end":"2026-05-22T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-9hhokdc5b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-22T19:15:00.000Z","end":"2026-05-22T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.561Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-fauycu085","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T19:30:00.000Z","end":"2026-05-22T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-ej2y26g9g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-22T19:45:00.000Z","end":"2026-05-22T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-7m0b6a1kv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T12:00:00.000Z","end":"2026-05-25T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-rybbodihc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T12:15:00.000Z","end":"2026-05-25T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085876-bgxlx8253","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T12:30:00.000Z","end":"2026-05-25T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.876Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-98gycltvs","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T12:45:00.000Z","end":"2026-05-25T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-yn4zk2xpq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T13:00:00.000Z","end":"2026-05-25T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-u75ge9l98","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T13:15:00.000Z","end":"2026-05-25T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-6ii9liird","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T13:30:00.000Z","end":"2026-05-25T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-8mn88ei9f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T13:45:00.000Z","end":"2026-05-25T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-79v1spfzb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T14:00:00.000Z","end":"2026-05-25T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.546Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-00in62nft","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T14:15:00.000Z","end":"2026-05-25T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-4uxvq9wmy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T14:30:00.000Z","end":"2026-05-25T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-81qfj8iiv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T14:45:00.000Z","end":"2026-05-25T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-ozfdg8fxq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T15:00:00.000Z","end":"2026-05-25T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-4ww73rlmw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T15:15:00.000Z","end":"2026-05-25T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-amdy46alv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T15:30:00.000Z","end":"2026-05-25T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-hlcj75rpu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T15:45:00.000Z","end":"2026-05-25T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-yc5mh5xzc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T16:00:00.000Z","end":"2026-05-25T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-v9oeax5u7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T16:15:00.000Z","end":"2026-05-25T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-67hha31k4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T16:30:00.000Z","end":"2026-05-25T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-35wi9ua11","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T16:45:00.000Z","end":"2026-05-25T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-mwk704ipu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T17:00:00.000Z","end":"2026-05-25T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-xc3ch9zy8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T17:15:00.000Z","end":"2026-05-25T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.584Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-qkpxgds10","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T17:30:00.000Z","end":"2026-05-25T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.545Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-4aoc5mro8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T17:45:00.000Z","end":"2026-05-25T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-3boohmtqy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T18:00:00.000Z","end":"2026-05-25T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.468Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-ut4j06cg9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T18:15:00.000Z","end":"2026-05-25T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-ykkggrfbq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T18:30:00.000Z","end":"2026-05-25T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-awpppw49s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T18:45:00.000Z","end":"2026-05-25T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-rqfiqe69l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T19:00:00.000Z","end":"2026-05-25T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-pocjsmm53","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-25T19:15:00.000Z","end":"2026-05-25T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.877Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-jr8e89ln7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T19:30:00.000Z","end":"2026-05-25T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-q1vs8dv3r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-25T19:45:00.000Z","end":"2026-05-25T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.467Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-sbkhbvol9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T12:00:00.000Z","end":"2026-05-26T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-qqepqor7s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T12:15:00.000Z","end":"2026-05-26T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085877-qv9l1c38y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T12:30:00.000Z","end":"2026-05-26T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-y2316x2vb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T12:45:00.000Z","end":"2026-05-26T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-x23qxsq90","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T13:00:00.000Z","end":"2026-05-26T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.510Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-58rpz75em","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T13:15:00.000Z","end":"2026-05-26T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-0wnv3mgji","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T13:30:00.000Z","end":"2026-05-26T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-htei12kfx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T13:45:00.000Z","end":"2026-05-26T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-qozfg9i2r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T14:00:00.000Z","end":"2026-05-26T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.460Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-dz49y4mvr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T14:15:00.000Z","end":"2026-05-26T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-heifpww51","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T14:30:00.000Z","end":"2026-05-26T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-c8jt0yw60","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T14:45:00.000Z","end":"2026-05-26T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-lh4t935kk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T15:00:00.000Z","end":"2026-05-26T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-4xk5j1pmy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T15:15:00.000Z","end":"2026-05-26T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-r62vs70sq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T15:30:00.000Z","end":"2026-05-26T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-3263fixlu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T15:45:00.000Z","end":"2026-05-26T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.611Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-u0vrk2mt9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T16:00:00.000Z","end":"2026-05-26T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.557Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-48on5nku7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T16:15:00.000Z","end":"2026-05-26T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-7q8qww22v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T16:30:00.000Z","end":"2026-05-26T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-uwhrjx0fe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T16:45:00.000Z","end":"2026-05-26T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.435Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-xf8x7zr61","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T17:00:00.000Z","end":"2026-05-26T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-62961vgh8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T17:15:00.000Z","end":"2026-05-26T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-kxng3iwqo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T17:30:00.000Z","end":"2026-05-26T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-tfvdbwcs3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T17:45:00.000Z","end":"2026-05-26T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-959j3kjc3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T18:00:00.000Z","end":"2026-05-26T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-cucteb72m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T18:15:00.000Z","end":"2026-05-26T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-kbyk8gv4y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T18:30:00.000Z","end":"2026-05-26T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.566Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-2rxr915os","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-26T18:45:00.000Z","end":"2026-05-26T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.479Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-7ck6gisj4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T19:00:00.000Z","end":"2026-05-26T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-dslnxgahz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T19:15:00.000Z","end":"2026-05-26T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-93akibncp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T19:30:00.000Z","end":"2026-05-26T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-pmjy1f5l4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-26T19:45:00.000Z","end":"2026-05-26T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-w6agbj0vd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T12:00:00.000Z","end":"2026-05-27T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.419Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-pr9wejazd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T12:15:00.000Z","end":"2026-05-27T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.529Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-e19ulz3r6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T12:30:00.000Z","end":"2026-05-27T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.878Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-y5v0yc02f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T12:45:00.000Z","end":"2026-05-27T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085878-p2d41ect5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T13:00:00.000Z","end":"2026-05-27T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-mwilsny0k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T13:15:00.000Z","end":"2026-05-27T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-d9mrmozbu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T13:30:00.000Z","end":"2026-05-27T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.458Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-95a4v99ea","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T13:45:00.000Z","end":"2026-05-27T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-ef4fpn876","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T14:00:00.000Z","end":"2026-05-27T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-tsep5s2nc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T14:15:00.000Z","end":"2026-05-27T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-01t36ms2k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T14:30:00.000Z","end":"2026-05-27T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-qqjso76dk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T14:45:00.000Z","end":"2026-05-27T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-2ltk2qhsq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T15:00:00.000Z","end":"2026-05-27T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-9gb789kws","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T15:15:00.000Z","end":"2026-05-27T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.425Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-cu7m1aw7x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T15:30:00.000Z","end":"2026-05-27T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.438Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-42s8ynxab","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T15:45:00.000Z","end":"2026-05-27T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-qkst6fbbi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T16:00:00.000Z","end":"2026-05-27T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-pnh3abokh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T16:15:00.000Z","end":"2026-05-27T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-zk6f2cq3p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T16:30:00.000Z","end":"2026-05-27T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-4lzbpapa0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T16:45:00.000Z","end":"2026-05-27T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-lp8zfgpp9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T17:00:00.000Z","end":"2026-05-27T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-rxep4pek6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T17:15:00.000Z","end":"2026-05-27T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.461Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-b26vv0yn0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T17:30:00.000Z","end":"2026-05-27T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-4ssjibsdd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T17:45:00.000Z","end":"2026-05-27T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-1xkv6kgjr","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T18:00:00.000Z","end":"2026-05-27T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.554Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-k2dl1muk2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T18:15:00.000Z","end":"2026-05-27T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-uazlsn8z5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T18:30:00.000Z","end":"2026-05-27T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-ju9btgvme","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T18:45:00.000Z","end":"2026-05-27T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-8i53kqykh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T19:00:00.000Z","end":"2026-05-27T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-rmctdb9ym","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-27T19:15:00.000Z","end":"2026-05-27T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-5czd9esai","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T19:30:00.000Z","end":"2026-05-27T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-cen90qizb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-27T19:45:00.000Z","end":"2026-05-27T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-fu0wfljh8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T12:00:00.000Z","end":"2026-05-28T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.445Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-y61f5jupi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T12:15:00.000Z","end":"2026-05-28T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-wft9wk6pm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T12:30:00.000Z","end":"2026-05-28T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.590Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-tvolpgg2r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T12:45:00.000Z","end":"2026-05-28T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-cdf0yhz3m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T13:00:00.000Z","end":"2026-05-28T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-2820buzuo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T13:15:00.000Z","end":"2026-05-28T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-m1i9ugmuh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T13:30:00.000Z","end":"2026-05-28T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-z6y4tdvvu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T13:45:00.000Z","end":"2026-05-28T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-chwavjiqq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T14:00:00.000Z","end":"2026-05-28T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-k5p97prp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T14:15:00.000Z","end":"2026-05-28T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085879-eluidtoql","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T14:30:00.000Z","end":"2026-05-28T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.879Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-yoguqtdhn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T14:45:00.000Z","end":"2026-05-28T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-85en7nvab","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T15:00:00.000Z","end":"2026-05-28T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.533Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-v0zvrengq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T15:15:00.000Z","end":"2026-05-28T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.880Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-y2b9r6f5t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T15:30:00.000Z","end":"2026-05-28T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.880Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-ftgcntc9s","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T15:45:00.000Z","end":"2026-05-28T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.471Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-3qi1bn27p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T16:00:00.000Z","end":"2026-05-28T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.542Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-s0y1qnhyh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T16:15:00.000Z","end":"2026-05-28T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.880Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-zhddzw4lm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T16:30:00.000Z","end":"2026-05-28T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.416Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-k42iqfrzu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T16:45:00.000Z","end":"2026-05-28T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-uryhv6y9k","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T17:00:00.000Z","end":"2026-05-28T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-mwedfv9my","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T17:15:00.000Z","end":"2026-05-28T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-yp9g6zfoj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T17:30:00.000Z","end":"2026-05-28T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-5r06hdmw1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T17:45:00.000Z","end":"2026-05-28T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.880Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-6cjx2m7mo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T18:00:00.000Z","end":"2026-05-28T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-srfzamcj2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T18:15:00.000Z","end":"2026-05-28T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.880Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085880-o6o8jngye","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T18:30:00.000Z","end":"2026-05-28T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.415Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-68nqulkry","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T18:45:00.000Z","end":"2026-05-28T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-ke7m19urb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T19:00:00.000Z","end":"2026-05-28T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-xoudhg1tx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T19:15:00.000Z","end":"2026-05-28T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.881Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-9dnhhcaka","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-28T19:30:00.000Z","end":"2026-05-28T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.436Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-i044swthu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-28T19:45:00.000Z","end":"2026-05-28T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.881Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-l0kcymnue","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T12:00:00.000Z","end":"2026-05-29T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-4gy6o86t7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T12:15:00.000Z","end":"2026-05-29T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.881Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-3aqup418c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T12:30:00.000Z","end":"2026-05-29T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.881Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-tfrlnt3ev","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T12:45:00.000Z","end":"2026-05-29T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-evu9shk2z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T13:00:00.000Z","end":"2026-05-29T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.881Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-a23dok356","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T13:15:00.000Z","end":"2026-05-29T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.502Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-vppktznyb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T13:30:00.000Z","end":"2026-05-29T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.881Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-tmk1wokmo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T13:45:00.000Z","end":"2026-05-29T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.881Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-i6m2elu13","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T14:00:00.000Z","end":"2026-05-29T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.881Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085881-jzdl3vp2r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T14:15:00.000Z","end":"2026-05-29T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.579Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-2kt8adxjb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T14:30:00.000Z","end":"2026-05-29T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.526Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-i9ed5twsc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T14:45:00.000Z","end":"2026-05-29T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-gqd8odvxm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T15:00:00.000Z","end":"2026-05-29T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-gc76afvns","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T15:15:00.000Z","end":"2026-05-29T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-m1205lvdj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T15:30:00.000Z","end":"2026-05-29T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.553Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-eh8s10i9v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T15:45:00.000Z","end":"2026-05-29T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-vmwg6o5jn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T16:00:00.000Z","end":"2026-05-29T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-7luy1nj5o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T16:15:00.000Z","end":"2026-05-29T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-2j3s4jqjz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T16:30:00.000Z","end":"2026-05-29T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-6u3h57i1t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T16:45:00.000Z","end":"2026-05-29T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-8xjz1sqo8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T17:00:00.000Z","end":"2026-05-29T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-gzyclrgf2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T17:15:00.000Z","end":"2026-05-29T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-sxp2zhvs3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T17:30:00.000Z","end":"2026-05-29T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-al2t14g4b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T17:45:00.000Z","end":"2026-05-29T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-k1yuxekz2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T18:00:00.000Z","end":"2026-05-29T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-d13clu28z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T18:15:00.000Z","end":"2026-05-29T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-593ymclpm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T18:30:00.000Z","end":"2026-05-29T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-abyhjf55g","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T18:45:00.000Z","end":"2026-05-29T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-s29591hzw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T19:00:00.000Z","end":"2026-05-29T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-o6cpukfet","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T19:15:00.000Z","end":"2026-05-29T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.530Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-7hov310c4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-05-29T19:30:00.000Z","end":"2026-05-29T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-ra1yyzge0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-05-29T19:45:00.000Z","end":"2026-05-29T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-p2orjfu8n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T12:00:00.000Z","end":"2026-06-01T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-6pkgz9mss","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T12:15:00.000Z","end":"2026-06-01T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-kjdwleajy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T12:30:00.000Z","end":"2026-06-01T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-vrylfkc7v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T12:45:00.000Z","end":"2026-06-01T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.412Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-vcv284xij","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T13:00:00.000Z","end":"2026-06-01T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.882Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-xym3agf6j","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T13:15:00.000Z","end":"2026-06-01T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.567Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-tqk1nrnww","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T13:30:00.000Z","end":"2026-06-01T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-nes30ouo7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T13:45:00.000Z","end":"2026-06-01T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-2g2n0mysd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T14:00:00.000Z","end":"2026-06-01T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.511Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085882-bbns2in3t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T14:15:00.000Z","end":"2026-06-01T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-xfm53c80p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T14:30:00.000Z","end":"2026-06-01T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.483Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-clul6m64h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T14:45:00.000Z","end":"2026-06-01T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-brejvsftj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T15:00:00.000Z","end":"2026-06-01T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-d3zvlkazt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T15:15:00.000Z","end":"2026-06-01T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-7wu9ehjsf","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T15:30:00.000Z","end":"2026-06-01T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-7havpjgrq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T15:45:00.000Z","end":"2026-06-01T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-nwhwxxbib","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T16:00:00.000Z","end":"2026-06-01T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-j8760tusu","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T16:15:00.000Z","end":"2026-06-01T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.410Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-8z39ht3be","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T16:30:00.000Z","end":"2026-06-01T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-uhluhnhe9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T16:45:00.000Z","end":"2026-06-01T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-iyic4b4z3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T17:00:00.000Z","end":"2026-06-01T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-z80htiwi9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T17:15:00.000Z","end":"2026-06-01T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.424Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-xiticv3wn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T17:30:00.000Z","end":"2026-06-01T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-easa5ylzk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T17:45:00.000Z","end":"2026-06-01T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-k1i7ulmhq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T18:00:00.000Z","end":"2026-06-01T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-5j7ecdxhw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T18:15:00.000Z","end":"2026-06-01T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-njrz14gdz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T18:30:00.000Z","end":"2026-06-01T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.594Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-2d42xbz4t","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T18:45:00.000Z","end":"2026-06-01T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-cvsbij19z","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T19:00:00.000Z","end":"2026-06-01T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-5ctoxqr1o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T19:15:00.000Z","end":"2026-06-01T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-0fwkdlna3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-01T19:30:00.000Z","end":"2026-06-01T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.536Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-h7ql5wg6i","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-01T19:45:00.000Z","end":"2026-06-01T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-i333b0fzv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T12:00:00.000Z","end":"2026-06-02T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.486Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-1zgcmyt80","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T12:15:00.000Z","end":"2026-06-02T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.609Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-71pn07cpz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T12:30:00.000Z","end":"2026-06-02T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-1aj1953wh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T12:45:00.000Z","end":"2026-06-02T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.556Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-4mmyefav0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T13:00:00.000Z","end":"2026-06-02T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-1mr9ii6v8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T13:15:00.000Z","end":"2026-06-02T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-1fh3o2ii3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T13:30:00.000Z","end":"2026-06-02T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-lvqrl5edn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T13:45:00.000Z","end":"2026-06-02T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-yc8u4u7cx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T14:00:00.000Z","end":"2026-06-02T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-lhv66av1b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T14:15:00.000Z","end":"2026-06-02T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-9n08nsrgd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T14:30:00.000Z","end":"2026-06-02T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.421Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-jcf2n41pb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T14:45:00.000Z","end":"2026-06-02T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085883-lq802c5ua","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T15:00:00.000Z","end":"2026-06-02T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.883Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-7olhc6z6b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T15:15:00.000Z","end":"2026-06-02T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-ufqqrp2q2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T15:30:00.000Z","end":"2026-06-02T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-rbnb9djsl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T15:45:00.000Z","end":"2026-06-02T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-2jahg6fwo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T16:00:00.000Z","end":"2026-06-02T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-iyljfvj8h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T16:15:00.000Z","end":"2026-06-02T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.459Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-0q52iw6hy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T16:30:00.000Z","end":"2026-06-02T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-78x4bybza","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T16:45:00.000Z","end":"2026-06-02T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.453Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-t0urhkc4f","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T17:00:00.000Z","end":"2026-06-02T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.500Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-1rnp1ff4o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T17:15:00.000Z","end":"2026-06-02T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-cehsdgra6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T17:30:00.000Z","end":"2026-06-02T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.434Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-ibb0w71er","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T17:45:00.000Z","end":"2026-06-02T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.604Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-kdv868rt6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T18:00:00.000Z","end":"2026-06-02T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-amtuv1lkq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T18:15:00.000Z","end":"2026-06-02T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.447Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-v47b8juc1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T18:30:00.000Z","end":"2026-06-02T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-d17s83esy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T18:45:00.000Z","end":"2026-06-02T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-v2x98gx4b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T19:00:00.000Z","end":"2026-06-02T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.493Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-bd3ud72e6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-02T19:15:00.000Z","end":"2026-06-02T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-c1ztyaaz2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T19:30:00.000Z","end":"2026-06-02T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-ahqmm5c98","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-02T19:45:00.000Z","end":"2026-06-02T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.411Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-pbue02weg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T12:00:00.000Z","end":"2026-06-03T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-dgbmh2vb5","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T12:15:00.000Z","end":"2026-06-03T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-6xg0e3ekh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T12:30:00.000Z","end":"2026-06-03T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-n3a2nwb1r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T12:45:00.000Z","end":"2026-06-03T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-ztpa2tpzo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T13:00:00.000Z","end":"2026-06-03T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-3znvuoc3w","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T13:15:00.000Z","end":"2026-06-03T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-igo8g4tjl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T13:30:00.000Z","end":"2026-06-03T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-payket7gx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T13:45:00.000Z","end":"2026-06-03T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-ih4lrytbm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T14:00:00.000Z","end":"2026-06-03T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-kui1cv44q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T14:15:00.000Z","end":"2026-06-03T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-kirh6cojq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T14:30:00.000Z","end":"2026-06-03T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-fedj10qe2","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T14:45:00.000Z","end":"2026-06-03T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-i1fnztawb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T15:00:00.000Z","end":"2026-06-03T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-kx33whbeo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T15:15:00.000Z","end":"2026-06-03T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-8s7v24hqa","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T15:30:00.000Z","end":"2026-06-03T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.555Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-8af8q5riq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T15:45:00.000Z","end":"2026-06-03T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.572Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-j33igaioe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T16:00:00.000Z","end":"2026-06-03T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.884Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085884-l9gnqcg1d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T16:15:00.000Z","end":"2026-06-03T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-69fskrwo3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T16:30:00.000Z","end":"2026-06-03T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.514Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-9d9o6u1fd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T16:45:00.000Z","end":"2026-06-03T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.581Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-7p22uorbe","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T17:00:00.000Z","end":"2026-06-03T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-zp6jal89x","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T17:15:00.000Z","end":"2026-06-03T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.464Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-sfnu47o9b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T17:30:00.000Z","end":"2026-06-03T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-qunw3ugkp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T17:45:00.000Z","end":"2026-06-03T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-uzltufeot","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T18:00:00.000Z","end":"2026-06-03T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.544Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-lyz2zlhzg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T18:15:00.000Z","end":"2026-06-03T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-nro856cna","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T18:30:00.000Z","end":"2026-06-03T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.512Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-ssxg3qprl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T18:45:00.000Z","end":"2026-06-03T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.532Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-1yl299tn4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T19:00:00.000Z","end":"2026-06-03T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.509Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-5m562x78e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T19:15:00.000Z","end":"2026-06-03T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.578Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-ivacwyv5r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-03T19:30:00.000Z","end":"2026-06-03T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-zltaxpqfw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-03T19:45:00.000Z","end":"2026-06-03T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-w29cc6c40","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T12:00:00.000Z","end":"2026-06-04T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.455Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-wxokja7vg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T12:15:00.000Z","end":"2026-06-04T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.531Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-yyuha8tp6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T12:30:00.000Z","end":"2026-06-04T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-40qfdf9kq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T12:45:00.000Z","end":"2026-06-04T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.444Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-yatl6xyfh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T13:00:00.000Z","end":"2026-06-04T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-vppm30lhj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T13:15:00.000Z","end":"2026-06-04T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-9roxqwg0q","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T13:30:00.000Z","end":"2026-06-04T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.482Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-kbbu1mcmq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T13:45:00.000Z","end":"2026-06-04T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-wsrqm28sc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T14:00:00.000Z","end":"2026-06-04T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-w3yq11hh0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T14:15:00.000Z","end":"2026-06-04T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.449Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-vbre1mv39","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T14:30:00.000Z","end":"2026-06-04T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.428Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-nnq8b6fn3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T14:45:00.000Z","end":"2026-06-04T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-httuzivrl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T15:00:00.000Z","end":"2026-06-04T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.548Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-7cqpyi1xx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T15:15:00.000Z","end":"2026-06-04T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-q4h742i3e","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T15:30:00.000Z","end":"2026-06-04T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.490Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-hvm06a1w0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T15:45:00.000Z","end":"2026-06-04T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-qg0v3h3tz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T16:00:00.000Z","end":"2026-06-04T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-ew9gsy97n","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T16:15:00.000Z","end":"2026-06-04T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.481Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-2ou0hzu1d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T16:30:00.000Z","end":"2026-06-04T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-nv39x841h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T16:45:00.000Z","end":"2026-06-04T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085885-mwqajtzgc","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T17:00:00.000Z","end":"2026-06-04T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.885Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-xbtp74wq4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T17:15:00.000Z","end":"2026-06-04T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.886Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-hvioos21l","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T17:30:00.000Z","end":"2026-06-04T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-13fnrddob","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T17:45:00.000Z","end":"2026-06-04T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.537Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-ciyjluef9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T18:00:00.000Z","end":"2026-06-04T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.886Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-9kred8x0p","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T18:15:00.000Z","end":"2026-06-04T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.456Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-fvaejzi4c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T18:30:00.000Z","end":"2026-06-04T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-24g974snl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T18:45:00.000Z","end":"2026-06-04T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.886Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-q19nsc53c","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T19:00:00.000Z","end":"2026-06-04T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.886Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-zww4pqo07","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-04T19:15:00.000Z","end":"2026-06-04T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.886Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-rctw9aueb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T19:30:00.000Z","end":"2026-06-04T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-3xplrtxp7","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-04T19:45:00.000Z","end":"2026-06-04T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085886-jzowv1u44","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T12:00:00.000Z","end":"2026-06-05T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-z9g49vvo9","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T12:15:00.000Z","end":"2026-06-05T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-2pbfj6nvv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T12:30:00.000Z","end":"2026-06-05T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-yzbazl566","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T12:45:00.000Z","end":"2026-06-05T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.541Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-eafthcm1u","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T13:00:00.000Z","end":"2026-06-05T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.547Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-s1kmsip33","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T13:15:00.000Z","end":"2026-06-05T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.563Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-sjtfvfpye","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T13:30:00.000Z","end":"2026-06-05T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-nv4cxixma","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T13:45:00.000Z","end":"2026-06-05T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.887Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-qpt4oeynw","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T14:00:00.000Z","end":"2026-06-05T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.475Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-bg7ke5ror","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T14:15:00.000Z","end":"2026-06-05T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.587Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-gh1xeioet","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T14:30:00.000Z","end":"2026-06-05T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.887Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-g3qbh6fg4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T14:45:00.000Z","end":"2026-06-05T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.523Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-8rt5o8u70","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T15:00:00.000Z","end":"2026-06-05T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.887Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-25yvf6nat","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T15:15:00.000Z","end":"2026-06-05T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.887Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-zlhcc5pqn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T15:30:00.000Z","end":"2026-06-05T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-4fyv0kxnd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T15:45:00.000Z","end":"2026-06-05T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-9tpyrwofl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T16:00:00.000Z","end":"2026-06-05T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.887Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-mxqm793wn","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T16:15:00.000Z","end":"2026-06-05T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.607Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085887-mxoqzh416","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T16:30:00.000Z","end":"2026-06-05T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.887Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-ng612nq6d","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T16:45:00.000Z","end":"2026-06-05T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-uom3f49vo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T17:00:00.000Z","end":"2026-06-05T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-y3ssmco44","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T17:15:00.000Z","end":"2026-06-05T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-f8awiuslx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T17:30:00.000Z","end":"2026-06-05T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-6abpkcxnd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T17:45:00.000Z","end":"2026-06-05T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-pzzljzol3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T18:00:00.000Z","end":"2026-06-05T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.480Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-s97hyda2m","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T18:15:00.000Z","end":"2026-06-05T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.610Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-5fn41jyup","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T18:30:00.000Z","end":"2026-06-05T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-r4md6w6uy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T18:45:00.000Z","end":"2026-06-05T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-i460rryn3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T19:00:00.000Z","end":"2026-06-05T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-ckrki8p8b","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T19:15:00.000Z","end":"2026-06-05T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.489Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-9cv8adxbt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-05T19:30:00.000Z","end":"2026-06-05T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.432Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-l7q4o4e86","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-05T19:45:00.000Z","end":"2026-06-05T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-5wg4qmhhq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T12:00:00.000Z","end":"2026-06-08T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.439Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-ef5u1l045","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T12:15:00.000Z","end":"2026-06-08T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.396Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-qk7s49pcl","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T12:30:00.000Z","end":"2026-06-08T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.492Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-v19rjw15v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T12:45:00.000Z","end":"2026-06-08T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.608Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-pe0kt54f3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T13:00:00.000Z","end":"2026-06-08T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-fa545ttns","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T13:15:00.000Z","end":"2026-06-08T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-3lq56bwx0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T13:30:00.000Z","end":"2026-06-08T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-ddfq5v2uz","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T13:45:00.000Z","end":"2026-06-08T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.446Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-rdinv33yi","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T14:00:00.000Z","end":"2026-06-08T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.454Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-252v6meia","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T14:15:00.000Z","end":"2026-06-08T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.503Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-tk96vkil8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T14:30:00.000Z","end":"2026-06-08T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.448Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-hg1iybe8y","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T14:45:00.000Z","end":"2026-06-08T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-6kgtr1yin","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T15:00:00.000Z","end":"2026-06-08T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-4i5t4imad","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T15:15:00.000Z","end":"2026-06-08T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-sdc9vmlr0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T15:30:00.000Z","end":"2026-06-08T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.431Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-0galln8bx","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T15:45:00.000Z","end":"2026-06-08T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-m09njr9zd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T16:00:00.000Z","end":"2026-06-08T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.560Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-1hqvohe35","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T16:15:00.000Z","end":"2026-06-08T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-vfkchxtvt","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T16:30:00.000Z","end":"2026-06-08T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.888Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-rh4113jm4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T16:45:00.000Z","end":"2026-06-08T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-9i32wsdoy","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T17:00:00.000Z","end":"2026-06-08T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.569Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-wcsmp0dtg","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T17:15:00.000Z","end":"2026-06-08T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.487Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-z9fpg1ea1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T17:30:00.000Z","end":"2026-06-08T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.433Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-9plzb0gaj","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T17:45:00.000Z","end":"2026-06-08T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.522Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085888-a989i8ah6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T18:00:00.000Z","end":"2026-06-08T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.465Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-ynvygwfvk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T18:15:00.000Z","end":"2026-06-08T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.422Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-9cy9bu296","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T18:30:00.000Z","end":"2026-06-08T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.426Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-z2uq7jgev","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T18:45:00.000Z","end":"2026-06-08T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.442Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-1xmbwp7r8","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T19:00:00.000Z","end":"2026-06-08T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.469Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-va21f7iw3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T19:15:00.000Z","end":"2026-06-08T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-mprh1bog1","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-08T19:30:00.000Z","end":"2026-06-08T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-hbei1rwxm","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-08T19:45:00.000Z","end":"2026-06-08T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-shm7dw4ck","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T12:00:00.000Z","end":"2026-06-09T12:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-ci6o8bfzh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T12:15:00.000Z","end":"2026-06-09T12:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-aelnc4n5a","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T12:30:00.000Z","end":"2026-06-09T12:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.583Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-biwhiwu95","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T12:45:00.000Z","end":"2026-06-09T13:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.543Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-3x4gacns0","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T13:00:00.000Z","end":"2026-06-09T13:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.540Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-6svj1cj8o","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T13:15:00.000Z","end":"2026-06-09T13:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-7ycnzeqv6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T13:30:00.000Z","end":"2026-06-09T13:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.534Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-gxl34xbbo","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T13:45:00.000Z","end":"2026-06-09T14:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.476Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-is8un4295","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T14:00:00.000Z","end":"2026-06-09T14:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.508Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-b1uqal5yb","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T14:15:00.000Z","end":"2026-06-09T14:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-mxq7gywgk","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T14:30:00.000Z","end":"2026-06-09T14:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.589Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-odgo2a0dv","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T14:45:00.000Z","end":"2026-06-09T15:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.423Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-66i1nz1dp","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T15:00:00.000Z","end":"2026-06-09T15:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-xm3bib9in","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T15:15:00.000Z","end":"2026-06-09T15:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-m1i4yf177","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T15:30:00.000Z","end":"2026-06-09T15:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.559Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-8jfi8pl3h","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T15:45:00.000Z","end":"2026-06-09T16:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-9ai0bpdum","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T16:00:00.000Z","end":"2026-06-09T16:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-9z95kqto3","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T16:15:00.000Z","end":"2026-06-09T16:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.571Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-1w131rktq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T16:30:00.000Z","end":"2026-06-09T16:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-hihpnft35","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T16:45:00.000Z","end":"2026-06-09T17:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.488Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-c0e4vagmq","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T17:00:00.000Z","end":"2026-06-09T17:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-phacci95r","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T17:15:00.000Z","end":"2026-06-09T17:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.591Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-9mr86wks6","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T17:30:00.000Z","end":"2026-06-09T17:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.478Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-981n3jug4","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T17:45:00.000Z","end":"2026-06-09T18:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-k6miu5e1v","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T18:00:00.000Z","end":"2026-06-09T18:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.525Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085889-f2iebzfsd","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T18:15:00.000Z","end":"2026-06-09T18:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.889Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085890-6s3nrya16","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T18:30:00.000Z","end":"2026-06-09T18:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.890Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085890-f9whngb84","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T18:45:00.000Z","end":"2026-06-09T19:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.890Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085890-ad69w96im","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T19:00:00.000Z","end":"2026-06-09T19:15:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.890Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085890-4azij4jos","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T19:15:00.000Z","end":"2026-06-09T19:30:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.890Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085890-7le4ujpeh","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"busy","start":"2026-06-09T19:30:00.000Z","end":"2026-06-09T19:45:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:46.570Z","created_at":"2025-12-12 05:24:45"} +{"id":"1765517085890-kehfymkan","resource_type":"Slot","schedule_id":"1765517085740-dcin5zzsh","status":"free","start":"2026-06-09T19:45:00.000Z","end":"2026-06-09T20:00:00.000Z","service_category":"[]","service_type":"[{\"text\":\"Pediatrics\"}]","specialty":"[]","appointment_type":null,"overbooked":0,"comment":null,"meta_last_updated":"2025-12-12T05:24:45.890Z","created_at":"2025-12-12 05:24:45"} diff --git a/docker-compose.yml b/docker-compose.yml index cf973f3..0e02942 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,14 +1,15 @@ -version: '3.8' - services: app: build: . + init: true ports: - "4010:4010" volumes: - - .:/app - - /app/node_modules + # Persist the database outside the container + - ./data:/app/data + env_file: + - .env environment: - - NODE_ENV=development - - SQLITE_DB_PATH=/app/data/database.sqlite3 + - NODE_ENV=production + - SQLITE_DB_PATH=/app/data/fhirtogether.db command: npm run dev \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index ab355d7..892dec1 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,6 +10,7 @@ "license": "MIT", "dependencies": { "@fastify/cors": "^8.5.0", + "@fastify/static": "^6.12.0", "@fastify/swagger": "^8.14.0", "@fastify/swagger-ui": "^2.1.0", "better-sqlite3": "^9.2.2", diff --git a/package.json b/package.json index 1450e94..d9d41ee 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "build": "tsc", "start": "node dist/server.js", "generate-data": "tsx src/examples/generateBusyOffice.ts", + "import-seed": "tsx src/examples/importSeedData.ts", "hl7-test": "tsx src/examples/testHL7.ts", "test": "jest", "lint": "eslint src --ext .ts" @@ -23,11 +24,12 @@ "license": "MIT", "dependencies": { "@fastify/cors": "^8.5.0", + "@fastify/static": "^6.12.0", "@fastify/swagger": "^8.14.0", "@fastify/swagger-ui": "^2.1.0", - "fastify": "^4.25.2", "better-sqlite3": "^9.2.2", "dotenv": "^16.3.1", + "fastify": "^4.25.2", "pino": "^8.17.2", "pino-pretty": "^10.3.1" }, diff --git a/packages/fhir-scheduler/README.md b/packages/fhir-scheduler/README.md new file mode 100644 index 0000000..f382af0 --- /dev/null +++ b/packages/fhir-scheduler/README.md @@ -0,0 +1,231 @@ +# @mieweb/fhir-scheduler + +A React component for browsing provider schedules and booking appointments, embeddable in any application. + + + +## Screenshots + +### Visit Type Selection +![Visit Type](docs/screenshots/00-visit-type.png) + +### New Patient Intake Questionnaire +![Questionnaire](docs/screenshots/00b-questionnaire.png) + +### Provider Selection +![Provider List](docs/screenshots/01-provider-list.png) + +### Date Selection with Availability +![Date Selection](docs/screenshots/02-date-selection.png) + +### Calendar View +![Calendar View](docs/screenshots/03-calendar-view.png) + +### Time Slot Selection +![Time Slots](docs/screenshots/04-time-slots.png) + +### Booking Form with Hold Timer +![Booking Form](docs/screenshots/05-booking-form.png) + +### Completed Form +![Booking Filled](docs/screenshots/06-booking-filled.png) + +### Confirmation +![Confirmation](docs/screenshots/07-confirmation.png) + +### Mobile Responsive +| Provider List | Booking Form | +|---------------|--------------| +| ![Mobile Providers](docs/screenshots/08-mobile-provider-list.png) | ![Mobile Booking](docs/screenshots/09-mobile-booking.png) | + +## Features + +- 📅 Browse provider availability from any FHIR-compliant server +- 🔒 Slot hold/locking to prevent double-booking during checkout +- 📱 Responsive design for all screen sizes +- ⚛️ Available as React component or standalone Web Component +- 🎨 Clean, minimal styling that's easy to customize + +## Installation + +### React App + +```bash +npm install @mieweb/fhir-scheduler +``` + +### Standalone (No React Required) + +```html + +``` + +## Usage + +### React Component + +```tsx +import { SchedulerWidget } from '@mieweb/fhir-scheduler'; + +function App() { + const handleComplete = (appointment) => { + console.log('Booked:', appointment); + }; + + return ( + + ); +} +``` + +### Pre-selected Provider + +```tsx + +``` + +### Web Component + +```html + + + +``` + +## Props / Attributes + +| Prop | Type | Default | Description | +|------|------|---------|-------------| +| `fhirBaseUrl` | `string` | *required* | Base URL of FHIR server | +| `providerId` | `string` | `undefined` | Pre-select a specific provider (skip provider list) | +| `questionnaireFormData` | `object` | `undefined` | Questionnaire schema for intake forms | +| `holdDurationMinutes` | `number` | `5` | How long to hold a slot during booking | +| `onComplete` | `(appt) => void` | `undefined` | Callback when booking succeeds | +| `onError` | `(error) => void` | `undefined` | Callback on booking failure | +| `className` | `string` | `''` | Additional CSS classes | + +## Server Requirements + +The FHIR server must support these endpoints: + +| Method | Path | Description | +|--------|------|-------------| +| GET | `/Schedule?active=true` | List available providers | +| GET | `/Slot?schedule=...&status=free&start=...&end=...` | Get available slots | +| POST | `/Slot/:id/$hold` | Acquire hold on a slot | +| DELETE | `/Slot/:id/$hold/:token` | Release a hold | +| POST | `/Appointment` | Book an appointment | + +### Slot Hold API + +The slot hold mechanism prevents double-booking: + +```typescript +// POST /Slot/slot-123/$hold +{ + "durationMinutes": 10, + "sessionId": "client-uuid-abc123" +} + +// Response +{ + "holdToken": "hold-xyz789", + "slotId": "slot-123", + "expiresAt": "2025-12-10T14:30:00Z", + "status": "held" +} +``` + +## Component Flow + +``` +┌─────────────────┐ +│ Provider List │ +│ (Select one) │ +└────────┬────────┘ + │ + ▼ +┌─────────────────┐ +│ Slot Calendar │ +│ (Pick a time) │ +└────────┬────────┘ + │ (Acquires hold) + ▼ +┌─────────────────┐ +│ Booking Form │ +│ (Enter info) │ +└────────┬────────┘ + │ + ▼ +┌─────────────────┐ +│ Confirmation │ +│ (Success!) │ +└─────────────────┘ +``` + +## Styling + +All CSS classes use the `fs-` prefix to avoid conflicts. You can override styles: + +```css +.fs-scheduler-widget { + /* Widget container */ +} + +.fs-provider-card { + /* Provider selection cards */ +} + +.fs-slot-button { + /* Time slot buttons */ +} + +.fs-submit-button { + /* Booking submit button */ +} +``` + +## Development + +```bash +# Install dependencies +npm install + +# Start development server +npm run dev + +# Build library +npm run build + +# Type check +npm run typecheck +``` + +## License + +MIT — Part of the FHIRTogether project. diff --git a/packages/fhir-scheduler/demo.html b/packages/fhir-scheduler/demo.html new file mode 100644 index 0000000..b44c5a4 --- /dev/null +++ b/packages/fhir-scheduler/demo.html @@ -0,0 +1,471 @@ + + + + + + FHIR Scheduler Demo + + + +
+

🗓️ FHIR Scheduler Widget

+

Embeddable appointment scheduling component

+ +
+
+
+ +
+ Demo: This widget connects to the FHIRTogether server at the current origin (localhost:4010 for local development). + Make sure to run npm run generate-data to populate test providers and slots. +
+
+ + + + + + diff --git a/packages/fhir-scheduler/docs/AUTH.md b/packages/fhir-scheduler/docs/AUTH.md new file mode 100644 index 0000000..94181c5 --- /dev/null +++ b/packages/fhir-scheduler/docs/AUTH.md @@ -0,0 +1,499 @@ +# Authentication & Identity Management + +**`@mieweb/fhir-scheduler`** — Authentication patterns for the embeddable scheduling widget. + +--- + +## 🎯 Design Philosophy + +The scheduler widget **delegates authentication to the host application**. It never stores tokens, manages sessions, or owns login UI. This keeps the widget: + +- **Framework-agnostic** — Works with any auth library +- **Secure** — No token storage in the widget +- **Flexible** — Host decides the auth UX + +| Concern | Who Owns It | +|---------|-------------| +| Authentication | Host application | +| Token storage | Host application | +| Login UI | Host application | +| API authorization | Widget (attaches token to requests) | +| Booking flow | Widget | + +--- + +## 🔐 Auth Modes + +The widget supports four authentication modes via the `authMode` prop: + +| Mode | Use Case | +|------|----------| +| `anonymous` | Public booking pages, no login required | +| `token` | Host provides access token (static or refreshable) | +| `callback` | Host controls identity flow via callback | +| `smart` | SMART on FHIR launch for EHR integrations | + +--- + +## 📋 Auth Props / Attributes + +### React Component + +```tsx +interface SchedulerAuthProps { + // Auth mode (default: 'anonymous') + authMode?: 'anonymous' | 'token' | 'callback' | 'smart'; + + // For 'token' mode + accessToken?: string; + getAccessToken?: () => Promise; + + // For 'anonymous' mode - verification config + verification?: { + required: boolean; + methods: ('email' | 'sms' | 'captcha')[]; + onSendCode?: (contact: string, method: string) => Promise; + onVerifyCode?: (code: string) => Promise; + }; + + // For 'callback' mode + onIdentityRequired?: () => Promise; + + // For 'smart' mode + smartConfig?: { + clientId: string; + scope: string; + redirectUri?: string; + }; + + // Pre-populated user info (any mode) + user?: UserIdentity; +} + +interface UserIdentity { + identifier: string; // Unique ID (email, patient ID, etc.) + display: string; // Name to show + email?: string; + phone?: string; + verified: boolean; + fhirPatientId?: string; // Link to existing FHIR Patient +} +``` + +### Web Component Attributes + +| Attribute | Type | Description | +|-----------|------|-------------| +| `auth-mode` | string | `anonymous`, `token`, `callback`, or `smart` | +| `access-token` | string | Static bearer token | + +Properties set via JavaScript: +- `getAccessToken` — Async token refresh function +- `verification` — Verification config object +- `onIdentityRequired` — Identity callback function +- `smartConfig` — SMART on FHIR config object +- `user` — Pre-populated user identity + +--- + +## 🚀 Usage Examples + +### Mode 1: Anonymous (Default) + +No authentication required. Patient provides info during booking. + +```tsx +// React + +``` + +```html + + +``` + +### Mode 2: Token Injection + +Host provides access token for authenticated API requests. + +```tsx +// React - Static token + + +// React - Refreshable token + authService.getValidToken()} +/> +``` + +```html + + + + +``` + +### Mode 3: Identity Callback + +Host controls the login/identity flow. + +```tsx +// React + { + // Show login modal, OAuth popup, redirect, etc. + const user = await showLoginModal(); + return { + identifier: user.email, + display: user.name, + email: user.email, + verified: true + }; + }} +/> +``` + +```html + + + + +``` + +### Mode 4: Anonymous + Verification + +Require email/SMS verification for anonymous bookings. + +```tsx +// React + { + await api.sendVerificationCode(contact, method); + }, + onVerifyCode: async (code) => { + return await api.verifyCode(code); + } + }} +/> +``` + +### Mode 5: Pre-populated User + +Skip patient info if user is already known. + +```tsx +// React + +``` + +### Mode 6: SMART on FHIR (Healthcare) + +For EHR integrations using SMART on FHIR authorization. + +```tsx +// React + +``` + +--- + +## 🖼️ Framework Examples + +### Vue 3 + +```vue + + + +``` + +### Plain JavaScript + +```html + + + +``` + +### Angular + +```typescript +// scheduler.component.ts +import { Component, ElementRef, ViewChild, AfterViewInit } from '@angular/core'; +import { AuthService } from './auth.service'; + +@Component({ + selector: 'app-scheduler', + template: ` + + ` +}) +export class SchedulerComponent implements AfterViewInit { + @ViewChild('scheduler') schedulerRef!: ElementRef; + + constructor(private auth: AuthService) {} + + ngAfterViewInit() { + const scheduler = this.schedulerRef.nativeElement; + + if (this.auth.isLoggedIn()) { + scheduler.authMode = 'token'; + scheduler.getAccessToken = () => this.auth.getToken(); + scheduler.user = { + display: this.auth.user.name, + email: this.auth.user.email, + verified: true + }; + } + } + + onComplete(event: CustomEvent) { + console.log('Booked:', event.detail); + } +} +``` + +--- + +## 🔄 Auth Flow Diagrams + +### Token Mode Flow + +```mermaid +sequenceDiagram + participant Host as Host App + participant Widget as Scheduler Widget + participant FHIR as FHIR Server + + Host->>Widget: Render with getAccessToken() + Widget->>Host: getAccessToken() + Host-->>Widget: Bearer token + Widget->>FHIR: GET /Schedule (+ Authorization header) + FHIR-->>Widget: Schedules + + Note over Widget: User selects slot... + + Widget->>Host: getAccessToken() + Host-->>Widget: Fresh token (if expired) + Widget->>FHIR: POST /Appointment (+ Authorization) + FHIR-->>Widget: Appointment created + Widget->>Host: onComplete(appointment) +``` + +### Callback Mode Flow + +```mermaid +sequenceDiagram + participant Host as Host App + participant Widget as Scheduler Widget + participant FHIR as FHIR Server + + Widget->>FHIR: GET /Schedule (anonymous) + FHIR-->>Widget: Schedules + + Note over Widget: User selects slot... + + Widget->>Host: onIdentityRequired() + Host->>Host: Show login modal/OAuth + Host-->>Widget: UserIdentity + + Widget->>FHIR: POST /Appointment + FHIR-->>Widget: Appointment created + Widget->>Host: onComplete(appointment) +``` + +### Anonymous + Verification Flow + +```mermaid +sequenceDiagram + participant User + participant Widget as Scheduler Widget + participant Host as Host App + participant FHIR as FHIR Server + + Widget->>FHIR: GET /Schedule (anonymous) + FHIR-->>Widget: Schedules + + Note over Widget: User fills booking form... + + User->>Widget: Enter email + Widget->>Host: onSendCode(email, 'email') + Host-->>Widget: Code sent + + User->>Widget: Enter verification code + Widget->>Host: onVerifyCode(code) + Host-->>Widget: true (verified) + + Widget->>FHIR: POST /Appointment + FHIR-->>Widget: Appointment created + Widget->>Host: onComplete(appointment) +``` + +--- + +## 🔒 Security Considerations + +### Token Handling +- Tokens are **never stored** by the widget +- `getAccessToken()` is called fresh before each API request +- Widget adds `Authorization: Bearer ` header automatically + +### CORS +- FHIR server must allow CORS from the embedding domain +- Consider using a backend proxy for sensitive environments + +### Verification Codes +- Host is responsible for rate limiting +- Host controls code generation and validation +- Widget only passes through the callbacks + +### SMART on FHIR +- Uses standard SMART authorization flow +- Redirect-based (not popup) for mobile compatibility +- State parameter prevents CSRF attacks + +--- + +## 📄 License + +MIT — Part of the FHIRTogether project. diff --git a/packages/fhir-scheduler/docs/README-SCREENSHOTS.md b/packages/fhir-scheduler/docs/README-SCREENSHOTS.md new file mode 100644 index 0000000..a9b76e2 --- /dev/null +++ b/packages/fhir-scheduler/docs/README-SCREENSHOTS.md @@ -0,0 +1,33 @@ +## Screenshots + +### Visit Type Selection +![Visit Type Selection](docs/screenshots/00-visit-type.png) + +### New Patient Intake Questionnaire +![New Patient Intake Questionnaire](docs/screenshots/00b-questionnaire.png) + +### Provider Selection +![Provider Selection](docs/screenshots/01-provider-list.png) + +### Date Selection with Availability +![Date Selection with Availability](docs/screenshots/02-date-selection.png) + +### Calendar View +![Calendar View](docs/screenshots/03-calendar-view.png) + +### Time Slot Selection +![Time Slot Selection](docs/screenshots/04-time-slots.png) + +### Booking Form with Hold Timer +![Booking Form with Hold Timer](docs/screenshots/05-booking-form.png) + +### Completed Form +![Completed Form](docs/screenshots/06-booking-filled.png) + +### Confirmation +![Confirmation](docs/screenshots/07-confirmation.png) + +### Mobile Responsive +| Provider List | Booking Form | +|------------|------------| +| ![Mobile Provider List](docs/screenshots/08-mobile-provider-list.png) | ![Mobile Booking Form](docs/screenshots/09-mobile-booking.png) | diff --git a/packages/fhir-scheduler/docs/SCREENSHOTS.md b/packages/fhir-scheduler/docs/SCREENSHOTS.md new file mode 100644 index 0000000..b93f23c --- /dev/null +++ b/packages/fhir-scheduler/docs/SCREENSHOTS.md @@ -0,0 +1,57 @@ +# FHIR Scheduler Screenshots + +This documentation is auto-generated by the screenshot tests. +Run `npx playwright test tests/screenshots.spec.ts` to regenerate. + +## Booking Flow + +### Visit Type Selection +Choose between follow-up or new patient visit + +![Visit Type Selection](screenshots/00-visit-type.png) + +### New Patient Intake Questionnaire +Questionnaire for new patients before scheduling + +![New Patient Intake Questionnaire](screenshots/00b-questionnaire.png) + +### Provider Selection +Browse and select from available providers + +![Provider Selection](screenshots/01-provider-list.png) + +### Date Selection with Availability +View available dates with slot counts + +![Date Selection with Availability](screenshots/02-date-selection.png) + +### Calendar View +Alternative calendar-based date picker + +![Calendar View](screenshots/03-calendar-view.png) + +### Time Slot Selection +Choose from available appointment times + +![Time Slot Selection](screenshots/04-time-slots.png) + +### Booking Form with Hold Timer +Complete booking with slot reservation countdown + +![Booking Form with Hold Timer](screenshots/05-booking-form.png) + +### Completed Form +Booking form with patient information entered + +![Completed Form](screenshots/06-booking-filled.png) + +### Confirmation +Appointment successfully booked + +![Confirmation](screenshots/07-confirmation.png) + +## Mobile Responsive + +| Mobile Provider List | Mobile Booking Form | +|---|---| +| ![Mobile Provider List](screenshots/08-mobile-provider-list.png) | ![Mobile Booking Form](screenshots/09-mobile-booking.png) | diff --git a/packages/fhir-scheduler/docs/screenshots/00-visit-type.png b/packages/fhir-scheduler/docs/screenshots/00-visit-type.png new file mode 100644 index 0000000..8e87e82 Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/00-visit-type.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/00b-questionnaire.png b/packages/fhir-scheduler/docs/screenshots/00b-questionnaire.png new file mode 100644 index 0000000..8fac708 Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/00b-questionnaire.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/01-provider-list.png b/packages/fhir-scheduler/docs/screenshots/01-provider-list.png new file mode 100644 index 0000000..dc9e222 Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/01-provider-list.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/02-date-selection.png b/packages/fhir-scheduler/docs/screenshots/02-date-selection.png new file mode 100644 index 0000000..b50538f Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/02-date-selection.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/03-calendar-view.png b/packages/fhir-scheduler/docs/screenshots/03-calendar-view.png new file mode 100644 index 0000000..aac266a Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/03-calendar-view.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/04-time-slots.png b/packages/fhir-scheduler/docs/screenshots/04-time-slots.png new file mode 100644 index 0000000..1971a22 Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/04-time-slots.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/05-booking-form.png b/packages/fhir-scheduler/docs/screenshots/05-booking-form.png new file mode 100644 index 0000000..1f6672f Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/05-booking-form.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/06-booking-filled.png b/packages/fhir-scheduler/docs/screenshots/06-booking-filled.png new file mode 100644 index 0000000..fe86142 Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/06-booking-filled.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/07-confirmation.png b/packages/fhir-scheduler/docs/screenshots/07-confirmation.png new file mode 100644 index 0000000..cd51a21 Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/07-confirmation.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/08-mobile-provider-list.png b/packages/fhir-scheduler/docs/screenshots/08-mobile-provider-list.png new file mode 100644 index 0000000..b42746f Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/08-mobile-provider-list.png differ diff --git a/packages/fhir-scheduler/docs/screenshots/09-mobile-booking.png b/packages/fhir-scheduler/docs/screenshots/09-mobile-booking.png new file mode 100644 index 0000000..7bfff93 Binary files /dev/null and b/packages/fhir-scheduler/docs/screenshots/09-mobile-booking.png differ diff --git a/packages/fhir-scheduler/index.html b/packages/fhir-scheduler/index.html new file mode 100644 index 0000000..21ddabb --- /dev/null +++ b/packages/fhir-scheduler/index.html @@ -0,0 +1,209 @@ + + + + + + FHIR Scheduler Demo + + + + +
+

🗓️ FHIR Scheduler Widget

+

Embeddable appointment scheduling component with patient intake form

+
+ + + +
+ Demo: This widget connects to the FHIRTogether server. + Make sure to run npm run generate-data to populate test providers and slots. +
+ +
+ +
+ + + + diff --git a/packages/fhir-scheduler/package-lock.json b/packages/fhir-scheduler/package-lock.json new file mode 100644 index 0000000..3c42643 --- /dev/null +++ b/packages/fhir-scheduler/package-lock.json @@ -0,0 +1,2780 @@ +{ + "name": "@mieweb/fhir-scheduler", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "@mieweb/fhir-scheduler", + "version": "0.1.0", + "license": "MIT", + "dependencies": { + "@mieweb/forms-renderer": "^0.1.0", + "zustand": "^4.5.0" + }, + "devDependencies": { + "@playwright/test": "^1.57.0", + "@types/react": "^18.2.45", + "@types/react-dom": "^18.2.18", + "@vitejs/plugin-react": "^4.2.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "typescript": "^5.3.3", + "vite": "^5.0.10", + "vite-plugin-dts": "^3.7.0" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/@babel/code-frame": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-validator-identifier": "^7.27.1", + "js-tokens": "^4.0.0", + "picocolors": "^1.1.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.28.5.tgz", + "integrity": "sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.28.5.tgz", + "integrity": "sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-compilation-targets": "^7.27.2", + "@babel/helper-module-transforms": "^7.28.3", + "@babel/helpers": "^7.28.4", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/traverse": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/remapping": "^2.3.5", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/generator": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.28.5.tgz", + "integrity": "sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@babel/types": "^7.28.5", + "@jridgewell/gen-mapping": "^0.3.12", + "@jridgewell/trace-mapping": "^0.3.28", + "jsesc": "^3.0.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.27.2.tgz", + "integrity": "sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/compat-data": "^7.27.2", + "@babel/helper-validator-option": "^7.27.1", + "browserslist": "^4.24.0", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-globals": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@babel/helper-globals/-/helper-globals-7.28.0.tgz", + "integrity": "sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.27.1.tgz", + "integrity": "sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/traverse": "^7.27.1", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.28.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.28.3.tgz", + "integrity": "sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-module-imports": "^7.27.1", + "@babel/helper-validator-identifier": "^7.27.1", + "@babel/traverse": "^7.28.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.27.1.tgz", + "integrity": "sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz", + "integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz", + "integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.27.1.tgz", + "integrity": "sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.28.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.28.4.tgz", + "integrity": "sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.4" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.28.5.tgz", + "integrity": "sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.5" + }, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-self": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.27.1.tgz", + "integrity": "sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-source": { + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.27.1.tgz", + "integrity": "sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-plugin-utils": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/template": { + "version": "7.27.2", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.2.tgz", + "integrity": "sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/parser": "^7.27.2", + "@babel/types": "^7.27.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.28.5.tgz", + "integrity": "sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/code-frame": "^7.27.1", + "@babel/generator": "^7.28.5", + "@babel/helper-globals": "^7.28.0", + "@babel/parser": "^7.28.5", + "@babel/template": "^7.27.2", + "@babel/types": "^7.28.5", + "debug": "^4.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.28.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.28.5.tgz", + "integrity": "sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/helper-string-parser": "^7.27.1", + "@babel/helper-validator-identifier": "^7.28.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.13", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.13.tgz", + "integrity": "sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.0", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/remapping": { + "version": "2.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/remapping/-/remapping-2.3.5.tgz", + "integrity": "sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.24" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.5.tgz", + "integrity": "sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==", + "dev": true, + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.31", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.31.tgz", + "integrity": "sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@microsoft/api-extractor": { + "version": "7.43.0", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor/-/api-extractor-7.43.0.tgz", + "integrity": "sha512-GFhTcJpB+MI6FhvXEI9b2K0snulNLWHqC/BbcJtyNYcKUiw7l3Lgis5ApsYncJ0leALX7/of4XfmXk+maT111w==", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/api-extractor-model": "7.28.13", + "@microsoft/tsdoc": "0.14.2", + "@microsoft/tsdoc-config": "~0.16.1", + "@rushstack/node-core-library": "4.0.2", + "@rushstack/rig-package": "0.5.2", + "@rushstack/terminal": "0.10.0", + "@rushstack/ts-command-line": "4.19.1", + "lodash": "~4.17.15", + "minimatch": "~3.0.3", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "source-map": "~0.6.1", + "typescript": "5.4.2" + }, + "bin": { + "api-extractor": "bin/api-extractor" + } + }, + "node_modules/@microsoft/api-extractor-model": { + "version": "7.28.13", + "resolved": "https://registry.npmjs.org/@microsoft/api-extractor-model/-/api-extractor-model-7.28.13.tgz", + "integrity": "sha512-39v/JyldX4MS9uzHcdfmjjfS6cYGAoXV+io8B5a338pkHiSt+gy2eXQ0Q7cGFJ7quSa1VqqlMdlPrB6sLR/cAw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/tsdoc": "0.14.2", + "@microsoft/tsdoc-config": "~0.16.1", + "@rushstack/node-core-library": "4.0.2" + } + }, + "node_modules/@microsoft/api-extractor/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/api-extractor/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@microsoft/api-extractor/node_modules/typescript": { + "version": "5.4.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.4.2.tgz", + "integrity": "sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/@microsoft/api-extractor/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/@microsoft/tsdoc": { + "version": "0.14.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc/-/tsdoc-0.14.2.tgz", + "integrity": "sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==", + "dev": true, + "license": "MIT" + }, + "node_modules/@microsoft/tsdoc-config": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@microsoft/tsdoc-config/-/tsdoc-config-0.16.2.tgz", + "integrity": "sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/tsdoc": "0.14.2", + "ajv": "~6.12.6", + "jju": "~1.4.0", + "resolve": "~1.19.0" + } + }, + "node_modules/@microsoft/tsdoc-config/node_modules/resolve": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.19.0.tgz", + "integrity": "sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.1.0", + "path-parse": "^1.0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/@mieweb/forms-engine": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/@mieweb/forms-engine/-/forms-engine-0.1.15.tgz", + "integrity": "sha512-EJVndC8JroZu3tm5AB8e1f0j7ipIPSWW+iuRaRAtz5DO26qWW/OU++NMn1ElvGMGZW5cVJzg3jSEl6tF+XZUQg==", + "dependencies": { + "js-yaml": "^4.1.0", + "zustand": "^5.0.8" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + } + }, + "node_modules/@mieweb/forms-engine/node_modules/zustand": { + "version": "5.0.9", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-5.0.9.tgz", + "integrity": "sha512-ALBtUj0AfjJt3uNRQoL1tL2tMvj6Gp/6e39dnfT6uzpelGru8v1tPOGBzayOWbPJvujM8JojDk3E1LxeFisBNg==", + "license": "MIT", + "engines": { + "node": ">=12.20.0" + }, + "peerDependencies": { + "@types/react": ">=18.0.0", + "immer": ">=9.0.6", + "react": ">=18.0.0", + "use-sync-external-store": ">=1.2.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + }, + "use-sync-external-store": { + "optional": true + } + } + }, + "node_modules/@mieweb/forms-renderer": { + "version": "0.1.18", + "resolved": "https://registry.npmjs.org/@mieweb/forms-renderer/-/forms-renderer-0.1.18.tgz", + "integrity": "sha512-qSPH7eU26KEgj405pffcGz/IMFPCejrHJ8ewhkqurnxZbuNLlU2BUfPyUoF1Nw67qfXbEjcE43HmDHsW5m7hmA==", + "dependencies": { + "@mieweb/forms-engine": "^0.1.15" + }, + "peerDependencies": { + "react": ">=18.0.0", + "react-dom": ">=18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + } + }, + "node_modules/@playwright/test": { + "version": "1.57.0", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.57.0.tgz", + "integrity": "sha512-6TyEnHgd6SArQO8UO2OMTxshln3QMWBtPGrOCgs3wVEmQmwyuNtB10IZMfmYDE0riwNR1cu4q+pPcxMVtaG3TA==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright": "1.57.0" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@rolldown/pluginutils": { + "version": "1.0.0-beta.27", + "resolved": "https://registry.npmjs.org/@rolldown/pluginutils/-/pluginutils-1.0.0-beta.27.tgz", + "integrity": "sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@rollup/pluginutils": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.53.3.tgz", + "integrity": "sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.53.3.tgz", + "integrity": "sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.53.3.tgz", + "integrity": "sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.53.3.tgz", + "integrity": "sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.53.3.tgz", + "integrity": "sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.53.3.tgz", + "integrity": "sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.53.3.tgz", + "integrity": "sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.53.3.tgz", + "integrity": "sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.53.3.tgz", + "integrity": "sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.53.3.tgz", + "integrity": "sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.53.3.tgz", + "integrity": "sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.53.3.tgz", + "integrity": "sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.53.3.tgz", + "integrity": "sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.53.3.tgz", + "integrity": "sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.53.3.tgz", + "integrity": "sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.53.3.tgz", + "integrity": "sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.53.3.tgz", + "integrity": "sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.53.3.tgz", + "integrity": "sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.53.3.tgz", + "integrity": "sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.53.3.tgz", + "integrity": "sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.53.3.tgz", + "integrity": "sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.53.3.tgz", + "integrity": "sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rushstack/node-core-library": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@rushstack/node-core-library/-/node-core-library-4.0.2.tgz", + "integrity": "sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "fs-extra": "~7.0.1", + "import-lazy": "~4.0.0", + "jju": "~1.4.0", + "resolve": "~1.22.1", + "semver": "~7.5.4", + "z-schema": "~5.0.2" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/node-core-library/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/node-core-library/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "license": "ISC", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@rushstack/node-core-library/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "license": "ISC" + }, + "node_modules/@rushstack/rig-package": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/@rushstack/rig-package/-/rig-package-0.5.2.tgz", + "integrity": "sha512-mUDecIJeH3yYGZs2a48k+pbhM6JYwWlgjs2Ca5f2n1G2/kgdgP9D/07oglEGf6mRyXEnazhEENeYTSNDRCwdqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "resolve": "~1.22.1", + "strip-json-comments": "~3.1.1" + } + }, + "node_modules/@rushstack/terminal": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/@rushstack/terminal/-/terminal-0.10.0.tgz", + "integrity": "sha512-UbELbXnUdc7EKwfH2sb8ChqNgapUOdqcCIdQP4NGxBpTZV2sQyeekuK3zmfQSa/MN+/7b4kBogl2wq0vpkpYGw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rushstack/node-core-library": "4.0.2", + "supports-color": "~8.1.1" + }, + "peerDependencies": { + "@types/node": "*" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + } + } + }, + "node_modules/@rushstack/ts-command-line": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/@rushstack/ts-command-line/-/ts-command-line-4.19.1.tgz", + "integrity": "sha512-J7H768dgcpG60d7skZ5uSSwyCZs/S2HrWP1Ds8d1qYAyaaeJmpmmLr9BVw97RjFzmQPOYnoXcKA4GkqDCkduQg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rushstack/terminal": "0.10.0", + "@types/argparse": "1.0.38", + "argparse": "~1.0.9", + "string-argv": "~0.3.1" + } + }, + "node_modules/@types/argparse": { + "version": "1.0.38", + "resolved": "https://registry.npmjs.org/@types/argparse/-/argparse-1.0.38.tgz", + "integrity": "sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.27.0", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.27.0.tgz", + "integrity": "sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.28.0", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.28.0.tgz", + "integrity": "sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/types": "^7.28.2" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/prop-types": { + "version": "15.7.15", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz", + "integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.27", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.27.tgz", + "integrity": "sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.2.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.7", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz", + "integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "@types/react": "^18.0.0" + } + }, + "node_modules/@vitejs/plugin-react": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react/-/plugin-react-4.7.0.tgz", + "integrity": "sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/core": "^7.28.0", + "@babel/plugin-transform-react-jsx-self": "^7.27.1", + "@babel/plugin-transform-react-jsx-source": "^7.27.1", + "@rolldown/pluginutils": "1.0.0-beta.27", + "@types/babel__core": "^7.20.5", + "react-refresh": "^0.17.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/@volar/language-core": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/language-core/-/language-core-1.11.1.tgz", + "integrity": "sha512-dOcNn3i9GgZAcJt43wuaEykSluAuOkQgzni1cuxLxTV0nJKanQztp7FxyswdRILaKH+P2XZMPRp2S4MV/pElCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/source-map": "1.11.1" + } + }, + "node_modules/@volar/source-map": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/source-map/-/source-map-1.11.1.tgz", + "integrity": "sha512-hJnOnwZ4+WT5iupLRnuzbULZ42L7BWWPMmruzwtLhJfpDVoZLjNBxHDi2sY2bgZXCKlpU5XcsMFoYrsQmPhfZg==", + "dev": true, + "license": "MIT", + "dependencies": { + "muggle-string": "^0.3.1" + } + }, + "node_modules/@volar/typescript": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@volar/typescript/-/typescript-1.11.1.tgz", + "integrity": "sha512-iU+t2mas/4lYierSnoFOeRFQUhAEMgsFuQxoxvwn5EdQopw43j+J27a4lt9LMInx1gLJBC6qL14WYGlgymaSMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "1.11.1", + "path-browserify": "^1.0.1" + } + }, + "node_modules/@vue/compiler-core": { + "version": "3.5.25", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.5.25.tgz", + "integrity": "sha512-vay5/oQJdsNHmliWoZfHPoVZZRmnSWhug0BYT34njkYTPqClh3DNWLkZNJBVSjsNMrg0CCrBfoKkjZQPM/QVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@babel/parser": "^7.28.5", + "@vue/shared": "3.5.25", + "entities": "^4.5.0", + "estree-walker": "^2.0.2", + "source-map-js": "^1.2.1" + } + }, + "node_modules/@vue/compiler-dom": { + "version": "3.5.25", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.5.25.tgz", + "integrity": "sha512-4We0OAcMZsKgYoGlMjzYvaoErltdFI2/25wqanuTu+S4gismOTRTBPi4IASOjxWdzIwrYSjnqONfKvuqkXzE2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@vue/compiler-core": "3.5.25", + "@vue/shared": "3.5.25" + } + }, + "node_modules/@vue/language-core": { + "version": "1.8.27", + "resolved": "https://registry.npmjs.org/@vue/language-core/-/language-core-1.8.27.tgz", + "integrity": "sha512-L8Kc27VdQserNaCUNiSFdDl9LWT24ly8Hpwf1ECy3aFb9m6bDhBGQYOujDm21N7EW3moKIOKEanQwe1q5BK+mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/language-core": "~1.11.1", + "@volar/source-map": "~1.11.1", + "@vue/compiler-dom": "^3.3.0", + "@vue/shared": "^3.3.0", + "computeds": "^0.0.1", + "minimatch": "^9.0.3", + "muggle-string": "^0.3.1", + "path-browserify": "^1.0.1", + "vue-template-compiler": "^2.7.14" + }, + "peerDependencies": { + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@vue/language-core/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@vue/language-core/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@vue/shared": { + "version": "3.5.25", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.5.25.tgz", + "integrity": "sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==", + "dev": true, + "license": "MIT" + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/baseline-browser-mapping": { + "version": "2.9.6", + "resolved": "https://registry.npmjs.org/baseline-browser-mapping/-/baseline-browser-mapping-2.9.6.tgz", + "integrity": "sha512-v9BVVpOTLB59C9E7aSnmIF8h7qRsFpx+A2nugVMTszEOMcfjlZMsXRm4LF23I3Z9AJxc8ANpIvzbzONoX9VJlg==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "baseline-browser-mapping": "dist/cli.js" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/browserslist": { + "version": "4.28.1", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.28.1.tgz", + "integrity": "sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "baseline-browser-mapping": "^2.9.0", + "caniuse-lite": "^1.0.30001759", + "electron-to-chromium": "^1.5.263", + "node-releases": "^2.0.27", + "update-browserslist-db": "^1.2.0" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001760", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001760.tgz", + "integrity": "sha512-7AAMPcueWELt1p3mi13HR/LHH0TJLT11cnwDJEs3xA4+CK/PLKeO9Kl1oru24htkyUKtkGCvAx4ohB0Ttry8Dw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "license": "MIT", + "optional": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/computeds": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/computeds/-/computeds-0.0.1.tgz", + "integrity": "sha512-7CEBgcMjVmitjYo5q8JTJVra6X5mQ20uTThdK+0kR7UEaDrAWEQcRiBtWJzga4eRpP6afNwwLsX2SET2JhVB1Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true, + "license": "MIT" + }, + "node_modules/csstype": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz", + "integrity": "sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/electron-to-chromium": { + "version": "1.5.267", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.267.tgz", + "integrity": "sha512-0Drusm6MVRXSOJpGbaSVgcQsuB4hEkMpHXaVstcPmhu5LIedxs1xNK/nIxmQIU/RPC0+1/o0AVZfBTkTNJOdUw==", + "dev": true, + "license": "ISC" + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fs-extra": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz", + "integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "graceful-fs": "^4.1.2", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "license": "MIT", + "bin": { + "he": "bin/he" + } + }, + "node_modules/import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/jju": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/jju/-/jju-1.4.0.tgz", + "integrity": "sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==", + "dev": true, + "license": "MIT" + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.1.tgz", + "integrity": "sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==", + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/js-yaml/node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "license": "Python-2.0" + }, + "node_modules/jsesc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", + "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", + "dev": true, + "license": "MIT", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "license": "MIT", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "dev": true, + "license": "MIT", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.get": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", + "integrity": "sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==", + "deprecated": "This package is deprecated. Use the optional chaining (?.) operator instead.", + "dev": true, + "license": "MIT" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead.", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "license": "ISC", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.30.21", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz", + "integrity": "sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.5.5" + } + }, + "node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/muggle-string": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/muggle-string/-/muggle-string-0.3.1.tgz", + "integrity": "sha512-ckmWDJjphvd/FvZawgygcUeQCxzvohjFO5RxTjj4eq8kw359gFF3E1brjfI+viLMxss5JrHTDRHZvu2/tuy0Qg==", + "dev": true, + "license": "MIT" + }, + "node_modules/nanoid": { + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/node-releases": { + "version": "2.0.27", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.27.tgz", + "integrity": "sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-browserify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true, + "license": "MIT" + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "dev": true, + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/playwright": { + "version": "1.57.0", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.57.0.tgz", + "integrity": "sha512-ilYQj1s8sr2ppEJ2YVadYBN0Mb3mdo9J0wQ+UuDhzYqURwSoW4n1Xs5vs7ORwgDGmyEh33tRMeS8KhdkMoLXQw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "playwright-core": "1.57.0" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "node_modules/playwright-core": { + "version": "1.57.0", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.57.0.tgz", + "integrity": "sha512-agTcKlMw/mjBWOnD6kFZttAAGHgi/Nw0CZ2o6JqWSbMlI219lAFLZZCyqByTsvVAJq5XA5H8cA6PrvBRpBWEuQ==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/playwright/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/postcss": { + "version": "8.5.6", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz", + "integrity": "sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.11", + "picocolors": "^1.1.1", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-refresh": { + "version": "0.17.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.17.0.tgz", + "integrity": "sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/rollup": { + "version": "4.53.3", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.53.3.tgz", + "integrity": "sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.53.3", + "@rollup/rollup-android-arm64": "4.53.3", + "@rollup/rollup-darwin-arm64": "4.53.3", + "@rollup/rollup-darwin-x64": "4.53.3", + "@rollup/rollup-freebsd-arm64": "4.53.3", + "@rollup/rollup-freebsd-x64": "4.53.3", + "@rollup/rollup-linux-arm-gnueabihf": "4.53.3", + "@rollup/rollup-linux-arm-musleabihf": "4.53.3", + "@rollup/rollup-linux-arm64-gnu": "4.53.3", + "@rollup/rollup-linux-arm64-musl": "4.53.3", + "@rollup/rollup-linux-loong64-gnu": "4.53.3", + "@rollup/rollup-linux-ppc64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-gnu": "4.53.3", + "@rollup/rollup-linux-riscv64-musl": "4.53.3", + "@rollup/rollup-linux-s390x-gnu": "4.53.3", + "@rollup/rollup-linux-x64-gnu": "4.53.3", + "@rollup/rollup-linux-x64-musl": "4.53.3", + "@rollup/rollup-openharmony-arm64": "4.53.3", + "@rollup/rollup-win32-arm64-msvc": "4.53.3", + "@rollup/rollup-win32-ia32-msvc": "4.53.3", + "@rollup/rollup-win32-x64-gnu": "4.53.3", + "@rollup/rollup-win32-x64-msvc": "4.53.3", + "fsevents": "~2.3.2" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/string-argv": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz", + "integrity": "sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6.19" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.2.2.tgz", + "integrity": "sha512-E85pfNzMQ9jpKkA7+TJAi4TJN+tBCuWh5rUcS/sv6cFi+1q9LYDwDI5dpUL0u/73EElyQ8d3TEaeW4sPedBqYA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.1" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-sync-external-store": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.6.0.tgz", + "integrity": "sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0" + } + }, + "node_modules/validator": { + "version": "13.15.23", + "resolved": "https://registry.npmjs.org/validator/-/validator-13.15.23.tgz", + "integrity": "sha512-4yoz1kEWqUjzi5zsPbAS/903QXSYp0UOtHsPpp7p9rHAw/W+dkInskAE386Fat3oKRROwO98d9ZB0G4cObgUyw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/vite": { + "version": "5.4.21", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.21.tgz", + "integrity": "sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-dts": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/vite-plugin-dts/-/vite-plugin-dts-3.9.1.tgz", + "integrity": "sha512-rVp2KM9Ue22NGWB8dNtWEr+KekN3rIgz1tWD050QnRGlriUCmaDwa7qA5zDEjbXg5lAXhYMSBJtx3q3hQIJZSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@microsoft/api-extractor": "7.43.0", + "@rollup/pluginutils": "^5.1.0", + "@vue/language-core": "^1.8.27", + "debug": "^4.3.4", + "kolorist": "^1.8.0", + "magic-string": "^0.30.8", + "vue-tsc": "^1.8.27" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "typescript": "*", + "vite": "*" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/vue-template-compiler": { + "version": "2.7.16", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.16.tgz", + "integrity": "sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/vue-tsc": { + "version": "1.8.27", + "resolved": "https://registry.npmjs.org/vue-tsc/-/vue-tsc-1.8.27.tgz", + "integrity": "sha512-WesKCAZCRAbmmhuGl3+VrdWItEvfoFIPXOvUJkjULi+x+6G/Dy69yO3TBRJDr9eUlmsNAwVmxsNZxvHKzbkKdg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@volar/typescript": "~1.11.1", + "@vue/language-core": "1.8.27", + "semver": "^7.5.4" + }, + "bin": { + "vue-tsc": "bin/vue-tsc.js" + }, + "peerDependencies": { + "typescript": "*" + } + }, + "node_modules/vue-tsc/node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true, + "license": "ISC" + }, + "node_modules/z-schema": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/z-schema/-/z-schema-5.0.5.tgz", + "integrity": "sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "lodash.get": "^4.4.2", + "lodash.isequal": "^4.5.0", + "validator": "^13.7.0" + }, + "bin": { + "z-schema": "bin/z-schema" + }, + "engines": { + "node": ">=8.0.0" + }, + "optionalDependencies": { + "commander": "^9.4.1" + } + }, + "node_modules/zustand": { + "version": "4.5.7", + "resolved": "https://registry.npmjs.org/zustand/-/zustand-4.5.7.tgz", + "integrity": "sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==", + "license": "MIT", + "dependencies": { + "use-sync-external-store": "^1.2.2" + }, + "engines": { + "node": ">=12.7.0" + }, + "peerDependencies": { + "@types/react": ">=16.8", + "immer": ">=9.0.6", + "react": ">=16.8" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "immer": { + "optional": true + }, + "react": { + "optional": true + } + } + } + } +} diff --git a/packages/fhir-scheduler/package.json b/packages/fhir-scheduler/package.json new file mode 100644 index 0000000..17a60f3 --- /dev/null +++ b/packages/fhir-scheduler/package.json @@ -0,0 +1,73 @@ +{ + "name": "@mieweb/fhir-scheduler", + "version": "0.1.0", + "description": "Embeddable FHIR scheduling widget for browsing provider schedules and booking appointments", + "type": "module", + "main": "./dist/index.cjs", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + ".": { + "import": "./dist/index.js", + "require": "./dist/index.cjs", + "types": "./dist/index.d.ts" + }, + "./standalone": { + "import": "./dist/standalone.js", + "types": "./dist/standalone.d.ts" + } + }, + "files": [ + "dist" + ], + "scripts": { + "dev": "vite", + "build": "vite build && vite build --config vite.config.standalone.ts", + "build:lib": "vite build", + "build:standalone": "vite build --config vite.config.standalone.ts", + "preview": "vite preview", + "typecheck": "tsc --noEmit", + "lint": "eslint src --ext .ts,.tsx", + "test": "playwright test", + "test:ui": "playwright test --ui", + "test:headed": "playwright test --headed", + "screenshots": "playwright test tests/screenshots.spec.ts" + }, + "keywords": [ + "fhir", + "scheduler", + "appointments", + "healthcare", + "react", + "web-component" + ], + "author": "MieWeb", + "license": "MIT", + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + }, + "peerDependenciesMeta": { + "react": { + "optional": true + }, + "react-dom": { + "optional": true + } + }, + "dependencies": { + "@mieweb/forms-renderer": "^0.1.0", + "zustand": "^4.5.0" + }, + "devDependencies": { + "@playwright/test": "^1.57.0", + "@types/react": "^18.2.45", + "@types/react-dom": "^18.2.18", + "@vitejs/plugin-react": "^4.2.1", + "react": "^18.2.0", + "react-dom": "^18.2.0", + "typescript": "^5.3.3", + "vite": "^5.0.10", + "vite-plugin-dts": "^3.7.0" + } +} diff --git a/packages/fhir-scheduler/playwright.config.ts b/packages/fhir-scheduler/playwright.config.ts new file mode 100644 index 0000000..aca5c37 --- /dev/null +++ b/packages/fhir-scheduler/playwright.config.ts @@ -0,0 +1,53 @@ +import { defineConfig, devices } from '@playwright/test'; + +/** + * Playwright configuration for FHIR Scheduler Widget tests + * + * Usage: + * npx playwright test + * + * Prerequisites: + * - Test data is auto-generated if missing (via globalSetup) + * - Servers are auto-started (via webServer config) + */ +export default defineConfig({ + testDir: './tests', + fullyParallel: true, + forbidOnly: !!process.env.CI, + retries: process.env.CI ? 2 : 0, + /* Use 1 worker to avoid slot hold conflicts between parallel tests */ + workers: 1, + reporter: 'html', + + /* Auto-generate test data if missing */ + globalSetup: './tests/global-setup.ts', + + use: { + baseURL: 'http://localhost:5174', + trace: 'on-first-retry', + }, + + projects: [ + { + name: 'chromium', + use: { ...devices['Desktop Chrome'] }, + }, + ], + + /* Start both servers before running tests */ + webServer: [ + { + command: 'npm run dev', + cwd: '../..', // FHIRTogether root + url: 'http://localhost:4010/health', + reuseExistingServer: !process.env.CI, + timeout: 30000, + }, + { + command: 'npm run dev', + url: 'http://localhost:5174', + reuseExistingServer: !process.env.CI, + timeout: 30000, + }, + ], +}); diff --git a/packages/fhir-scheduler/provider-view.html b/packages/fhir-scheduler/provider-view.html new file mode 100644 index 0000000..dbf08b9 --- /dev/null +++ b/packages/fhir-scheduler/provider-view.html @@ -0,0 +1,67 @@ + + + + + + Provider View - FHIR Scheduler + + + + +
+

🗓️ FHIR Scheduler

+

Provider appointment view

+
+ + + +
+ + + + diff --git a/packages/fhir-scheduler/src/api/fhirClient.ts b/packages/fhir-scheduler/src/api/fhirClient.ts new file mode 100644 index 0000000..40d64ee --- /dev/null +++ b/packages/fhir-scheduler/src/api/fhirClient.ts @@ -0,0 +1,259 @@ +import type { + Schedule, + Slot, + Appointment, + PatientInfo, + QuestionnaireResponse, + SlotHold, + Bundle, +} from '../types'; + +export interface FhirClientConfig { + baseUrl: string; + headers?: Record; +} + +export interface AppointmentQuery { + date?: string; + status?: string; + actor?: string; + patient?: string; + _count?: number; +} + +export interface FhirClient { + getProviders(): Promise; + getSlots(scheduleId: string, start: string, end: string): Promise; + getSlotCounts(scheduleId: string, dates: string[]): Promise>; + getAppointments(query: AppointmentQuery): Promise; + holdSlot(slotId: string, durationMinutes: number, sessionId: string): Promise; + releaseHold(slotId: string, holdToken: string): Promise; + checkHold(slotId: string): Promise; + bookAppointment( + slot: Slot, + patientInfo: PatientInfo, + holdToken: string, + questionnaireResponse?: QuestionnaireResponse, + provider?: Schedule, + visitType?: string + ): Promise; +} + +export function createFhirClient(config: FhirClientConfig): FhirClient { + const { baseUrl, headers = {} } = config; + + const defaultHeaders = { + 'Content-Type': 'application/json', + ...headers, + }; + + return { + async getProviders(): Promise { + const res = await fetch(`${baseUrl}/Schedule?active=true`, { + headers: defaultHeaders, + }); + + if (!res.ok) { + throw new Error(`Failed to fetch providers: ${res.statusText}`); + } + + const bundle: Bundle = await res.json(); + return bundle.entry?.map((e) => e.resource) || []; + }, + + async getSlots(scheduleId: string, start: string, end: string): Promise { + const params = new URLSearchParams({ + schedule: `Schedule/${scheduleId}`, + status: 'free', + start: start, + end: end, + }); + + const res = await fetch(`${baseUrl}/Slot?${params}`, { + headers: defaultHeaders, + }); + + if (!res.ok) { + throw new Error(`Failed to fetch slots: ${res.statusText}`); + } + + const bundle: Bundle = await res.json(); + return bundle.entry?.map((e) => e.resource) || []; + }, + + async getSlotCounts(scheduleId: string, dates: string[]): Promise> { + // Fetch all slots for the date range and count per day + const startDate = dates[0]; + const endDate = dates[dates.length - 1]; + + const params = new URLSearchParams({ + schedule: `Schedule/${scheduleId}`, + status: 'free', + start: `${startDate}T00:00:00`, + end: `${endDate}T23:59:59`, + }); + + const res = await fetch(`${baseUrl}/Slot?${params}`, { + headers: defaultHeaders, + }); + + if (!res.ok) { + // Return empty counts on error + return {}; + } + + const bundle: Bundle = await res.json(); + const slots = bundle.entry?.map((e) => e.resource) || []; + + // Count slots per date + const counts: Record = {}; + for (const date of dates) { + counts[date] = 0; + } + + for (const slot of slots) { + const slotDate = slot.start.split('T')[0]; + if (counts[slotDate] !== undefined) { + counts[slotDate]++; + } + } + + return counts; + }, + + async getAppointments(query: AppointmentQuery): Promise { + const params = new URLSearchParams(); + if (query.date) params.set('date', query.date); + if (query.status) params.set('status', query.status); + if (query.actor) params.set('actor', query.actor); + if (query.patient) params.set('patient', query.patient); + if (query._count) params.set('_count', String(query._count)); + + const res = await fetch(`${baseUrl}/Appointment?${params}`, { + headers: defaultHeaders, + }); + + if (!res.ok) { + throw new Error(`Failed to fetch appointments: ${res.statusText}`); + } + + const bundle: Bundle = await res.json(); + return bundle.entry?.map((e) => e.resource) || []; + }, + + async holdSlot(slotId: string, durationMinutes: number, sessionId: string): Promise { + const res = await fetch(`${baseUrl}/Slot/${slotId}/$hold`, { + method: 'POST', + headers: defaultHeaders, + body: JSON.stringify({ + durationMinutes, + sessionId, + }), + }); + + if (!res.ok) { + if (res.status === 409) { + throw new Error('Slot is already held by another user'); + } + throw new Error(`Failed to hold slot: ${res.statusText}`); + } + + return res.json(); + }, + + async releaseHold(slotId: string, holdToken: string): Promise { + const res = await fetch(`${baseUrl}/Slot/${slotId}/$hold/${holdToken}`, { + method: 'DELETE', + headers: defaultHeaders, + }); + + // Ignore 404 (hold already released/expired) + if (!res.ok && res.status !== 404) { + throw new Error(`Failed to release hold: ${res.statusText}`); + } + }, + + async checkHold(slotId: string): Promise { + const res = await fetch(`${baseUrl}/Slot/${slotId}/$hold`, { + headers: defaultHeaders, + }); + + if (res.status === 404) { + return null; + } + + if (!res.ok) { + throw new Error(`Failed to check hold: ${res.statusText}`); + } + + return res.json(); + }, + + async bookAppointment( + slot: Slot, + patientInfo: PatientInfo, + holdToken: string, + questionnaireResponse?: QuestionnaireResponse, + provider?: Schedule, + visitType?: string + ): Promise { + const participants: Appointment['participant'] = []; + + // Add provider/practitioner as participant if available + if (provider?.actor?.[0]) { + participants.push({ + actor: { + reference: provider.actor[0].reference, + display: provider.actor[0].display, + }, + status: 'accepted', + }); + } + + // Add patient as participant + participants.push({ + actor: { + reference: `Patient/${patientInfo.name.toLowerCase().replace(/\s+/g, '-')}`, + display: patientInfo.name, + }, + status: 'accepted', + }); + + // Build a human-readable description from visit type + const description = visitType === 'new-patient' + ? 'New Patient Visit' + : visitType === 'follow-up' + ? 'Follow Up Visit' + : undefined; + + const appointment: Appointment & { _holdToken?: string } = { + resourceType: 'Appointment', + status: 'booked', + slot: [{ reference: `Slot/${slot.id}` }], + start: slot.start, + end: slot.end, + description, + participant: participants, + comment: patientInfo.reason, + _holdToken: holdToken, + contained: questionnaireResponse ? [questionnaireResponse] : undefined, + }; + + const res = await fetch(`${baseUrl}/Appointment`, { + method: 'POST', + headers: defaultHeaders, + body: JSON.stringify(appointment), + }); + + if (res.status === 409) { + throw new Error('Slot is no longer available. Please select a different time.'); + } + + if (!res.ok) { + throw new Error(`Booking failed: ${res.statusText}`); + } + + return res.json(); + }, + }; +} diff --git a/packages/fhir-scheduler/src/components/AppointmentList.tsx b/packages/fhir-scheduler/src/components/AppointmentList.tsx new file mode 100644 index 0000000..8756143 --- /dev/null +++ b/packages/fhir-scheduler/src/components/AppointmentList.tsx @@ -0,0 +1,483 @@ +import { useState, useEffect, useMemo, useCallback } from 'react'; +import type { Appointment, Schedule, Bundle } from '../types'; + +type ViewMode = 'day' | 'week'; + +interface AppointmentListProps { + /** Base URL of the FHIR server */ + fhirBaseUrl: string; + /** Additional CSS classes */ + className?: string; +} + +/** + * Format time for display (e.g., "2:30 PM") + */ +function formatTime(isoString: string): string { + const date = new Date(isoString); + return date.toLocaleTimeString('en-US', { + hour: 'numeric', + minute: '2-digit', + hour12: true, + }); +} + +/** + * Format date header (e.g., "Tuesday, February 17") + */ +function formatDateHeader(dateStr: string): string { + const date = new Date(dateStr + 'T00:00:00'); + return date.toLocaleDateString('en-US', { + weekday: 'long', + month: 'long', + day: 'numeric', + }); +} + +/** + * Format short date (e.g., "Mon 2/17") + */ +function formatShortDate(dateStr: string): string { + const date = new Date(dateStr + 'T00:00:00'); + return date.toLocaleDateString('en-US', { + weekday: 'short', + month: 'numeric', + day: 'numeric', + }); +} + +/** + * Format duration between two ISO strings + */ +function formatDuration(start: string, end: string): string { + const minutes = Math.round((new Date(end).getTime() - new Date(start).getTime()) / 60000); + if (minutes < 60) return `${minutes}m`; + const hours = Math.floor(minutes / 60); + const remaining = minutes % 60; + return remaining > 0 ? `${hours}h ${remaining}m` : `${hours}h`; +} + +/** + * Get the local date string (YYYY-MM-DD) for a date. + * Uses local time components to stay consistent with naive (no-timezone) datetimes. + */ +function toDateString(date: Date): string { + const y = date.getFullYear(); + const m = String(date.getMonth() + 1).padStart(2, '0'); + const d = String(date.getDate()).padStart(2, '0'); + return `${y}-${m}-${d}`; +} + +/** + * Get the Monday of the week containing the given date + */ +function getWeekStart(date: Date): Date { + const d = new Date(date); + const day = d.getDay(); + const diff = day === 0 ? -6 : 1 - day; // Monday = start of week + d.setDate(d.getDate() + diff); + return d; +} + +/** + * Get array of 7 date strings for the week containing the given date + */ +function getWeekDates(date: Date): string[] { + const start = getWeekStart(date); + return Array.from({ length: 7 }, (_, i) => { + const d = new Date(start); + d.setDate(start.getDate() + i); + return toDateString(d); + }); +} + +/** + * Get patient display name from appointment participants + */ +function getPatientDisplay(appointment: Appointment): string { + const patient = appointment.participant?.find( + (p) => p.actor?.reference?.includes('Patient/') + ); + return patient?.actor?.display || 'Unknown patient'; +} + +/** + * Get location display name from appointment participants + */ +function getLocationDisplay(appointment: Appointment): string | null { + const location = appointment.participant?.find( + (p) => p.actor?.reference?.includes('Location/') + ); + return location?.actor?.display || null; +} + +/** + * Get provider display name from schedule + */ +function getProviderName(schedule: Schedule): string { + const firstActor = schedule.actor?.[0]; + return firstActor?.display || firstActor?.reference?.split('/').pop() || 'Provider'; +} + +/** + * Status badge color mapping + */ +function getStatusColor(status: string): string { + switch (status) { + case 'booked': return '#2563eb'; + case 'arrived': return '#059669'; + case 'fulfilled': return '#16a34a'; + case 'cancelled': return '#dc2626'; + case 'noshow': return '#ea580c'; + case 'pending': return '#d97706'; + case 'proposed': return '#7c3aed'; + case 'checked-in': return '#0891b2'; + default: return '#6b7280'; + } +} + +/** + * Group appointments by date + */ +function groupByDate(appointments: Appointment[]): Record { + const groups: Record = {}; + for (const appt of appointments) { + if (!appt.start) continue; + const dateKey = appt.start.split('T')[0]; + if (!groups[dateKey]) groups[dateKey] = []; + groups[dateKey].push(appt); + } + // Sort each group by start time + for (const group of Object.values(groups)) { + group.sort((a, b) => new Date(a.start!).getTime() - new Date(b.start!).getTime()); + } + return groups; +} + +export function AppointmentList({ fhirBaseUrl, className = '' }: AppointmentListProps) { + const [providers, setProviders] = useState([]); + const [selectedProvider, setSelectedProvider] = useState(null); + const [appointments, setAppointments] = useState([]); + const [loading, setLoading] = useState(false); + const [providersLoading, setProvidersLoading] = useState(true); + const [error, setError] = useState(null); + const [viewMode, setViewMode] = useState('day'); + const [currentDate, setCurrentDate] = useState(() => new Date()); + + const headers = useMemo(() => ({ 'Content-Type': 'application/json' }), []); + + // Fetch providers on mount + useEffect(() => { + async function fetchProviders() { + setProvidersLoading(true); + try { + const res = await fetch(`${fhirBaseUrl}/Schedule?active=true`, { headers }); + if (!res.ok) throw new Error(`Failed to fetch providers: ${res.statusText}`); + const bundle: Bundle = await res.json(); + const list = bundle.entry?.map((e) => e.resource) || []; + setProviders(list); + if (list.length > 0) setSelectedProvider(list[0]); + } catch (err) { + setError(err instanceof Error ? err.message : 'Failed to load providers'); + } finally { + setProvidersLoading(false); + } + } + fetchProviders(); + }, [fhirBaseUrl, headers]); + + // Compute the date range for fetching + const dateRange = useMemo(() => { + if (viewMode === 'day') { + const dateStr = toDateString(currentDate); + return { start: dateStr, end: dateStr }; + } + const weekDates = getWeekDates(currentDate); + return { start: weekDates[0], end: weekDates[6] }; + }, [viewMode, currentDate]); + + // Fetch appointments when provider or date range changes + useEffect(() => { + if (!selectedProvider) return; + + async function fetchAppointments() { + setLoading(true); + setError(null); + try { + // Fetch all appointments for the date range + // Build date queries for each day in range + const startDate = new Date(dateRange.start + 'T00:00:00'); + const endDate = new Date(dateRange.end + 'T23:59:59'); + + // Use actor param to filter by provider's practitioner reference + const practitionerRef = selectedProvider!.actor?.[0]?.reference || `Schedule/${selectedProvider!.id}`; + + // For multi-day ranges, we need to fetch day by day since the API + // filters by single date. Alternatively, fetch without date filter + // and filter client-side, or fetch each day. + const allAppointments: Appointment[] = []; + const current = new Date(startDate); + + while (current <= endDate) { + const dateStr = toDateString(current); + const params = new URLSearchParams({ date: dateStr, actor: practitionerRef }); + const res = await fetch(`${fhirBaseUrl}/Appointment?${params}`, { headers }); + if (res.ok) { + const bundle: Bundle = await res.json(); + const dayAppts = bundle.entry?.map((e) => e.resource) || []; + allAppointments.push(...dayAppts); + } + current.setDate(current.getDate() + 1); + } + + setAppointments(allAppointments); + } catch (err) { + setError(err instanceof Error ? err.message : 'Failed to load appointments'); + } finally { + setLoading(false); + } + } + fetchAppointments(); + }, [selectedProvider, dateRange, fhirBaseUrl, headers]); + + const groupedAppointments = useMemo(() => groupByDate(appointments), [appointments]); + + // Dates to display (either single day or week) + const displayDates = useMemo(() => { + if (viewMode === 'day') return [toDateString(currentDate)]; + return getWeekDates(currentDate); + }, [viewMode, currentDate]); + + const navigateBack = useCallback(() => { + const newDate = new Date(currentDate); + if (viewMode === 'day') { + newDate.setDate(newDate.getDate() - 1); + } else { + newDate.setDate(newDate.getDate() - 7); + } + setCurrentDate(newDate); + }, [currentDate, viewMode]); + + const navigateForward = useCallback(() => { + const newDate = new Date(currentDate); + if (viewMode === 'day') { + newDate.setDate(newDate.getDate() + 1); + } else { + newDate.setDate(newDate.getDate() + 7); + } + setCurrentDate(newDate); + }, [currentDate, viewMode]); + + const navigateToday = useCallback(() => { + setCurrentDate(new Date()); + }, []); + + const dateLabel = useMemo(() => { + if (viewMode === 'day') { + return formatDateHeader(toDateString(currentDate)); + } + const weekDates = getWeekDates(currentDate); + const startLabel = formatShortDate(weekDates[0]); + const endLabel = formatShortDate(weekDates[6]); + return `${startLabel} — ${endLabel}`; + }, [viewMode, currentDate]); + + const totalCount = appointments.length; + + if (providersLoading) { + return ( +
+
+
+ + + + + Loading providers... +
+
+
+ ); + } + + return ( +
+ {/* Header */} +
+

Appointments

+
+ + {/* Provider selector */} +
+ + +
+ + {/* Date navigation + view toggle */} +
+
+ + + + + {dateLabel} + + +
+ +
+ + +
+
+ + {/* Error */} + {error && ( +
+

{error}

+
+ )} + + {/* Loading */} + {loading && ( +
+
+ + + + + Loading appointments... +
+
+ )} + + {/* Appointments */} + {!loading && !error && ( +
+

+ {totalCount === 0 + ? 'No appointments scheduled' + : `${totalCount} appointment${totalCount !== 1 ? 's' : ''}`} +

+ + {displayDates.map((dateStr) => { + const dayAppts = groupedAppointments[dateStr] || []; + const showDateHeader = viewMode === 'week'; + + return ( +
+ {showDateHeader && ( +

+ {formatDateHeader(dateStr)} + + {dayAppts.length > 0 ? `${dayAppts.length} appt${dayAppts.length !== 1 ? 's' : ''}` : 'None'} + +

+ )} + + {dayAppts.length === 0 && viewMode === 'day' && ( +
+

No appointments on this day.

+
+ )} + + {dayAppts.map((appt) => ( +
+
+ {formatTime(appt.start!)} + {formatTime(appt.end!)} + {formatDuration(appt.start!, appt.end!)} +
+
+
+ {getPatientDisplay(appt)} + + {appt.status} + +
+ {appt.description && ( +

{appt.description}

+ )} + {appt.appointmentType?.text && ( +

{appt.appointmentType.text}

+ )} + {getLocationDisplay(appt) && ( +

{getLocationDisplay(appt)}

+ )} + {appt.comment && ( +

{appt.comment}

+ )} +
+
+ ))} +
+ ); + })} +
+ )} +
+ ); +} diff --git a/packages/fhir-scheduler/src/components/BookingForm.tsx b/packages/fhir-scheduler/src/components/BookingForm.tsx new file mode 100644 index 0000000..fb9c871 --- /dev/null +++ b/packages/fhir-scheduler/src/components/BookingForm.tsx @@ -0,0 +1,546 @@ +import React, { useState, useCallback, useEffect, useRef } from 'react'; +import type { Slot, PatientInfo, Schedule } from '../types'; +import { useSchedulerStore } from '../store/schedulerStore'; +import { QuestionnaireRenderer, buildQuestionnaireResponse } from '@mieweb/forms-renderer'; +import type { FormData as QuestionnaireFormData, FormField } from '@mieweb/forms-renderer'; + +interface BookingFormProps { + provider: Schedule; + slot: Slot; + holdExpiresAt: Date | null; + questionnaireFormData?: QuestionnaireFormData; + /** If true, questionnaire was already completed in a previous step (don't show patient form) */ + questionnaireAlreadyCompleted?: boolean; + onSubmit: (patientInfo: PatientInfo) => Promise; + onBack: () => void; + loading?: boolean; + error?: string | null; +} + +/** + * Format time for display + */ +function formatDateTime(isoString: string): string { + const date = new Date(isoString); + return date.toLocaleString('en-US', { + weekday: 'long', + month: 'long', + day: 'numeric', + hour: 'numeric', + minute: '2-digit', + hour12: true, + }); +} + +/** + * Format duration in minutes + */ +function formatDuration(start: string, end: string): string { + const startDate = new Date(start); + const endDate = new Date(end); + const minutes = Math.round((endDate.getTime() - startDate.getTime()) / 60000); + return `${minutes} minutes`; +} + +/** + * Get provider display name + */ +function getProviderName(schedule: Schedule): string { + const firstActor = schedule.actor?.[0]; + return firstActor?.display || firstActor?.reference?.split('/').pop() || 'Provider'; +} + +/** + * Hold countdown timer component + */ +function HoldTimer({ expiresAt }: { expiresAt: Date }) { + const [remaining, setRemaining] = useState( + Math.max(0, expiresAt.getTime() - Date.now()) + ); + + useEffect(() => { + const timer = setInterval(() => { + setRemaining(Math.max(0, expiresAt.getTime() - Date.now())); + }, 1000); + + return () => clearInterval(timer); + }, [expiresAt]); + + const minutes = Math.floor(remaining / 60000); + const seconds = Math.floor((remaining % 60000) / 1000); + + const isWarning = remaining < 60000; // Less than 1 minute + + return ( +
+ + + Slot reserved for {minutes}:{seconds.toString().padStart(2, '0')} + +
+ ); +} + +/** + * Check if a field has been answered + */ +function isFieldAnswered(field: Record): boolean { + const fieldType = field.fieldType as string; + + // Skip section headers - they don't need answers + if (fieldType === 'section') { + return true; + } + + // Check if field is hidden by enableWhen logic + // The forms-engine uses 'visible' property to track visibility + if (field.visible === false) { + return true; // Hidden fields don't need answers + } + + switch (fieldType) { + case 'text': + case 'longtext': + case 'multitext': + return typeof field.answer === 'string' && field.answer.trim().length > 0; + case 'radio': + case 'dropdown': + case 'boolean': + // Check 'selected' for options-based fields + return field.selected != null && field.selected !== ''; + case 'check': + case 'multiselect': + return Array.isArray(field.selected) && field.selected.length > 0; + default: + return true; // Unknown field types considered answered + } +} + +/** + * Check if all required fields in the questionnaire are complete + * The fields array from forms-engine is flat (not nested), so we check each directly + */ +function isQuestionnaireComplete(fields: Record[]): boolean { + return fields.every((field) => isFieldAnswered(field)); +} + +/** + * Questionnaire section component + * Integrates with @mieweb/forms-renderer when available + */ +interface QuestionnaireSectionProps { + questionnaireFormData: QuestionnaireFormData; + disabled?: boolean; + onCompletionChange?: (isComplete: boolean, fields: FormField[]) => void; +} + +function QuestionnaireSection({ questionnaireFormData, disabled, onCompletionChange }: QuestionnaireSectionProps) { + const setQuestionnaireResponse = useSchedulerStore((state) => state.setQuestionnaireResponse); + const storeRef = useRef<{ getState: () => { order: string[]; byId: Record } } | null>(null); + + // Handle form changes and build FHIR QuestionnaireResponse + const handleQuestionnaireChange = useCallback((_updatedFormData: unknown) => { + if (!storeRef.current) return; + + try { + const state = storeRef.current.getState(); + const fields: FormField[] = state.order.map((id: string) => state.byId[id]); + const response = buildQuestionnaireResponse(fields, 'intake-questionnaire'); + + // Convert to our QuestionnaireResponse type + setQuestionnaireResponse(response as import('../types').QuestionnaireResponse); + + // Check completion status and notify parent + if (onCompletionChange) { + const isComplete = isQuestionnaireComplete(fields as Record[]); + onCompletionChange(isComplete, fields); + } + } catch (err) { + console.warn('Failed to build questionnaire response:', err); + } + }, [setQuestionnaireResponse, onCompletionChange]); + + // If forms-renderer is not available, show a placeholder + if (!QuestionnaireRenderer) { + return ( +
+

Additional Questions

+

+ Questionnaire integration requires @mieweb/forms-renderer +

+
+ ); + } + + return ( +
+

Additional Questions

+

+ Please complete all questions below before booking your appointment. +

+
+ +
+
+ ); +} + +export function BookingForm({ + provider, + slot, + holdExpiresAt, + questionnaireFormData, + questionnaireAlreadyCompleted, + onSubmit, + onBack, + loading, + error, +}: BookingFormProps) { + const [formData, setFormData] = useState({ + name: '', + phone: '', + email: '', + dateOfBirth: '', + reason: '', + }); + + const [validationErrors, setValidationErrors] = useState>>({}); + // If questionnaire was already completed in a previous step, consider it complete + // If questionnaireFormData is passed (for inline display), we need to track completion + const [questionnaireComplete, setQuestionnaireComplete] = useState( + questionnaireAlreadyCompleted || !questionnaireFormData + ); + // Store questionnaire fields for provider routing/screening (can be accessed via onQuestionnaireChange callback) + const [, setQuestionnaireFields] = useState([]); + + // Track questionnaire completion + const handleQuestionnaireCompletionChange = useCallback((isComplete: boolean, fields: unknown[]) => { + setQuestionnaireComplete(isComplete); + setQuestionnaireFields(fields); + // Clear questionnaire error when it becomes complete + if (isComplete && validationErrors.questionnaire) { + setValidationErrors((prev) => ({ ...prev, questionnaire: undefined })); + } + }, [validationErrors.questionnaire]); + + const handleChange = useCallback( + (e: React.ChangeEvent) => { + const { name, value } = e.target; + setFormData((prev) => ({ ...prev, [name]: value })); + // Clear validation error when user types + if (validationErrors[name as keyof PatientInfo]) { + setValidationErrors((prev) => ({ ...prev, [name]: undefined })); + } + }, + [validationErrors] + ); + + const validate = useCallback((): boolean => { + const errors: Partial> = {}; + + // Skip patient info validation if questionnaire was already completed + // (patient info should be in the questionnaire) + if (!questionnaireAlreadyCompleted) { + if (!formData.name.trim()) { + errors.name = 'Name is required'; + } + + if (!formData.email.trim()) { + errors.email = 'Email is required'; + } else if (!/^[^\s@]+@[^\s@]+\.[^\s@]+$/.test(formData.email)) { + errors.email = 'Please enter a valid email address'; + } + + if (!formData.phone.trim()) { + errors.phone = 'Phone number is required'; + } + } + + // Validate questionnaire completion if questionnaire is provided inline + if (questionnaireFormData && !questionnaireComplete) { + errors.questionnaire = 'Please complete all questions before booking'; + } + + setValidationErrors(errors); + return Object.keys(errors).length === 0; + }, [formData, questionnaireFormData, questionnaireComplete, questionnaireAlreadyCompleted]); + + const handleSubmit = useCallback( + async (e: React.FormEvent) => { + e.preventDefault(); + + if (!validate()) { + return; + } + + await onSubmit(formData); + }, + [formData, validate, onSubmit] + ); + + return ( +
+
+ +

Complete Your Booking

+
+ + {/* Hold Timer */} + {holdExpiresAt && } + + {/* Appointment Summary */} +
+

Appointment Details

+
+
+
Provider
+
{getProviderName(provider)}
+
+
+
Date & Time
+
{formatDateTime(slot.start)}
+
+
+
Duration
+
{formatDuration(slot.start, slot.end)}
+
+
+
+ + {/* Error Display */} + {error && ( +
+ + {error} +
+ )} + + {/* Patient Information Form */} +
+ {/* Only show patient info fields if questionnaire wasn't already completed */} + {!questionnaireAlreadyCompleted && ( + <> +

Your Information

+ +
+ + + {validationErrors.name && ( + + {validationErrors.name} + + )} +
+ +
+ + + {validationErrors.email && ( + + {validationErrors.email} + + )} +
+ +
+ + + {validationErrors.phone && ( + + {validationErrors.phone} + + )} +
+ +
+ + +
+ +
+ +