documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "TREAS", document_type = "Notice" and posted_year = 2010 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| id | agency_id | docket_id | title | document_type | subtype | posted_date ▲ | posted_year | posted_month | comment_start_date | comment_end_date | last_modified | fr_doc_num | open_for_comment | withdrawn | object_id |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TREAS-DO-2010-0008-0001 | TREAS | Statement on Legal Entity Identification for Financial Contracts TREAS-DO-2010-0008 | Statement on Legal Entity Identification for Financial Contracts | Notice | Notice | 2010-11-30T05:00:00Z | 2010 | 11 | 2010-11-30T05:00:00Z | 2011-02-01T04:59:59Z | 2010-11-30T16:24:34Z | 0 | 0 | 0900006480ba95d7 | |
| TREAS-DO-2010-0006-0001 | TREAS | Determination of Foreign Exchange Swaps and Forwards TREAS-DO-2010-0006 | Determination of Foreign Exchange Swaps and Forwards | Notice | Notice | 2010-10-28T04:00:00Z | 2010 | 10 | 2010-10-28T04:00:00Z | 2010-11-30T04:59:59Z | 2010-12-01T15:44:54Z | 0 | 0 | 0900006480b79088 | |
| TREAS-DO-2010-0004-0001 | TREAS | Analysis by the President’s Working Group on Financial Markets on the Long-term Availability and Affordability of Insurance for Terrorism Risk. TREAS-DO-2010-0004 | Analysis by the President’s Working Group on Financial Markets on the Long-Term Availability and Affordability of Insurance for Terrorism Risk | Notice | Notice | 2010-06-17T04:00:00Z | 2010 | 6 | 2010-06-17T04:00:00Z | 2010-08-03T03:59:59Z | 2010-06-17T13:59:23Z | 0 | 0 | 0900006480b041e6 | |
| TREAS-DO-2010-0003-0001 | TREAS | Meaningful Access to United States Currency for Blind and Visually Impaired Persons TREAS-DO-2010-0003 | Meaningful Access to United States Currency for Blind and Visually Impaired Persons | Notice | Notice | 2010-05-20T04:00:00Z | 2010 | 5 | 2010-05-20T04:00:00Z | 2010-08-19T03:59:59Z | 2010-06-21T16:26:54Z | 0 | 0 | 0900006480af12e2 | |
| TREAS-DO-2010-0001-0001 | TREAS | Public Input on Reform of the Housing Finance System TREAS-DO-2010-0001 | Public Input on Reform of the Housing Finance System | Notice | Notice | 2010-04-22T04:00:00Z | 2010 | 4 | 2010-04-22T04:00:00Z | 2010-07-22T03:59:59Z | 2014-10-20T23:33:38Z | 0 | 0 | 0900006480add406 |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE documents (
id TEXT PRIMARY KEY,
agency_id TEXT,
docket_id TEXT REFERENCES dockets(id),
title TEXT,
document_type TEXT,
subtype TEXT,
posted_date TEXT,
posted_year INTEGER,
posted_month INTEGER,
comment_start_date TEXT,
comment_end_date TEXT,
last_modified TEXT,
fr_doc_num TEXT,
open_for_comment INTEGER,
withdrawn INTEGER,
object_id TEXT
);
CREATE INDEX idx_docs_agency ON documents(agency_id);
CREATE INDEX idx_docs_docket ON documents(docket_id);
CREATE INDEX idx_docs_date ON documents(posted_date);
CREATE INDEX idx_docs_year ON documents(posted_year);
CREATE INDEX idx_docs_type ON documents(document_type);
CREATE INDEX idx_docs_frnum ON documents(fr_doc_num);
CREATE INDEX idx_docs_comment_end ON documents(comment_end_date) WHERE comment_end_date IS NOT NULL AND withdrawn = 0;