{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IssueMatchesForJQL", "title": "IssueMatchesForJQL", "additionalProperties": false, "description": "A list of the issues matched to a JQL query or details of errors encountered during matching.", "properties": { "errors": { "description": "A list of errors.", "items": { "description": "A list of errors.", "type": "string" }, "type": "array", "uniqueItems": true }, "matchedIssues": { "description": "A list of issue IDs.", "items": { "description": "A list of issue IDs.", "format": "int64", "type": "integer" }, "type": "array", "uniqueItems": true } }, "required": [ "errors", "matchedIssues" ], "type": "object" }