PostHog · Schema

HogFlowMasking

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
ttl integer
threshold integer
hash string
bytecode object
View JSON Schema on GitHub

JSON Schema

posthog-hogflowmasking-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HogFlowMasking",
  "title": "HogFlowMasking",
  "type": "object",
  "properties": {
    "ttl": {
      "type": "integer",
      "maximum": 94608000,
      "minimum": 60,
      "nullable": true
    },
    "threshold": {
      "type": "integer",
      "nullable": true
    },
    "hash": {
      "type": "string"
    },
    "bytecode": {
      "nullable": true
    }
  },
  "required": [
    "hash"
  ]
}