InterestRateRecord

A single interest rate record for a Treasury security type.

Federal GovernmentFinanceTreasuryNational DebtExchange RatesEconomics

Properties

Name Type Description
security_desc string Description of the Treasury security type.
security_type_desc string Broader security type (Marketable or Nonmarketable).
avg_interest_rate_amt string Average interest rate as a percentage.
record_date string Record date in YYYY-MM-DD format.
View JSON Schema on GitHub

JSON Schema

treasury-interest-rate-record-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-record-schema.json",
  "title": "InterestRateRecord",
  "description": "A single interest rate record for a Treasury security type.",
  "type": "object",
  "properties": {
    "security_desc": {
      "type": "string",
      "description": "Description of the Treasury security type.",
      "example": "Treasury Bills"
    },
    "security_type_desc": {
      "type": "string",
      "description": "Broader security type (Marketable or Nonmarketable).",
      "example": "Marketable"
    },
    "avg_interest_rate_amt": {
      "type": "string",
      "description": "Average interest rate as a percentage.",
      "example": "3.702"
    },
    "record_date": {
      "type": "string",
      "format": "date",
      "description": "Record date in YYYY-MM-DD format.",
      "example": "2026-03-31"
    }
  }
}