Unified.to · Schema

CalendarRecordingTranscript

IntegrationsUnified API

Properties

Name Type Description
attendee object
end_at string
language string
start_at string
text string
View JSON Schema on GitHub

JSON Schema

unified-to-calendarrecordingtranscript-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CalendarRecordingTranscript",
  "title": "CalendarRecordingTranscript",
  "properties": {
    "attendee": {
      "$ref": "#/components/schemas/property_CalendarRecordingTranscript_attendee"
    },
    "end_at": {
      "format": "date-time",
      "type": "string"
    },
    "language": {
      "type": "string"
    },
    "start_at": {
      "format": "date-time",
      "type": "string"
    },
    "text": {
      "type": "string"
    }
  },
  "required": [
    "text"
  ],
  "type": "object"
}