U.S. Treasury Fiscal Data · JSON Structure

Treasury Fiscal Links Structure

Pagination links for navigating result pages.

Type: object Properties: 5
Federal GovernmentFinanceTreasuryNational DebtExchange RatesEconomics

FiscalLinks is a JSON Structure definition published by U.S. Treasury Fiscal Data, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

self first prev next last

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/u-s-treasury-fiscal-data/refs/heads/main/json-structure/treasury-fiscal-links-structure.json",
  "name": "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",
      "description": "URL parameters for the previous page (null if on first page).",
      "example": null
    },
    "next": {
      "type": "string",
      "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"
    }
  }
}