PostHog · Schema

BooleanScoreDefinitionConfig

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
true_label string Optional label for a true value.
false_label string Optional label for a false value.
View JSON Schema on GitHub

JSON Schema

posthog-booleanscoredefinitionconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BooleanScoreDefinitionConfig",
  "title": "BooleanScoreDefinitionConfig",
  "type": "object",
  "properties": {
    "true_label": {
      "type": "string",
      "description": "Optional label for a true value."
    },
    "false_label": {
      "type": "string",
      "description": "Optional label for a false value."
    }
  }
}