PostHog · Schema

ErrorTrackingIssueSplitResponse

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
success boolean Whether the split completed successfully.
new_issue_ids array IDs of the new issues created by the split.
View JSON Schema on GitHub

JSON Schema

posthog-errortrackingissuesplitresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorTrackingIssueSplitResponse",
  "title": "ErrorTrackingIssueSplitResponse",
  "type": "object",
  "properties": {
    "success": {
      "type": "boolean",
      "description": "Whether the split completed successfully."
    },
    "new_issue_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "description": "IDs of the new issues created by the split."
    }
  },
  "required": [
    "new_issue_ids",
    "success"
  ]
}