documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "RITA-2009-0002" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2009-0002-0041 | RITA | Federal Registers for Items without a Docket RITA-2009-0002 | Funding Availability: University Transportation Centers Program | Notice | Notice of Change | 2013-11-18T05:00:00Z | 2013 | 11 | 2013-11-18T05:00:00Z | 2013-11-18T21:44:02Z | 2013-27421 | 0 | 0 | 0900006481486c4c | |
| RITA-2009-0002-0040 | RITA | Federal Registers for Items without a Docket RITA-2009-0002 | Meetings: Advisory Council on Transportation Statistics | Notice | Notice of Change | 2013-11-04T05:00:00Z | 2013 | 11 | 2013-11-04T05:00:00Z | 2013-11-15T04:59:59Z | 2013-11-04T16:46:30Z | 2013-26126 | 0 | 0 | 090000648146fa0d |
| RITA-2009-0002-0039 | RITA | Federal Registers for Items without a Docket RITA-2009-0002 | Meetings: Connected Vehicle Planning and Policy Stakeholder; Cancellation | Notice | Meeting | 2013-09-10T04:00:00Z | 2013 | 9 | 2013-09-10T04:00:00Z | 2013-09-10T15:07:08Z | 2013-21990 | 0 | 0 | 09000064813ebbbd | |
| RITA-2009-0002-0038 | RITA | Federal Registers for Items without a Docket RITA-2009-0002 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Confidential Close Call Reporting System | Notice | Notice of Change | 2013-07-24T04:00:00Z | 2013 | 7 | 2013-07-24T04:00:00Z | 2013-08-24T03:59:59Z | 2024-11-07T22:56:49Z | 2013-17684 | 1 | 0 | 0900006481379d7e |
| RITA-2009-0002-0037 | RITA | Federal Registers for Items without a Docket RITA-2009-0002 | Meetings: Intelligent Transportation Systems Program Advisory Committee | Notice | Meeting | 2013-07-19T04:00:00Z | 2013 | 7 | 2013-07-19T04:00:00Z | 2013-08-01T03:59:59Z | 2024-11-07T22:58:39Z | 2013-17358 | 1 | 0 | 0900006481370568 |
| RITA-2009-0002-0036 | RITA | Federal Registers for Items without a Docket RITA-2009-0002 | Meetings: Advisory Council on Transportation Statistics | Notice | Meeting | 2013-05-03T04:00:00Z | 2013 | 5 | 2013-05-03T04:00:00Z | 2013-05-14T03:59:59Z | 2013-05-03T14:42:56Z | 2013-10507 | 0 | 0 | 09000064812b3e78 |
| RITA-2009-0002-0035 | RITA | Federal Registers for Items without a Docket RITA-2009-0002 | Meetings: Advisory Council on Transportation Statistics | Notice | Notice of Change | 2013-03-04T05:00:00Z | 2013 | 3 | 2013-03-04T05:00:00Z | 2024-11-07T22:51:54Z | 2013-04898 | 1 | 0 | 090000648121693d | |
| RITA-2009-0002-0034 | RITA | Federal Registers for Items without a Docket RITA-2009-0002 | Meetings: Advisory Council on Transportation Statistics | Notice | Notice of Change | 2013-02-20T05:00:00Z | 2013 | 2 | 2013-02-20T05:00:00Z | 2024-11-07T22:48:42Z | 2013-03615 | 1 | 0 | 09000064811fe90e |
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;