PostHog · Schema

DependentFlag

A/B TestingAnalyticsFeature FlagsOpen-SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id integer Feature flag ID
key string Feature flag key
name string Feature flag name
View JSON Schema on GitHub

JSON Schema

posthog-dependentflag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DependentFlag",
  "title": "DependentFlag",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Feature flag ID"
    },
    "key": {
      "type": "string",
      "description": "Feature flag key"
    },
    "name": {
      "type": "string",
      "description": "Feature flag name"
    }
  },
  "required": [
    "id",
    "key",
    "name"
  ]
}