bugsnag · Schema

ErrorResponse

An error response from the build notification endpoint.

Properties

Name Type Description
errors array List of error messages describing the problem.
View JSON Schema on GitHub

JSON Schema

bugsnag-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "An error response from the build notification endpoint.",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of error messages describing the problem."
    }
  }
}