bugsnag · Schema

Error

An API error response.

Properties

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

JSON Schema

bugsnag-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "description": "An API error response.",
  "properties": {
    "errors": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of error messages."
    }
  }
}