{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IssueMatches", "title": "IssueMatches", "additionalProperties": false, "description": "A list of matched issues or errors for each JQL query, in the order the JQL queries were passed.", "properties": { "matches": { "items": { "$ref": "#/components/schemas/IssueMatchesForJQL" }, "type": "array" } }, "required": [ "matches" ], "type": "object" }