PostHog · Schema

WebOverviewItem

A/B TestingAnalyticsFeature FlagsOpen-SourceProduct AnalyticsSession Recording

Properties

Name Type Description
changeFromPreviousPct number
isIncreaseBad boolean
key string
kind object
previous number
usedPreAggregatedTables boolean
value number
View JSON Schema on GitHub

JSON Schema

posthog-weboverviewitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WebOverviewItem",
  "title": "WebOverviewItem",
  "additionalProperties": false,
  "properties": {
    "changeFromPreviousPct": {
      "default": null,
      "title": "Changefrompreviouspct",
      "type": "number",
      "nullable": true
    },
    "isIncreaseBad": {
      "default": null,
      "title": "Isincreasebad",
      "type": "boolean",
      "nullable": true
    },
    "key": {
      "title": "Key",
      "type": "string"
    },
    "kind": {
      "$ref": "#/components/schemas/WebAnalyticsItemKind"
    },
    "previous": {
      "default": null,
      "title": "Previous",
      "type": "number",
      "nullable": true
    },
    "usedPreAggregatedTables": {
      "default": null,
      "title": "Usedpreaggregatedtables",
      "type": "boolean",
      "nullable": true
    },
    "value": {
      "default": null,
      "title": "Value",
      "type": "number",
      "nullable": true
    }
  },
  "required": [
    "key",
    "kind"
  ],
  "type": "object"
}