Google BigQuery · Schema

ModelList

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
models array Models in the requested dataset
nextPageToken string A token to request the next page of results
View JSON Schema on GitHub

JSON Schema

google-bigquery-modellist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ModelList",
  "title": "ModelList",
  "type": "object",
  "properties": {
    "models": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Model"
      },
      "description": "Models in the requested dataset"
    },
    "nextPageToken": {
      "type": "string",
      "description": "A token to request the next page of results"
    }
  }
}