Airbyte · JSON Structure

Airbyte Jobs Response Structure

Type: object Properties: 3 Required: 1
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

JobsResponse is a JSON Structure definition published by Airbyte, describing 3 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

previous next data

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-jobs-response-structure.json",
  "name": "JobsResponse",
  "description": "",
  "type": "object",
  "properties": {
    "previous": {
      "type": "string"
    },
    "next": {
      "type": "string"
    },
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JobResponse"
      }
    }
  },
  "required": [
    "data"
  ]
}