Atlassian · Schema

IssueCommentListRequestBean

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
ids array The list of comment IDs. A maximum of 1000 IDs can be specified.
View JSON Schema on GitHub

JSON Schema

atlassian-issuecommentlistrequestbean-schema.json Raw ↑
{
  "$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"
}