Google BigQuery · Schema

Job

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
kind string The resource type, always bigquery#job
id string The fully-qualified unique name of the job
jobReference object
configuration object
status object
statistics object Output only statistics about the job
View JSON Schema on GitHub

JSON Schema

google-bigquery-job-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Job",
  "title": "Job",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The resource type, always bigquery#job"
    },
    "id": {
      "type": "string",
      "description": "The fully-qualified unique name of the job"
    },
    "jobReference": {
      "$ref": "#/components/schemas/JobReference"
    },
    "configuration": {
      "$ref": "#/components/schemas/JobConfiguration"
    },
    "status": {
      "$ref": "#/components/schemas/JobStatus"
    },
    "statistics": {
      "type": "object",
      "description": "Output only statistics about the job"
    }
  }
}