FiscalLinks

Pagination links for navigating result pages.

Federal GovernmentFinanceTreasuryNational DebtExchange RatesEconomics

Properties

Name Type Description
self string URL parameters for the current page.
first string URL parameters for the first page.
prev string URL parameters for the previous page (null if on first page).
next string URL parameters for the next page (null if on last page).
last string URL parameters for the last page.
View JSON Schema on GitHub

JSON Schema

treasury-fiscal-links-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-treasury-fiscal-data/refs/heads/main/json-schema/treasury-fiscal-links-schema.json",
  "title": "FiscalLinks",
  "description": "Pagination links for navigating result pages.",
  "type": "object",
  "properties": {
    "self": {
      "type": "string",
      "description": "URL parameters for the current page.",
      "example": "&page%5Bnumber%5D=1&page%5Bsize%5D=100"
    },
    "first": {
      "type": "string",
      "description": "URL parameters for the first page.",
      "example": "&page%5Bnumber%5D=1&page%5Bsize%5D=100"
    },
    "prev": {
      "type": "string",
      "nullable": true,
      "description": "URL parameters for the previous page (null if on first page).",
      "example": null
    },
    "next": {
      "type": "string",
      "nullable": true,
      "description": "URL parameters for the next page (null if on last page).",
      "example": "&page%5Bnumber%5D=2&page%5Bsize%5D=100"
    },
    "last": {
      "type": "string",
      "description": "URL parameters for the last page.",
      "example": "&page%5Bnumber%5D=83&page%5Bsize%5D=100"
    }
  }
}