integration.rimo.consult_outcome.v1
Constant
import { EVENT_NAMES } from "@platform/contracts";
EVENT_NAMES.INTEGRATION_RIMO_CONSULT_OUTCOME_V1;Publishers
Subscribers
Payload schema
z.object({
provider: z.literal("rimo"),
provider_event_id: z.string(),
consultation_id: z.string(),
patient_email: z.string().email(),
outcome: z.enum(["approved", "declined", "needs_more_info"]),
completed_at: z.string().datetime(),
payload: z.record(z.unknown()),
}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.