PostHog · Schema

ErrorTrackingAssignmentRuleUpdateRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
filters object Property-group filters that define when this rule matches incoming error events.
assignee object User or role to assign matching issues to.
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingassignmentruleupdaterequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingAssignmentRuleUpdateRequest",
  "title": "ErrorTrackingAssignmentRuleUpdateRequest",
  "type": "object",
  "properties": {
    "filters": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PropertyGroupFilterValue"
        }
      ],
      "nullable": true,
      "description": "Property-group filters that define when this rule matches incoming error events."
    },
    "assignee": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ErrorTrackingAssignmentRuleAssigneeRequest"
        }
      ],
      "nullable": true,
      "description": "User or role to assign matching issues to."
    }
  }
}