Unified.to · Schema

property_CalendarRecordingTranscript_attendee

IntegrationsUnified API

Properties

Name Type Description
email string
is_cohost boolean
name string
required boolean
status string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-property-calendarrecordingtranscript-attendee-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/property_CalendarRecordingTranscript_attendee",
  "title": "property_CalendarRecordingTranscript_attendee",
  "properties": {
    "email": {
      "type": "string"
    },
    "is_cohost": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "required": {
      "type": "boolean"
    },
    "status": {
      "enum": [
        "ACCEPTED",
        "REJECTED",
        "TENTATIVE"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "user_id": {
      "type": "string"
    }
  },
  "type": "object"
}