PostHog · Schema

ErrorTrackingSpikeEventIssue

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
description string
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingspikeeventissue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingSpikeEventIssue",
  "title": "ErrorTrackingSpikeEventIssue",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    },
    "description": {
      "type": "string",
      "readOnly": true,
      "nullable": true
    }
  },
  "required": [
    "description",
    "id",
    "name"
  ]
}