Jira · Schema

PageOfComments

A paginated list of comments.

AgileIssue TrackingITSMProject ManagementService Management

Properties

Name Type Description
startAt integer
maxResults integer
total integer
comments array
View JSON Schema on GitHub

JSON Schema

jira-cloud-platform-rest-page-of-comments-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PageOfComments",
  "type": "object",
  "description": "A paginated list of comments.",
  "properties": {
    "startAt": {
      "type": "integer"
    },
    "maxResults": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    },
    "comments": {
      "type": "array"
    }
  }
}