PostHog · Schema

FeatureFlagMultivariateVariantSchema

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
key string Unique key for this variant.
name string Human-readable name for this variant.
rollout_percentage number Variant rollout percentage.
View JSON Schema on GitHub

JSON Schema

posthog-featureflagmultivariatevariantschema-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FeatureFlagMultivariateVariantSchema",
  "title": "FeatureFlagMultivariateVariantSchema",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Unique key for this variant."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name for this variant."
    },
    "rollout_percentage": {
      "type": "number",
      "format": "double",
      "description": "Variant rollout percentage."
    }
  },
  "required": [
    "key",
    "rollout_percentage"
  ]
}