InterestRateResponse

Response from the Average Interest Rates endpoint.

Federal GovernmentFinanceTreasuryNational DebtExchange RatesEconomics

Properties

Name Type Description
data array Array of interest rate records.
meta object
links object
View JSON Schema on GitHub

JSON Schema

treasury-interest-rate-response-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-interest-rate-response-schema.json",
  "title": "InterestRateResponse",
  "description": "Response from the Average Interest Rates endpoint.",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "description": "Array of interest rate records.",
      "items": {
        "$ref": "#/components/schemas/InterestRateRecord"
      }
    },
    "meta": {
      "$ref": "#/components/schemas/FiscalMeta"
    },
    "links": {
      "$ref": "#/components/schemas/FiscalLinks"
    }
  }
}