Google BigQuery · Schema

RoutineList

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

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

JSON Schema

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