PostHog · Schema

IntervalItem

A/B TestingAnalyticsFeature FlagsOpen-SourceProduct AnalyticsSession Recording

Properties

Name Type Description
label string
value integer An interval selected out of available intervals in source query
View JSON Schema on GitHub

JSON Schema

posthog-intervalitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IntervalItem",
  "title": "IntervalItem",
  "additionalProperties": false,
  "properties": {
    "label": {
      "title": "Label",
      "type": "string"
    },
    "value": {
      "description": "An interval selected out of available intervals in source query",
      "title": "Value",
      "type": "integer"
    }
  },
  "required": [
    "label",
    "value"
  ],
  "type": "object"
}