bugsnag · Schema

Pivot

Represents an available pivot dimension for grouping error data.

Properties

Name Type Description
id string The unique identifier of the pivot.
display_name string The human-readable name for this pivot dimension.
key string The key used to reference this pivot in queries.
values_url string The API URL to list values for this pivot.
View JSON Schema on GitHub

JSON Schema

bugsnag-pivot-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pivot",
  "title": "Pivot",
  "type": "object",
  "description": "Represents an available pivot dimension for grouping error data.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the pivot."
    },
    "display_name": {
      "type": "string",
      "description": "The human-readable name for this pivot dimension."
    },
    "key": {
      "type": "string",
      "description": "The key used to reference this pivot in queries."
    },
    "values_url": {
      "type": "string",
      "format": "uri",
      "description": "The API URL to list values for this pivot."
    }
  }
}