{ "$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" ] }