Google BigQuery · Schema

JobStatus

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
state string Running state of the job
errorResult object
errors array The first errors encountered during the running of the job
View JSON Schema on GitHub

JSON Schema

google-bigquery-jobstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobStatus",
  "title": "JobStatus",
  "type": "object",
  "properties": {
    "state": {
      "type": "string",
      "description": "Running state of the job",
      "enum": [
        "PENDING",
        "RUNNING",
        "DONE"
      ]
    },
    "errorResult": {
      "$ref": "#/components/schemas/ErrorProto"
    },
    "errors": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ErrorProto"
      },
      "description": "The first errors encountered during the running of the job"
    }
  }
}