PostHog · Schema

EndpointsUsageOverviewItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
changeFromPreviousPct number
key object
previous number
value number
View JSON Schema on GitHub

JSON Schema

posthog-endpointsusageoverviewitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EndpointsUsageOverviewItem",
  "title": "EndpointsUsageOverviewItem",
  "additionalProperties": false,
  "properties": {
    "changeFromPreviousPct": {
      "default": null,
      "title": "Changefrompreviouspct",
      "type": "number",
      "nullable": true
    },
    "key": {
      "$ref": "#/components/schemas/EndpointsUsageOverviewItemKey"
    },
    "previous": {
      "default": null,
      "title": "Previous",
      "type": "number",
      "nullable": true
    },
    "value": {
      "default": null,
      "title": "Value",
      "type": "number",
      "nullable": true
    }
  },
  "required": [
    "key"
  ],
  "type": "object"
}