Properties
| Name | Type | Description |
|---|---|---|
| string | ||
| name | string | |
| registered_at | string | |
| registration_reference | string | |
| registration_status | string |
JSON Schema
{
"$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"
}