PostHog · Schema

ResultCustomizationByPosition

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
assignmentBy string
color object
hidden boolean
View JSON Schema on GitHub

JSON Schema

posthog-resultcustomizationbyposition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ResultCustomizationByPosition",
  "title": "ResultCustomizationByPosition",
  "additionalProperties": false,
  "properties": {
    "assignmentBy": {
      "default": "position",
      "title": "Assignmentby",
      "type": "string",
      "enum": [
        "position"
      ]
    },
    "color": {
      "default": null,
      "allOf": [
        {
          "$ref": "#/components/schemas/DataColorToken"
        }
      ],
      "nullable": true
    },
    "hidden": {
      "default": null,
      "title": "Hidden",
      "type": "boolean",
      "nullable": true
    }
  },
  "type": "object"
}