Bugsnag · Schema

Bugsnag Build

Represents a build or deployment notification sent to the Bugsnag Build API, containing version information, source control details, and optional metadata.

Properties

Name Type Description
apiKey string The Bugsnag API key for the project.
appVersion string The version of the application being built or deployed.
appVersionCode string The version code of the application, typically used for Android applications.
appBundleVersion string The bundle version of the application, typically used for iOS applications.
releaseStage string The release stage for this build (e.g., production, staging, development).
builderName string The name of the person or system that created this build.
sourceControl object
metadata object Custom metadata to associate with the build.
autoAssignRelease boolean Whether to automatically assign this build as a release.
View JSON Schema on GitHub

JSON Schema

bugsnag-build-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://bugsnag.com/schemas/bugsnag/build.json",
  "title": "Bugsnag Build",
  "description": "Represents a build or deployment notification sent to the Bugsnag Build API, containing version information, source control details, and optional metadata.",
  "type": "object",
  "required": ["apiKey", "appVersion"],
  "properties": {
    "apiKey": {
      "type": "string",
      "description": "The Bugsnag API key for the project.",
      "pattern": "^[a-f0-9]{32}$"
    },
    "appVersion": {
      "type": "string",
      "description": "The version of the application being built or deployed.",
      "minLength": 1
    },
    "appVersionCode": {
      "type": "string",
      "description": "The version code of the application, typically used for Android applications."
    },
    "appBundleVersion": {
      "type": "string",
      "description": "The bundle version of the application, typically used for iOS applications."
    },
    "releaseStage": {
      "type": "string",
      "description": "The release stage for this build (e.g., production, staging, development).",
      "default": "production"
    },
    "builderName": {
      "type": "string",
      "description": "The name of the person or system that created this build."
    },
    "sourceControl": {
      "$ref": "#/$defs/SourceControl"
    },
    "metadata": {
      "type": "object",
      "description": "Custom metadata to associate with the build.",
      "additionalProperties": true
    },
    "autoAssignRelease": {
      "type": "boolean",
      "description": "Whether to automatically assign this build as a release.",
      "default": true
    }
  },
  "$defs": {
    "SourceControl": {
      "type": "object",
      "description": "Source control information for the build, linking errors to specific commits and repositories.",
      "properties": {
        "provider": {
          "type": "string",
          "description": "The source control provider name.",
          "enum": [
            "github",
            "github-enterprise",
            "gitlab",
            "gitlab-onpremise",
            "bitbucket",
            "bitbucket-server"
          ]
        },
        "repository": {
          "type": "string",
          "format": "uri",
          "description": "The URL of the source control repository."
        },
        "revision": {
          "type": "string",
          "description": "The source control revision or commit hash for this build."
        },
        "diff": {
          "type": "string",
          "format": "uri",
          "description": "A URL to the diff between this build and the previous one."
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/bugsnag-build"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.