Unified.to · Schema

CalendarEvent

CalendarEvent schema from Unified.to API

IntegrationsUnified API

Properties

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

JSON Schema

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