Atlassian · Schema

PageOfStatuses

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
isLast boolean Whether this is the last page.
maxResults integer The maximum number of items that could be returned.
nextPage string The URL of the next page of results, if any.
self string The URL of this page.
startAt integer The index of the first item returned on the page.
total integer Number of items that satisfy the search.
values array The list of items.
View JSON Schema on GitHub

JSON Schema

atlassian-pageofstatuses-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PageOfStatuses",
  "title": "PageOfStatuses",
  "additionalProperties": false,
  "properties": {
    "isLast": {
      "description": "Whether this is the last page.",
      "type": "boolean"
    },
    "maxResults": {
      "description": "The maximum number of items that could be returned.",
      "format": "int32",
      "type": "integer"
    },
    "nextPage": {
      "description": "The URL of the next page of results, if any.",
      "type": "string"
    },
    "self": {
      "description": "The URL of this page.",
      "type": "string"
    },
    "startAt": {
      "description": "The index of the first item returned on the page.",
      "format": "int64",
      "type": "integer"
    },
    "total": {
      "description": "Number of items that satisfy the search.",
      "format": "int64",
      "type": "integer"
    },
    "values": {
      "description": "The list of items.",
      "items": {
        "$ref": "#/components/schemas/JiraStatus"
      },
      "type": "array"
    }
  },
  "type": "object"
}