Google BigQuery · Schema

DatasetList

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

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

JSON Schema

google-bigquery-datasetlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatasetList",
  "title": "DatasetList",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The resource type"
    },
    "datasets": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Dataset"
      },
      "description": "An array of dataset resources"
    },
    "nextPageToken": {
      "type": "string",
      "description": "A token to request the next page of results"
    }
  }
}