Google BigQuery · Schema

ProjectList

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
kind string The resource type
projects array Projects to which the user has at least READ access
nextPageToken string A token to request the next page of results
totalItems integer The total number of projects
View JSON Schema on GitHub

JSON Schema

google-bigquery-projectlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProjectList",
  "title": "ProjectList",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The resource type"
    },
    "projects": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "string",
            "description": "The project ID"
          },
          "friendlyName": {
            "type": "string",
            "description": "A descriptive name for the project"
          },
          "projectReference": {
            "type": "object",
            "properties": {
              "projectId": {
                "type": "string",
                "description": "The ID of the project"
              }
            }
          }
        }
      },
      "description": "Projects to which the user has at least READ access"
    },
    "nextPageToken": {
      "type": "string",
      "description": "A token to request the next page of results"
    },
    "totalItems": {
      "type": "integer",
      "description": "The total number of projects"
    }
  }
}