Airbyte · Schema

JobsResponse

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
previous string
next string
data array
View JSON Schema on GitHub

JSON Schema

airbyte-jobs-response-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-jobs-response-schema.json",
  "title": "JobsResponse",
  "description": "",
  "type": "object",
  "properties": {
    "previous": {
      "type": "string"
    },
    "next": {
      "type": "string"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JobResponse"
      }
    }
  },
  "required": [
    "data"
  ]
}