PostHog · Schema

ScoreDefinitionNewVersion

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
config object Next immutable scorer configuration.
View JSON Schema on GitHub

JSON Schema

posthog-scoredefinitionnewversion-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScoreDefinitionNewVersion",
  "title": "ScoreDefinitionNewVersion",
  "type": "object",
  "properties": {
    "config": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ScoreDefinitionConfig"
        }
      ],
      "description": "Next immutable scorer configuration."
    }
  },
  "required": [
    "config"
  ]
}