Webex · Schema

UserSchedulePatchRequest

Modify the schedule name and / or it's events' details for the requested Schedule.

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
name string Name of the schedule.
events array List of events in the schedule.
View JSON Schema on GitHub

JSON Schema

webex-userschedulepatchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UserSchedulePatchRequest",
  "title": "UserSchedulePatchRequest",
  "type": "object",
  "description": "Modify the schedule name and / or it's events' details for the requested Schedule.",
  "required": [
    "name"
  ],
  "example": {
    "name": "Schedule1",
    "events": [
      {
        "name": "EVENT NAME",
        "newName": "Event Name",
        "startDate": "2023-02-06",
        "endDate": "2023-02-06",
        "allDayEnabled": true,
        "recurrence": {
          "recurForEver": true,
          "recurDaily": {
            "recurInterval": 1
          }
        }
      },
      {
        "name": "Friday 2",
        "newName": "Weekly Event",
        "startDate": "2020-10-30",
        "endDate": "2020-10-30",
        "startTime": "13:00",
        "endTime": "17:00",
        "allDayEnabled": false,
        "recurrence": {
          "recurForEver": true,
          "recurWeekly": {
            "sunday": false,
            "monday": false,
            "tuesday": false,
            "wednesday": false,
            "thursday": false,
            "friday": true,
            "saturday": false
          }
        }
      }
    ]
  },
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the schedule.",
      "example": "Schedule1"
    },
    "events": {
      "type": "array",
      "description": "List of events in the schedule.",
      "items": {
        "$ref": "#/components/schemas/UserScheduleEventPatch"
      }
    }
  }
}