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