Share feedback
Answers are generated based on the documentation.

Experimental

Schema

BadRequestErrorDetail

Type: object

Describes violations in a client request. This error type focuses on the syntactic aspects of the request.
@type · required

Type: string

All schema constraints and annotations
{
  "const": "type.googleapis.com/google.rpc.BadRequest",
  "type": "string"
}
fieldViolations

Type: array

Describes all violations in a client request.
Array item

Schema: BadRequestFieldViolation

All schema constraints and annotations
{
  "description": "Describes all violations in a client request.",
  "items": {
    "$ref": "#/components/schemas/BadRequestFieldViolation"
  },
  "type": "array"
}
All schema constraints and annotations
{
  "description": "Describes violations in a client request. This error type focuses on the\nsyntactic aspects of the request.",
  "properties": {
    "@type": {
      "const": "type.googleapis.com/google.rpc.BadRequest",
      "type": "string"
    },
    "fieldViolations": {
      "description": "Describes all violations in a client request.",
      "items": {
        "$ref": "#/components/schemas/BadRequestFieldViolation"
      },
      "type": "array"
    }
  },
  "required": [
    "@type"
  ],
  "title": "BadRequestErrorDetail",
  "type": "object"
}