PostHog · Schema

StatusItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
label string
value string
View JSON Schema on GitHub

JSON Schema

posthog-statusitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StatusItem",
  "title": "StatusItem",
  "additionalProperties": false,
  "properties": {
    "label": {
      "title": "Label",
      "type": "string"
    },
    "value": {
      "title": "Value",
      "type": "string"
    }
  },
  "required": [
    "label",
    "value"
  ],
  "type": "object"
}