Webex · Schema
RecurYearlyByDayObject
CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing
Properties
| Name | Type | Description |
|---|---|---|
| day | string | Schedule the event on a specific day. |
| week | string | Schedule the event on a specific week. |
| month | string | Schedule the event on a specific month. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RecurYearlyByDayObject",
"title": "RecurYearlyByDayObject",
"type": "object",
"required": [
"day",
"week",
"month"
],
"properties": {
"day": {
"type": "string",
"enum": [
"SUNDAY",
"MONDAY",
"TUESDAY",
"WEDNESDAY",
"THURSDAY",
"FRIDAY",
"SATURDAY"
],
"description": "Schedule the event on a specific day."
},
"week": {
"type": "string",
"enum": [
"FIRST",
"SECOND",
"THIRD",
"FOURTH",
"LAST"
],
"description": "Schedule the event on a specific week."
},
"month": {
"type": "string",
"enum": [
"JANUARY",
"FEBRUARY",
"MARCH",
"APRIL",
"MAY",
"JUNE",
"JULY",
"AUGUST",
"SEPTEMBER",
"OCTOBER",
"NOVEMBER",
"DECEMBER"
],
"description": "Schedule the event on a specific month."
}
}
}