U.S. Treasury Fiscal Data · JSON Structure

Treasury Exchange Rate Record Structure

A single exchange rate record from the Treasury Reporting Rates dataset.

Type: object Properties: 5
Federal GovernmentFinanceTreasuryNational DebtExchange RatesEconomics

ExchangeRateRecord 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

country currency exchange_rate effective_date record_date

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-exchange-rate-record-structure.json",
  "name": "ExchangeRateRecord",
  "description": "A single exchange rate record from the Treasury Reporting Rates dataset.",
  "type": "object",
  "properties": {
    "country": {
      "type": "string",
      "description": "Country name.",
      "example": "Afghanistan"
    },
    "currency": {
      "type": "string",
      "description": "Currency name.",
      "example": "Afghani"
    },
    "exchange_rate": {
      "type": "string",
      "description": "Exchange rate (units of foreign currency per USD).",
      "example": "64.77"
    },
    "effective_date": {
      "type": "date",
      "description": "Date the exchange rate became effective.",
      "example": "2026-03-31"
    },
    "record_date": {
      "type": "date",
      "description": "Record date in YYYY-MM-DD format.",
      "example": "2026-03-31"
    }
  }
}