Airbyte · Schema

ConnectionScheduleResponse

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

Data IntegrationETLELTOpen-SourceData PipelineConnectorsData

Properties

Name Type Description
scheduleType object
cronExpression string
basicTiming string
View JSON Schema on GitHub

JSON Schema

airbyte-connectionscheduleresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ConnectionScheduleResponse",
  "title": "ConnectionScheduleResponse",
  "description": "schedule for when the the connection should run, per the schedule type",
  "type": "object",
  "required": [
    "scheduleType"
  ],
  "properties": {
    "scheduleType": {
      "$ref": "#/components/schemas/ScheduleTypeWithBasicEnum"
    },
    "cronExpression": {
      "type": "string"
    },
    "basicTiming": {
      "type": "string"
    }
  },
  "x-speakeasy-component": true
}