PostHog · Schema

ErrorTrackingIssueCohort

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

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

JSON Schema

posthog-errortrackingissuecohort-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingIssueCohort",
  "title": "ErrorTrackingIssueCohort",
  "additionalProperties": false,
  "properties": {
    "id": {
      "title": "Id",
      "type": "number"
    },
    "name": {
      "title": "Name",
      "type": "string"
    }
  },
  "required": [
    "id",
    "name"
  ],
  "type": "object"
}