bugsnag · Schema

EventField

Represents a data dimension available for filtering events.

Properties

Name Type Description
display_id string The display identifier for the event field.
display_name string The human-readable name for the event field.
filter object Filter configuration for the event field.
View JSON Schema on GitHub

JSON Schema

bugsnag-eventfield-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventField",
  "title": "EventField",
  "type": "object",
  "description": "Represents a data dimension available for filtering events.",
  "properties": {
    "display_id": {
      "type": "string",
      "description": "The display identifier for the event field."
    },
    "display_name": {
      "type": "string",
      "description": "The human-readable name for the event field."
    },
    "filter": {
      "type": "object",
      "description": "Filter configuration for the event field.",
      "properties": {
        "type": {
          "type": "string",
          "description": "The filter type (e.g., eq, contains)."
        },
        "values": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "The available filter values."
        }
      }
    }
  }
}