Unified.to · Schema

CalendarCalendar

IntegrationsUnified API

Properties

Name Type Description
created_at string
description string
id string
is_primary boolean
name string
raw object
timezone string
updated_at string
View JSON Schema on GitHub

JSON Schema

unified-to-calendarcalendar-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CalendarCalendar",
  "title": "CalendarCalendar",
  "properties": {
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "is_primary": {
      "type": "boolean"
    },
    "name": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "timezone": {
      "type": "string"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    }
  },
  "required": [
    "name"
  ],
  "type": "object"
}