Daily Cash And Debt Operations Of U.S. Treasury
The Daily Treasury Statement (DTS) Dataset from 2005-2023
@kaggle.nakulshahdadpuri314_daily_treasury_statement
The Daily Treasury Statement (DTS) Dataset from 2005-2023
@kaggle.nakulshahdadpuri314_daily_treasury_statement
The Daily Treasury Statement (DTS) dataset contains a series of tables showing the daily cash and debt operations of the U.S. Treasury.
The data includes operating cash balance, deposits and withdrawals of cash, public debt transactions, federal tax deposits, income tax refunds issued (by check and electronic funds transfer (EFT)), short-term cash investments, and issues and redemptions of securities. All figures are rounded to the nearest million.
CREATE TABLE dts_debtsubjlim_20051003_20230403 (
"record_date" TIMESTAMP,
"debt_category" VARCHAR,
"debt_category_description" VARCHAR,
"closing_balance_today" DOUBLE,
"opening_balance_today" DOUBLE,
"opening_balance_this_month" DOUBLE,
"opening_balance_this_fiscal_year" DOUBLE,
"table_number" VARCHAR,
"table_name" VARCHAR,
"sub_table_name" VARCHAR,
"source_line_number" BIGINT,
"fiscal_year" BIGINT,
"fiscal_quarter_number" BIGINT,
"calendar_year" BIGINT,
"calendar_quarter_number" BIGINT,
"calendar_month_number" BIGINT,
"calendar_day_number" BIGINT
);CREATE TABLE dts_fedtaxdpst_20051003_20230403 (
"record_date" TIMESTAMP,
"federal_tax_deposit_type" VARCHAR,
"federal_tax_deposit_type_description" VARCHAR,
"federal_tax_deposits_today" BIGINT,
"federal_tax_deposits_month_to_date" BIGINT,
"federal_tax_deposits_fiscal_year_to_date" BIGINT,
"table_number" VARCHAR,
"table_name" VARCHAR,
"sub_table_name" VARCHAR,
"source_line_number" BIGINT,
"fiscal_year" BIGINT,
"fiscal_quarter_number" BIGINT,
"calendar_year" BIGINT,
"calendar_quarter_number" BIGINT,
"calendar_month_number" BIGINT,
"calendar_day_number" BIGINT
);CREATE TABLE dts_incmtaxrfnd_20051003_20230403 (
"record_date" TIMESTAMP,
"federal_tax_refund_type" VARCHAR,
"federal_tax_refund_type_description" VARCHAR,
"federal_tax_refunds_today" BIGINT,
"federal_tax_refunds_month_to_date" BIGINT,
"federal_tax_refunds_fiscal_year_to_date" BIGINT,
"table_number" VARCHAR,
"table_name" VARCHAR,
"sub_table_name" VARCHAR,
"source_line_number" BIGINT,
"fiscal_year" BIGINT,
"fiscal_quarter_number" BIGINT,
"calendar_year" BIGINT,
"calendar_quarter_number" BIGINT,
"calendar_month_number" BIGINT,
"calendar_day_number" BIGINT
);CREATE TABLE dts_opcashbal_20051003_20230403 (
"record_date" TIMESTAMP,
"type_of_account" VARCHAR,
"closing_balance_today" DOUBLE,
"opening_balance_today" BIGINT,
"opening_balance_this_month" BIGINT,
"opening_balance_this_fiscal_year" BIGINT,
"table_number" VARCHAR,
"table_name" VARCHAR,
"sub_table_name" VARCHAR,
"source_line_number" BIGINT,
"fiscal_year" BIGINT,
"fiscal_quarter_number" BIGINT,
"calendar_year" BIGINT,
"calendar_quarter_number" BIGINT,
"calendar_month_number" BIGINT,
"calendar_day_number" BIGINT
);CREATE TABLE dts_opcashdpstwdrl_20051003_20230403 (
"record_date" TIMESTAMP,
"type_of_account" VARCHAR,
"transaction_type" VARCHAR,
"transaction_category" VARCHAR,
"transaction_category_description" VARCHAR,
"transactions_today" BIGINT,
"transactions_month_to_date" BIGINT,
"transactions_fiscal_year_to_date" BIGINT,
"table_number" VARCHAR,
"table_name" VARCHAR,
"source_line_number" BIGINT,
"fiscal_year" BIGINT,
"fiscal_quarter_number" BIGINT,
"calendar_year" BIGINT,
"calendar_quarter_number" BIGINT,
"calendar_month_number" BIGINT,
"calendar_day_number" BIGINT
);CREATE TABLE dts_pubdebtcashadj_20051003_20230403 (
"record_date" TIMESTAMP,
"transaction_type" VARCHAR,
"adjustment_type" VARCHAR,
"adjustment_type_description" VARCHAR,
"adjustments_today" BIGINT,
"adjustments_month_to_date" BIGINT,
"adjustments_fiscal_year_to_date" BIGINT,
"table_number" VARCHAR,
"table_name" VARCHAR,
"sub_table_name" VARCHAR,
"source_line_number" BIGINT,
"fiscal_year" BIGINT,
"fiscal_quarter_number" BIGINT,
"calendar_year" BIGINT,
"calendar_quarter_number" BIGINT,
"calendar_month_number" BIGINT,
"calendar_day_number" BIGINT
);CREATE TABLE dts_pubdebttrans_20051003_20230403 (
"record_date" TIMESTAMP,
"transaction_type" VARCHAR,
"security_marketability" VARCHAR,
"security_type" VARCHAR,
"security_type_description" VARCHAR,
"transactions_today" BIGINT,
"transactions_month_to_date" BIGINT,
"transactions_fiscal_year_to_date" BIGINT,
"table_number" VARCHAR,
"table_name" VARCHAR,
"source_line_number" BIGINT,
"fiscal_year" BIGINT,
"fiscal_quarter_number" BIGINT,
"calendar_year" BIGINT,
"calendar_quarter_number" BIGINT,
"calendar_month_number" BIGINT,
"calendar_day_number" BIGINT
);CREATE TABLE dts_stcashinvest_20051003_20230403 (
"record_date" TIMESTAMP,
"transaction_type" VARCHAR,
"transaction_type_description" VARCHAR,
"type_a_depositary_amount" BIGINT,
"type_b_depositary_amount" BIGINT,
"type_c_depositary_amount" BIGINT,
"total_amount" BIGINT,
"table_number" VARCHAR,
"table_name" VARCHAR,
"sub_table_name" VARCHAR,
"source_line_number" BIGINT,
"fiscal_year" BIGINT,
"fiscal_quarter_number" BIGINT,
"calendar_year" BIGINT,
"calendar_quarter_number" BIGINT,
"calendar_month_number" BIGINT,
"calendar_day_number" BIGINT
);Anyone who has the link will be able to view this.