Unified.to · Schema

CalendarEvent

IntegrationsUnified API

Properties

Name Type Description
attachments object
attendees object
calendar_id string
conference object
created_at string
end_at string
has_conference boolean
id string
is_all_day boolean
is_free boolean
is_private boolean
location string
notes string
organizer object
raw object
recurrence object
recurring_event_id string
send_notifications boolean
start_at string
status string
subject string
timezone string
updated_at string
web_url string
View JSON Schema on GitHub

JSON Schema

unified-to-calendarevent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CalendarEvent",
  "title": "CalendarEvent",
  "properties": {
    "attachments": {
      "$ref": "#/components/schemas/property_CalendarEvent_attachments"
    },
    "attendees": {
      "$ref": "#/components/schemas/property_CalendarEvent_attendees"
    },
    "calendar_id": {
      "type": "string"
    },
    "conference": {
      "$ref": "#/components/schemas/property_CalendarEvent_conference"
    },
    "created_at": {
      "type": "string"
    },
    "end_at": {
      "type": "string"
    },
    "has_conference": {
      "type": "boolean"
    },
    "id": {
      "type": "string"
    },
    "is_all_day": {
      "type": "boolean"
    },
    "is_free": {
      "type": "boolean"
    },
    "is_private": {
      "type": "boolean"
    },
    "location": {
      "type": "string"
    },
    "notes": {
      "type": "string"
    },
    "organizer": {
      "$ref": "#/components/schemas/property_CalendarEvent_organizer"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "recurrence": {
      "$ref": "#/components/schemas/property_CalendarEvent_recurrence"
    },
    "recurring_event_id": {
      "type": "string"
    },
    "send_notifications": {
      "type": "boolean"
    },
    "start_at": {
      "type": "string"
    },
    "status": {
      "enum": [
        "CANCELED",
        "CONFIRMED",
        "TENTATIVE"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "subject": {
      "type": "string"
    },
    "timezone": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "web_url": {
      "type": "string"
    }
  },
  "type": "object"
}