PostHog · Schema

PathCleaningFilter

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
alias string
order number
regex string
View JSON Schema on GitHub

JSON Schema

posthog-pathcleaningfilter-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PathCleaningFilter",
  "title": "PathCleaningFilter",
  "additionalProperties": false,
  "properties": {
    "alias": {
      "default": null,
      "title": "Alias",
      "type": "string",
      "nullable": true
    },
    "order": {
      "default": null,
      "title": "Order",
      "type": "number",
      "nullable": true
    },
    "regex": {
      "default": null,
      "title": "Regex",
      "type": "string",
      "nullable": true
    }
  },
  "type": "object"
}