Euler Finance · Schema

PaginationMeta

DeFiLendingBorrowingFinanceEthereumBlockchainVaultsLiquidationInterest RatesPermissionless

Properties

Name Type Description
total integer Exact total count when the endpoint provides one.
hasMore boolean Indicates whether another page exists beyond the current page.
offset integer
limit integer Echoed page size after endpoint-side clamping.
timestamp string
chainId string Comma-separated chain IDs for multi-chain responses.
View JSON Schema on GitHub

JSON Schema

pagination-meta.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PaginationMeta",
  "type": "object",
  "required": [
    "timestamp"
  ],
  "properties": {
    "total": {
      "type": "integer",
      "description": "Exact total count when the endpoint provides one."
    },
    "hasMore": {
      "type": "boolean",
      "description": "Indicates whether another page exists beyond the current page."
    },
    "offset": {
      "type": "integer"
    },
    "limit": {
      "type": "integer",
      "description": "Echoed page size after endpoint-side clamping."
    },
    "timestamp": {
      "type": "string",
      "format": "date-time"
    },
    "chainId": {
      "type": "string",
      "description": "Comma-separated chain IDs for multi-chain responses."
    }
  }
}