PostHog · Schema

BoxPlotDatum

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
day string
label string
max number
mean number
median number
min number
p25 number
p75 number
series_index integer
series_label string
View JSON Schema on GitHub

JSON Schema

posthog-boxplotdatum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BoxPlotDatum",
  "title": "BoxPlotDatum",
  "additionalProperties": false,
  "properties": {
    "day": {
      "title": "Day",
      "type": "string"
    },
    "label": {
      "title": "Label",
      "type": "string"
    },
    "max": {
      "title": "Max",
      "type": "number"
    },
    "mean": {
      "title": "Mean",
      "type": "number"
    },
    "median": {
      "title": "Median",
      "type": "number"
    },
    "min": {
      "title": "Min",
      "type": "number"
    },
    "p25": {
      "title": "P25",
      "type": "number"
    },
    "p75": {
      "title": "P75",
      "type": "number"
    },
    "series_index": {
      "default": null,
      "title": "Series Index",
      "type": "integer",
      "nullable": true
    },
    "series_label": {
      "default": null,
      "title": "Series Label",
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "day",
    "label",
    "max",
    "mean",
    "median",
    "min",
    "p25",
    "p75"
  ],
  "type": "object"
}