Share feedback
Answers are generated based on the documentation.

Experimental

Schema

BadRequest

Type: object

Describes violations in a client request. This error type focuses on the syntactic aspects of the request.
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": {
    "fieldViolations": {
      "description": "Describes all violations in a client request.",
      "items": {
        "$ref": "#/components/schemas/BadRequestFieldViolation"
      },
      "type": "array"
    }
  },
  "title": "BadRequest",
  "type": "object"
}