Webex · Schema

RecurWeeklyObject

CallingCollaborationCommunicationEnterpriseMessagingVideo Conferencing

Properties

Name Type Description
sunday boolean Frequency of occurrence in weeks and select the day - Sunday.
monday boolean Frequency of occurrence in weeks and select the day - Monday.
tuesday boolean Frequency of occurrence in weeks and select the day - Tuesday.
wednesday boolean Frequency of occurrence in weeks and select the day - Wednesday.
thursday boolean Frequency of occurrence in weeks and select the day - Thursday.
friday boolean Frequency of occurrence in weeks and select the day - Friday.
saturday boolean Frequency of occurrence in weeks and select the day - Saturday.
View JSON Schema on GitHub

JSON Schema

webex-recurweeklyobject-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RecurWeeklyObject",
  "title": "RecurWeeklyObject",
  "type": "object",
  "required": [
    "sunday"
  ],
  "properties": {
    "sunday": {
      "type": "boolean",
      "example": true,
      "description": "Frequency of occurrence in weeks and select the day - Sunday."
    },
    "monday": {
      "type": "boolean",
      "example": true,
      "description": "Frequency of occurrence in weeks and select the day - Monday."
    },
    "tuesday": {
      "type": "boolean",
      "example": true,
      "description": "Frequency of occurrence in weeks and select the day - Tuesday."
    },
    "wednesday": {
      "type": "boolean",
      "example": true,
      "description": "Frequency of occurrence in weeks and select the day - Wednesday."
    },
    "thursday": {
      "type": "boolean",
      "example": true,
      "description": "Frequency of occurrence in weeks and select the day - Thursday."
    },
    "friday": {
      "type": "boolean",
      "example": true,
      "description": "Frequency of occurrence in weeks and select the day - Friday."
    },
    "saturday": {
      "type": "boolean",
      "example": true,
      "description": "Frequency of occurrence in weeks and select the day - Saturday."
    }
  }
}