Webex · Schema

RecurYearlyByDateObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
dayOfMonth number Schedule the event on a specific day of the month.
month string Schedule the event on a specific month of the year.
View JSON Schema on GitHub

JSON Schema

webex-recuryearlybydateobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecurYearlyByDateObject",
  "title": "RecurYearlyByDateObject",
  "type": "object",
  "required": [
    "dayOfMonth",
    "month"
  ],
  "properties": {
    "dayOfMonth": {
      "type": "number",
      "example": 1,
      "description": "Schedule the event on a specific day of the month."
    },
    "month": {
      "type": "string",
      "enum": [
        "JANUARY",
        "FEBRUARY",
        "MARCH",
        "APRIL",
        "MAY",
        "JUNE",
        "JULY",
        "AUGUST",
        "SEPTEMBER",
        "OCTOBER",
        "NOVEMBER",
        "DECEMBER"
      ],
      "description": "Schedule the event on a specific month of the year."
    }
  }
}