Type

urn:problem-type:belgif:input-validation:invalidInput

Title

Invalid input

Description

Request contains invalid input. This issue type is used when the input is invalid against validations that aren’t formally expressed in the OpenAPI description.

Example [1]
{
  "type": "urn:problem-type:belgif:input-validation:invalidInput",
  "href": "https://www.belgif.be/specification/rest/api-guide/issues/invalidInput.html",
  "title": "Invalid input",
  "detail": "endDate of a period should be after its startDate",
  "in": "body",
  "name": "boardMembers[0].period",
  "value": {
    "startDate": "2020-12-31",
    "endDate": "2020-01-01"
  }
}

1. For brevity, only the issue itself is shown here. Typically, this will be located inside the issues[] array of an HTTP 400 Bad Request Problem.