Airbyte · Schema

JobCreateRequest

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-job-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-job-create-request-schema.json",
  "title": "JobCreateRequest",
  "description": "Creates a new Job from the configuration provided in the request body.",
  "type": "object",
  "properties": {
    "connectionId": {
      "format": "UUID",
      "type": "string"
    },
    "jobType": {
      "$ref": "#/components/schemas/JobTypeEnum"
    }
  },
  "required": [
    "jobType",
    "connectionId"
  ]
}