Google BigQuery · Schema

JobList

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
kind string The resource type
jobs array List of jobs
nextPageToken string A token to request the next page of results
View JSON Schema on GitHub

JSON Schema

google-bigquery-joblist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JobList",
  "title": "JobList",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The resource type"
    },
    "jobs": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Job"
      },
      "description": "List of jobs"
    },
    "nextPageToken": {
      "type": "string",
      "description": "A token to request the next page of results"
    }
  }
}