PostHog · Schema

FeatureFlagStatusResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
status string Flag status: active, stale, deleted, or unknown
reason string Human-readable explanation of the status
View JSON Schema on GitHub

JSON Schema

posthog-featureflagstatusresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeatureFlagStatusResponse",
  "title": "FeatureFlagStatusResponse",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "description": "Flag status: active, stale, deleted, or unknown"
    },
    "reason": {
      "type": "string",
      "description": "Human-readable explanation of the status"
    }
  },
  "required": [
    "reason",
    "status"
  ]
}