{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/IssueCommentListRequestBean", "title": "IssueCommentListRequestBean", "additionalProperties": false, "properties": { "ids": { "description": "The list of comment IDs. A maximum of 1000 IDs can be specified.", "items": { "format": "int64", "type": "integer" }, "type": "array", "uniqueItems": true } }, "required": [ "ids" ], "type": "object" }