bugsnag · Schema

BuildResponse

The response returned when a build notification is successfully processed.

Properties

Name Type Description
status string The status of the build notification.
warnings array Any warnings about the build notification payload.
View JSON Schema on GitHub

JSON Schema

bugsnag-buildresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BuildResponse",
  "title": "BuildResponse",
  "type": "object",
  "description": "The response returned when a build notification is successfully processed.",
  "properties": {
    "status": {
      "type": "string",
      "description": "The status of the build notification.",
      "example": "ok"
    },
    "warnings": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Any warnings about the build notification payload."
    }
  }
}