PostHog · Schema

CategoricalScoreOption

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
key string Stable option key. Use lowercase letters, numbers, underscores, or hyphens.
label string Human-readable option label.
View JSON Schema on GitHub

JSON Schema

posthog-categoricalscoreoption-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CategoricalScoreOption",
  "title": "CategoricalScoreOption",
  "type": "object",
  "properties": {
    "key": {
      "type": "string",
      "description": "Stable option key. Use lowercase letters, numbers, underscores, or hyphens.",
      "maxLength": 128
    },
    "label": {
      "type": "string",
      "description": "Human-readable option label.",
      "maxLength": 256
    }
  },
  "required": [
    "key",
    "label"
  ]
}