booking.visit.rescheduled.v1
Constant
import { EVENT_NAMES } from "@platform/contracts";
EVENT_NAMES.BOOKING_VISIT_RESCHEDULED_V1;Publishers
Subscribers
No service currently subscribes to this event.
Payload schema
z.object({
visit_id: z.string(),
patient_id: z.string(),
provider_id: z.string(),
brand_id: z.string(),
old_slot_start: z.string(),
new_slot_start: z.string().datetime(),
new_slot_end: z.string().datetime(),
rescheduled_at: z.string().datetime(),
}Delivery semantics
- At-least-once delivery. Consumers must dedupe by event ID.
- Fanned out to both NATS (in-cluster) and EventBridge (durable). See Events concept.