Webex · Schema
RecurrenceObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| recurForEver | boolean | Flag to indicate if event will recur forever. |
| recurEndDate | string | End date of recurrence. |
| recurWeekly | object | Weekly recurrence definition. |
| recurYearlyByDate | object | Recurrence definition yearly by date. |
| recurYearlyByDay | object | Recurrence definition yearly by day. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RecurrenceObject",
"title": "RecurrenceObject",
"type": "object",
"properties": {
"recurForEver": {
"type": "boolean",
"description": "Flag to indicate if event will recur forever."
},
"recurEndDate": {
"type": "string",
"example": "2021-11-30",
"description": "End date of recurrence."
},
"recurWeekly": {
"$ref": "#/components/schemas/RecurWeeklyObject",
"description": "Weekly recurrence definition."
},
"recurYearlyByDate": {
"$ref": "#/components/schemas/RecurYearlyByDateObject",
"description": "Recurrence definition yearly by date."
},
"recurYearlyByDay": {
"$ref": "#/components/schemas/RecurYearlyByDayObject",
"description": "Recurrence definition yearly by day."
}
}
}