Stellar · Schema

Pagination

BlockchainCryptocurrencyDecentralized ExchangeLedgerPaymentsSmart ContractsWeb3

Properties

Name Type Description
next string
prev string
pages integer
total integer
View JSON Schema on GitHub

JSON Schema

stellar-sdp-pagination.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://developers.stellar.org/schemas/sdp/Pagination.json",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "next": {
      "type": "string",
      "example": "?page=3&page_limit=2"
    },
    "prev": {
      "type": "string",
      "example": "?page=1&page_limit=2"
    },
    "pages": {
      "type": "integer",
      "example": 8
    },
    "total": {
      "type": "integer",
      "example": 16
    }
  }
}