Airbyte · Schema

JobResponse

Provides details of a single job.

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
jobId integer
status object
jobType object
startTime string
connectionId string
lastUpdatedAt string
duration string Duration of a sync in ISO_8601 format
bytesSynced integer
rowsSynced integer
View JSON Schema on GitHub

JSON Schema

airbyte-job-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-job-response-schema.json",
  "title": "JobResponse",
  "description": "Provides details of a single job.",
  "type": "object",
  "properties": {
    "jobId": {
      "format": "int64",
      "type": "integer"
    },
    "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": {
      "format": "int64",
      "type": "integer"
    },
    "rowsSynced": {
      "format": "int64",
      "type": "integer"
    }
  },
  "required": [
    "jobId",
    "status",
    "jobType",
    "startTime",
    "connectionId"
  ]
}