{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/JqlQueriesToSanitize", "title": "JqlQueriesToSanitize", "additionalProperties": false, "description": "The list of JQL queries to sanitize for the given account IDs.", "properties": { "queries": { "description": "The list of JQL queries to sanitize. Must contain unique values. Maximum of 20 queries.", "items": { "$ref": "#/components/schemas/JqlQueryToSanitize" }, "type": "array" } }, "required": [ "queries" ], "type": "object", "writeOnly": true }