bugsnag · Schema

PivotValue

Represents a specific value within a pivot dimension.

Properties

Name Type Description
id string The unique identifier of the pivot value.
name string The name of the pivot value.
events integer The number of events with this pivot value.
proportion number The proportion of events with this pivot value.
View JSON Schema on GitHub

JSON Schema

bugsnag-pivotvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PivotValue",
  "title": "PivotValue",
  "type": "object",
  "description": "Represents a specific value within a pivot dimension.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the pivot value."
    },
    "name": {
      "type": "string",
      "description": "The name of the pivot value."
    },
    "events": {
      "type": "integer",
      "description": "The number of events with this pivot value."
    },
    "proportion": {
      "type": "number",
      "format": "float",
      "description": "The proportion of events with this pivot value."
    }
  }
}