{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SanitizedJqlQuery",
"title": "SanitizedJqlQuery",
"additionalProperties": false,
"description": "Details of the sanitized JQL query.",
"properties": {
"accountId": {
"description": "The account ID of the user for whom sanitization was performed.",
"maxLength": 128,
"nullable": true,
"type": "string"
},
"errors": {
"allOf": [
{
"$ref": "#/components/schemas/ErrorCollection"
}
],
"description": "The list of errors."
},
"initialQuery": {
"description": "The initial query.",
"type": "string"
},
"sanitizedQuery": {
"description": "The sanitized query, if there were no errors.",
"nullable": true,
"type": "string"
}
},
"type": "object"
}