PostHog · Schema

HogFunctionStatus

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
state object
tokens integer
View JSON Schema on GitHub

JSON Schema

posthog-hogfunctionstatus-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HogFunctionStatus",
  "title": "HogFunctionStatus",
  "type": "object",
  "properties": {
    "state": {
      "$ref": "#/components/schemas/HogFunctionStatusStateEnum"
    },
    "tokens": {
      "type": "integer"
    }
  },
  "required": [
    "state",
    "tokens"
  ]
}