Airbyte · JSON Structure

Airbyte Job Response Structure

Provides details of a single job.

Type: object Properties: 9 Required: 5
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

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

Properties

jobId status jobType startTime connectionId lastUpdatedAt duration bytesSynced rowsSynced

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-job-response-structure.json",
  "name": "JobResponse",
  "description": "Provides details of a single job.",
  "type": "object",
  "properties": {
    "jobId": {
      "type": "int64"
    },
    "status": {
      "$ref": "#/components/schemas/JobStatusEnum"
    },
    "jobType": {
      "$ref": "#/components/schemas/JobTypeEnum"
    },
    "startTime": {
      "type": "string"
    },
    "connectionId": {
      "format": "UUID",
      "type": "string"
    },
    "lastUpdatedAt": {
      "type": "string"
    },
    "duration": {
      "description": "Duration of a sync in ISO_8601 format",
      "type": "string"
    },
    "bytesSynced": {
      "type": "int64"
    },
    "rowsSynced": {
      "type": "int64"
    }
  },
  "required": [
    "jobId",
    "status",
    "jobType",
    "startTime",
    "connectionId"
  ]
}