documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2015-0105" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FRA-2015-0105-0022 | FRA | Association of American Railroads - Waiver Petition FRA-2015-0105 | U.S. DOT/FRA-AAR Decision Letter 2018 | Other | Decision | 2018-10-23T04:00:00Z | 2018 | 10 | 2018-10-23T04:00:00Z | 2018-10-23T15:58:08Z | 0 | 0 | 090000648383d6bf | ||
| FRA-2015-0105-0021 | FRA | Association of American Railroads - Waiver Petition FRA-2015-0105 | Request July 2018. and Attachments | Other | Request | 2018-08-03T04:00:00Z | 2018 | 8 | 2018-08-03T04:00:00Z | 2018-08-03T18:05:41Z | 0 | 0 | 09000064835c6a0a | ||
| FRA-2015-0105-0020 | FRA | Association of American Railroads - Waiver Petition FRA-2015-0105 | US DOT/FRA-Decision Letter | Other | Decision | 2018-05-09T04:00:00Z | 2018 | 5 | 2018-05-09T04:00:00Z | 2018-05-09T19:29:46Z | 0 | 0 | 0900006483250a8b | ||
| FRA-2015-0105-0019 | FRA | Association of American Railroads - Waiver Petition FRA-2015-0105 | U.S.DOT/FRA - Temporary Extension Letter | Other | Letter(s) | 2018-03-26T04:00:00Z | 2018 | 3 | 2018-03-26T04:00:00Z | 2024-11-07T01:25:13Z | 1 | 0 | 090000648304de9a | ||
| FRA-2015-0105-0018 | FRA | Association of American Railroads - Waiver Petition FRA-2015-0105 | FRA-AAR Response Letter 2018 | Other | Response(s) | 2018-03-07T05:00:00Z | 2018 | 3 | 2018-03-07T05:00:00Z | 2018-03-07T20:34:34Z | 0 | 0 | 0900006482fa42e4 | ||
| FRA-2015-0105-0017 | FRA | Association of American Railroads - Waiver Petition FRA-2015-0105 | U.S. DOT/FRA-Letter Requesting Additional Material (December 2017) | Other | Additional Information | 2018-01-10T05:00:00Z | 2018 | 1 | 2018-01-10T05:00:00Z | 2018-01-10T14:59:35Z | 0 | 0 | 0900006482dcbffd |
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;