Unified.to · Schema

CalendarWebinarPanelist

IntegrationsUnified API

Properties

Name Type Description
email string
is_required boolean
join_password string
join_url string
name string
status string
View JSON Schema on GitHub

JSON Schema

unified-to-calendarwebinarpanelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CalendarWebinarPanelist",
  "title": "CalendarWebinarPanelist",
  "properties": {
    "email": {
      "type": "string"
    },
    "is_required": {
      "type": "boolean"
    },
    "join_password": {
      "type": "string"
    },
    "join_url": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "status": {
      "enum": [
        "ACCEPTED",
        "REJECTED",
        "TENTATIVE"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "type": "object"
}