Properties
| Name | Type | Description |
|---|---|---|
| string | ||
| is_cohost | boolean | |
| name | string | |
| required | boolean | |
| status | string | |
| user_id | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CalendarAttendee",
"title": "CalendarAttendee",
"properties": {
"email": {
"type": "string"
},
"is_cohost": {
"type": "boolean"
},
"name": {
"type": "string"
},
"required": {
"type": "boolean"
},
"status": {
"enum": [
"ACCEPTED",
"REJECTED",
"TENTATIVE"
],
"type": "string",
"x-speakeasy-unknown-values": "allow"
},
"user_id": {
"type": "string"
}
},
"type": "object"
}