Airbyte · JSON Structure

Airbyte Connection Schedule Response Structure

schedule for when the the connection should run, per the schedule type

Type: object Properties: 3 Required: 1
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

ConnectionScheduleResponse is a JSON Structure definition published by Airbyte, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

scheduleType cronExpression basicTiming

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-connection-schedule-response-structure.json",
  "name": "ConnectionScheduleResponse",
  "description": "schedule for when the the connection should run, per the schedule type",
  "type": "object",
  "properties": {
    "scheduleType": {
      "$ref": "#/components/schemas/ScheduleTypeWithBasicEnum"
    },
    "cronExpression": {
      "type": "string"
    },
    "basicTiming": {
      "type": "string"
    }
  },
  "required": [
    "scheduleType"
  ]
}