Zoom · Schema

Occurrence

Meeting occurrence information for recurring meetings.

ChatCollaborationCommunicationsMeetingsVideo ConferencingVideosWebinars

Properties

Name Type Description
occurrence_id string Occurrence ID.
start_time string Start time of this occurrence.
duration integer Duration of this occurrence in minutes.
status string Occurrence status.
View JSON Schema on GitHub

JSON Schema

zoom-meeting-occurrence-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Occurrence",
  "type": "object",
  "description": "Meeting occurrence information for recurring meetings.",
  "properties": {
    "occurrence_id": {
      "type": "string",
      "description": "Occurrence ID."
    },
    "start_time": {
      "type": "string",
      "description": "Start time of this occurrence."
    },
    "duration": {
      "type": "integer",
      "description": "Duration of this occurrence in minutes."
    },
    "status": {
      "type": "string",
      "description": "Occurrence status."
    }
  }
}