U.S. Treasury Fiscal Data · JSON Structure

Treasury Debt Record Structure

A single record from the Debt to the Penny dataset.

Type: object Properties: 11
Federal GovernmentFinanceTreasuryNational DebtExchange RatesEconomics

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

Properties

record_date tot_pub_debt_out_amt debt_held_public_amt intragov_hold_amt src_line_nbr record_fiscal_year record_fiscal_quarter record_calendar_year record_calendar_quarter record_calendar_month record_calendar_day

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-debt-record-structure.json",
  "name": "DebtRecord",
  "description": "A single record from the Debt to the Penny dataset.",
  "type": "object",
  "properties": {
    "record_date": {
      "type": "date",
      "description": "Date of the debt calculation in YYYY-MM-DD format.",
      "example": "2026-04-30"
    },
    "tot_pub_debt_out_amt": {
      "type": "string",
      "description": "Total public debt outstanding in U.S. dollars.",
      "example": "38967833861543.11"
    },
    "debt_held_public_amt": {
      "type": "string",
      "description": "Portion of debt held by the public in U.S. dollars.",
      "example": "31272489865435.88"
    },
    "intragov_hold_amt": {
      "type": "string",
      "description": "Intragovernmental holdings in U.S. dollars.",
      "example": "7695343996107.23"
    },
    "src_line_nbr": {
      "type": "string",
      "description": "Source line number.",
      "example": "1"
    },
    "record_fiscal_year": {
      "type": "string",
      "description": "Federal fiscal year of the record.",
      "example": "2026"
    },
    "record_fiscal_quarter": {
      "type": "string",
      "description": "Federal fiscal quarter of the record.",
      "example": "Q2"
    },
    "record_calendar_year": {
      "type": "string",
      "description": "Calendar year of the record.",
      "example": "2026"
    },
    "record_calendar_quarter": {
      "type": "string",
      "description": "Calendar quarter of the record.",
      "example": "Q2"
    },
    "record_calendar_month": {
      "type": "string",
      "description": "Calendar month of the record.",
      "example": "04"
    },
    "record_calendar_day": {
      "type": "string",
      "description": "Calendar day of the record.",
      "example": "30"
    }
  }
}