{ "$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" ] }