{ "$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" } } }