Airbyte · Schema

Root Type for JobCreate

Creates a new Job from the configuration provided in the request body.

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
connectionId string
jobType object
View JSON Schema on GitHub

JSON Schema

airbyte-jobcreaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobCreateRequest",
  "title": "Root Type for JobCreate",
  "description": "Creates a new Job from the configuration provided in the request body.",
  "required": [
    "jobType",
    "connectionId"
  ],
  "type": "object",
  "properties": {
    "connectionId": {
      "format": "UUID",
      "type": "string"
    },
    "jobType": {
      "$ref": "#/components/schemas/JobTypeEnum"
    }
  },
  "example": {
    "connectionId": "18dccc91-0ab1-4f72-9ed7-0b8fc27c5826",
    "jobType": "sync"
  },
  "x-speakeasy-component": true
}