Atlassian · Schema

PageBeanUser

A page of items.

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 If there is another page of results, the URL of the next page.
self string The URL of the page.
startAt integer The index of the first item returned.
total integer The number of items returned.
values array The list of items.
View JSON Schema on GitHub

JSON Schema

atlassian-pagebeanuser-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PageBeanUser",
  "title": "PageBeanUser",
  "additionalProperties": false,
  "description": "A page of items.",
  "properties": {
    "isLast": {
      "description": "Whether this is the last page.",
      "readOnly": true,
      "type": "boolean"
    },
    "maxResults": {
      "description": "The maximum number of items that could be returned.",
      "format": "int32",
      "readOnly": true,
      "type": "integer"
    },
    "nextPage": {
      "description": "If there is another page of results, the URL of the next page.",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "self": {
      "description": "The URL of the page.",
      "format": "uri",
      "readOnly": true,
      "type": "string"
    },
    "startAt": {
      "description": "The index of the first item returned.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "total": {
      "description": "The number of items returned.",
      "format": "int64",
      "readOnly": true,
      "type": "integer"
    },
    "values": {
      "description": "The list of items.",
      "items": {
        "$ref": "#/components/schemas/User"
      },
      "readOnly": true,
      "type": "array"
    }
  },
  "type": "object"
}