PostHog · Schema

ErrorTrackingIssueSplitFingerprint

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
fingerprint string Fingerprint to split into a new issue.
name string Optional name for the new issue created from this fingerprint.
description string Optional description for the new issue created from this fingerprint.
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingissuesplitfingerprint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingIssueSplitFingerprint",
  "title": "ErrorTrackingIssueSplitFingerprint",
  "type": "object",
  "properties": {
    "fingerprint": {
      "type": "string",
      "description": "Fingerprint to split into a new issue."
    },
    "name": {
      "type": "string",
      "description": "Optional name for the new issue created from this fingerprint."
    },
    "description": {
      "type": "string",
      "description": "Optional description for the new issue created from this fingerprint."
    }
  },
  "required": [
    "fingerprint"
  ]
}