Properties
| Name | Type | Description |
|---|---|---|
| newName | string | New name for the event. |
| name | string | Name for the event. |
| startDate | string | Start date of the event, or first occurrence if repeating, in the format of YYYY-MM-DD. This field is required if the `allDayEnabled` field is present. |
| endDate | string | End date of the event, or first occurrence if repeating, in the format of YYYY-MM-DD. This field is required if the `allDayEnabled` field is present. |
| startTime | string | Start time of the event in the format of HH:MM (24 hours format). This field is required if the `allDayEnabled` field is false or omitted. |
| endTime | string | End time of the event in the format of HH:MM (24 hours format). This field is required if the `allDayEnabled` field is false or omitted. |
| allDayEnabled | boolean | True if it is all-day event. |
| recurrence | object | Recurrance scheme for an event. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PutEvent",
"title": "PutEvent",
"type": "object",
"required": [
"newName",
"name",
"startDate",
"endDate",
"startTime",
"endTime"
],
"properties": {
"newName": {
"type": "string",
"example": "Central_Zone_Day_Shift",
"description": "New name for the event."
},
"name": {
"type": "string",
"example": "Day_Shift",
"description": "Name for the event."
},
"startDate": {
"type": "string",
"example": "2020-03-18",
"description": "Start date of the event, or first occurrence if repeating, in the format of YYYY-MM-DD. This field is required if the `allDayEnabled` field is present."
},
"endDate": {
"type": "string",
"example": "2020-03-18",
"description": "End date of the event, or first occurrence if repeating, in the format of YYYY-MM-DD. This field is required if the `allDayEnabled` field is present."
},
"startTime": {
"type": "string",
"example": "08:00",
"description": "Start time of the event in the format of HH:MM (24 hours format). This field is required if the `allDayEnabled` field is false or omitted."
},
"endTime": {
"type": "string",
"example": "17:00",
"description": "End time of the event in the format of HH:MM (24 hours format). This field is required if the `allDayEnabled` field is false or omitted."
},
"allDayEnabled": {
"type": "boolean",
"description": "True if it is all-day event."
},
"recurrence": {
"type": "object",
"properties": {
"recurForEver": {
"type": "boolean",
"example": true,
"description": "True if the event repeats forever. Requires either `recurDaily` or `recurWeekly` to be specified."
},
"recurEndDate": {
"type": "string",
"example": "2020-03-18",
"description": "End date for the recurring event in the format of YYYY-MM-DD. Requires either `recurDaily` or `recurWeekly` to be specified."
},
"recurEndOccurrence": {
"type": "number",
"example": 1,
"description": "End recurrence after the event has repeated the specified number of times. Requires either `recurDaily` or `recurWeekly` to be specified."
},
"recurDaily": {
"type": "object",
"required": [
"recurInterval"
],
"properties": {
"recurInterval": {
"type": "number",
"example": 1,
"description": "Recurring interval in days. The number of days after the start when an event will repeat. Repetitions cannot overlap."
}
},
"description": "Specifies the number of days between the start of each recurrence and is not allowed with `recurWeekly`."
},
"recurWeekly": {
"type": "object",
"required": [
"recurInterval"
],
"properties": {
"recurInterval": {
"type": "number",
"example": 1,
"description": "Specifies the number of weeks between the start of each recurrence."
},
"sunday": {
"type": "boolean",
"description": "The Event occurs weekly on Sunday."
},
"monday": {
"type": "boolean",
"description": "The Event occurs weekly on Monday."
},
"tuesday": {
"type": "boolean",
"description": "The Event occurs weekly on Tuesday."
},
"wednesday": {
"type": "boolean",
"example": true,
"description": "The Event occurs weekly on Wednesday."
},
"thursday": {
"type": "boolean",
"description": "The Event occurs weekly on Thursday."
},
"friday": {
"type": "boolean",
"description": "The Event occurs weekly on Friday."
},
"saturday": {
"type": "boolean",
"description": "The Event occurs weekly on Saturday."
}
},
"description": "Specifies the event recurs weekly on the designated days of the week and is not allowed with `recurDaily`."
}
},
"description": "Recurrance scheme for an event."
}
}
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/webex-putevent"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.