PostHog · Schema

ErrorTrackingIssueAssignment

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id object
type string
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingissueassignment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingIssueAssignment",
  "title": "ErrorTrackingIssueAssignment",
  "type": "object",
  "properties": {
    "id": {
      "oneOf": [
        {
          "type": "integer"
        },
        {
          "type": "string"
        }
      ],
      "nullable": true,
      "readOnly": true
    },
    "type": {
      "type": "string",
      "readOnly": true
    }
  },
  "required": [
    "id",
    "type"
  ]
}