[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-10-16 UTC."],[[["\u003cp\u003eThe content focuses on defining the structure and components of errors returned by a failed batch entry in an API.\u003c/p\u003e\n"],["\u003cp\u003eErrors are represented in JSON format and include details such as a list of errors, an HTTP status code, and an overall error message.\u003c/p\u003e\n"],["\u003cp\u003eIndividual errors within the list contain information about the error domain, a specific error code, and a descriptive message.\u003c/p\u003e\n"]]],["The content describes error handling within an API, detailing the structure of error responses. A failed batch entry returns a list of `errors`, each with a `domain`, `reason`, and `message`. The overall response includes a `code` (HTTP status) and `message` referencing the first error. The `errors` field is a list containing error objects. Each error object contains the details about an individual error.\n"],null,["# Errors\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n- [Error](#Error)\n - [JSON representation](#Error.SCHEMA_REPRESENTATION)\n\nA list of errors returned by a failed batch entry.\n\n| JSON representation |\n|-------------------------------------------------------------------------------------------------------------------------------|\n| ``` { \"errors\": [ { object (/shopping-content/reference/rest/v2.1/Errors#Error) } ], \"code\": integer, \"message\": string } ``` |\n\n| Fields ||\n|------------|---------------------------------------------------------------------------------------------------------------------------------------|\n| `errors[]` | `object (`[Error](/shopping-content/reference/rest/v2.1/Errors#Error)`)` A list of errors. |\n| `code` | `integer (`[uint32](https://developers.google.com/discovery/v1/type-format)` format)` The HTTP status of the first error in `errors`. |\n| `message` | `string` The message of the first error in `errors`. |\n\nError\n-----\n\nAn error returned by the API.\n\n| JSON representation |\n|-------------------------------------------------------------------|\n| ``` { \"domain\": string, \"reason\": string, \"message\": string } ``` |\n\n| Fields ||\n|-----------|--------------------------------------|\n| `domain` | `string` The domain of the error. |\n| `reason` | `string` The error code. |\n| `message` | `string` A description of the error. |"]]