documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "RITA-2008-0002" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| RITA-2008-0002-0008 | RITA | BTS Paperwork Reduction Notice RITA-2008-0002 | Agency Information Collection; Activity Under OMB Review; Passenger Origin-Destination Survey Report | Rule | Federal Register Publication | 2009-11-16T05:00:00Z | 2009 | 11 | 2009-11-16T05:00:00Z | 2010-01-16T04:59:59Z | 2024-11-12T04:48:51Z | E9-27420 | 1 | 0 | 0900006480a5826e |
| RITA-2008-0002-0007 | RITA | BTS Paperwork Reduction Notice RITA-2008-0002 | Agency Information Collection; Activity Under OMB Review; Part 249 Preservation of Records | Rule | Federal Register Publication | 2009-11-16T05:00:00Z | 2009 | 11 | 2009-11-16T05:00:00Z | 2010-01-16T04:59:59Z | 2024-11-12T04:48:46Z | E9-27408 | 1 | 0 | 0900006480a5823e |
| RITA-2008-0002-0006 | RITA | BTS Paperwork Reduction Notice RITA-2008-0002 | Notice of Request for Approval To Continue To Collect New Information: Confidential Close Call Reporting System | Rule | Federal Register Publication | 2009-10-21T04:00:00Z | 2009 | 10 | 2009-10-21T04:00:00Z | 2009-12-22T04:59:59Z | 2014-05-20T13:36:59Z | E9-25316 | 0 | 0 | 0900006480a47234 |
| RITA-2008-0002-0005 | RITA | BTS Paperwork Reduction Notice RITA-2008-0002 | Agency Information Collection; Activity Under OMB Review; Report of Extension of Credit to Political Candidates | Rule | Federal Register Publication | 2009-07-22T04:00:00Z | 2009 | 7 | 2009-07-22T04:00:00Z | 2009-08-22T03:59:59Z | 2014-05-20T13:36:59Z | E9-17393 | 0 | 0 | 09000064809f77c9 |
| RITA-2008-0002-0001 | RITA | BTS Paperwork Reduction Notice RITA-2008-0002 | Research and Innovative Technology Administration; Bureau of Transportation Statistics; Agency Information Collection; Activity Under OMB Review; Report of Extension of Credit to Political Candidates-- Form 183 | Rule | Federal Register Publication | 2009-03-16T04:00:00Z | 2009 | 3 | 2009-03-16T04:00:00Z | 2024-11-07T22:03:35Z | E9-5616 | 1 | 0 | 0900006480914c7d | |
| RITA-2008-0002-0002 | RITA | BTS Paperwork Reduction Notice RITA-2008-0002 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Notice | 2009-03-16T04:00:00Z | 2009 | 3 | 2009-03-16T04:00:00Z | 2009-05-16T03:59:59Z | 2014-05-20T13:36:59Z | E9-05616 | 0 | 0 | 0900006480914789 |
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;