PostHog · Schema

ErrorTrackingSuppressionRule

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
filters object
order_key integer
disabled_data object
sampling_rate number
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingsuppressionrule-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingSuppressionRule",
  "title": "ErrorTrackingSuppressionRule",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "filters": {},
    "order_key": {
      "type": "integer",
      "maximum": 2147483647,
      "minimum": -2147483648
    },
    "disabled_data": {
      "nullable": true
    },
    "sampling_rate": {
      "type": "number",
      "format": "double"
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    }
  },
  "required": [
    "created_at",
    "filters",
    "id",
    "order_key",
    "updated_at"
  ]
}