A list of issue IDs.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IssueList", "title": "IssueList", "additionalProperties": false, "description": "A list of issue IDs.", "properties": { "issueIds": { "description": "The list of issue IDs.", "items": { "type": "string" }, "type": "array" } }, "required": [ "issueIds" ], "type": "object" }