Atlassian · Schema

PaginatedResponseComment

CodeCollaborationPlatformProductivitySoftware Development

Properties

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

JSON Schema

atlassian-paginatedresponsecomment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginatedResponseComment",
  "title": "PaginatedResponseComment",
  "additionalProperties": false,
  "properties": {
    "maxResults": {
      "format": "int32",
      "type": "integer"
    },
    "results": {
      "items": {
        "$ref": "#/components/schemas/Comment"
      },
      "type": "array"
    },
    "startAt": {
      "format": "int64",
      "type": "integer"
    },
    "total": {
      "format": "int64",
      "type": "integer"
    }
  },
  "type": "object"
}