{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CalendarWebinarRegistrant", "title": "CalendarWebinarRegistrant", "properties": { "email": { "type": "string" }, "name": { "type": "string" }, "registered_at": { "format": "date-time", "type": "string" }, "registration_reference": { "type": "string" }, "registration_status": { "enum": [ "PENDING", "APPROVED", "REJECTED", "CANCELLED" ], "type": "string", "x-speakeasy-unknown-values": "allow" } }, "type": "object" }