Atlassian · Schema

PaginationLinks

Links for cursor-based pagination.

CodeCollaborationPlatformProductivitySoftware Development

Properties

Name Type Description
self string Link to the current page.
next string Link to the next page of results.
prev string Link to the previous page of results.
View JSON Schema on GitHub

JSON Schema

atlassian-paginationlinks-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginationLinks",
  "title": "PaginationLinks",
  "type": "object",
  "description": "Links for cursor-based pagination.",
  "properties": {
    "self": {
      "type": "string",
      "format": "uri",
      "description": "Link to the current page.",
      "example": "https://www.example.com"
    },
    "next": {
      "type": "string",
      "format": "uri",
      "description": "Link to the next page of results.",
      "example": "https://www.example.com"
    },
    "prev": {
      "type": "string",
      "format": "uri",
      "description": "Link to the previous page of results.",
      "example": "https://www.example.com"
    }
  }
}