Google BigQuery · Schema

TableDataInsertAllResponse

AnalyticsBig DataCloudData WarehouseServerlessSQL

Properties

Name Type Description
kind string The resource type
insertErrors array Insert errors for individual rows
View JSON Schema on GitHub

JSON Schema

google-bigquery-tabledatainsertallresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TableDataInsertAllResponse",
  "title": "TableDataInsertAllResponse",
  "type": "object",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The resource type"
    },
    "insertErrors": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "index": {
            "type": "integer",
            "description": "The index of the row with the error"
          },
          "errors": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ErrorProto"
            }
          }
        }
      },
      "description": "Insert errors for individual rows"
    }
  }
}