Zoom · JSON Structure

Zoom Meeting Participant Structure

Type: object Properties: 10
ChatCollaborationCommunicationsMeetingsVideo ConferencingVideosWebinars

Participant is a JSON Structure definition published by Zoom, describing 10 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

id user_id name user_email join_time leave_time duration registrant_id failover status

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "Participant",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "user_id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "user_email": {
      "type": "string"
    },
    "join_time": {
      "type": "string"
    },
    "leave_time": {
      "type": "string"
    },
    "duration": {
      "type": "integer"
    },
    "registrant_id": {
      "type": "string"
    },
    "failover": {
      "type": "boolean"
    },
    "status": {
      "type": "string"
    }
  }
}