ErrorResponse

The top-level response that represents a failed request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
errors array A list of errors that describe the reasons why the request failed.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "required": [
    "errors"
  ],
  "properties": {
    "errors": {
      "type": "array",
      "description": "A list of errors that describe the reasons why the request failed.",
      "items": {
        "$ref": "#/components/schemas/Error"
      }
    }
  },
  "description": "The top-level response that represents a failed request.",
  "allOf": [
    {
      "$ref": "#/components/schemas/Response"
    }
  ]
}