documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-1999-5104" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, last_modified, 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-1999-5104-0048 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | U.S. DOT/FRA - FBF Update Letter | Other | Letter(s) | 2014-12-04T05:00:00Z | 2014 | 12 | 2014-12-04T05:00:00Z | 2024-11-07T23:10:46Z | 1 | 0 | 09000064818b59d6 | ||
| FRA-1999-5104-0045 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | Union Pacific Railroad - July 2, 2014 Waiver Requirement for Vinita, OK | Other | Letter(s) | 2014-08-14T04:00:00Z | 2014 | 8 | 2014-08-14T04:00:00Z | 2014-08-14T18:00:23Z | 0 | 0 | 0900006481795f59 | ||
| FRA-1999-5104-0042 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | Association of American Railroads - June 2014 Update Letter | Other | Letter(s) | 2014-08-14T04:00:00Z | 2014 | 8 | 2014-08-14T04:00:00Z | 2024-11-11T20:51:27Z | 1 | 0 | 09000064817751f1 | ||
| FRA-1999-5104-0043 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | Association of American Railroads - July 7, 2014 Update Letter | Other | Letter(s) | 2014-08-14T04:00:00Z | 2014 | 8 | 2014-08-14T04:00:00Z | 2014-08-14T17:51:14Z | 0 | 0 | 0900006481795f12 | ||
| FRA-1999-5104-0044 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | Union Pacific Railroad - July 2, 2014 Waiver Requirement | Other | Letter(s) | 2014-08-14T04:00:00Z | 2014 | 8 | 2014-08-14T04:00:00Z | 2014-08-14T17:55:08Z | 0 | 0 | 090000648179659f | ||
| FRA-1999-5104-0046 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2014-08-14T04:00:00Z | 2014 | 8 | 2014-08-14T04:00:00Z | 2024-11-12T05:28:18Z | 1 | 0 | 090000648179a0a3 | ||
| FRA-1999-5104-0047 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2014-08-14T04:00:00Z | 2014 | 8 | 2014-08-14T04:00:00Z | 2024-11-07T23:09:15Z | 1 | 0 | 09000064818206ef | ||
| FRA-1999-5104-0041 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2014-04-04T04:00:00Z | 2014 | 4 | 2014-04-04T04:00:00Z | 2024-11-07T23:07:27Z | 1 | 0 | 0900006481698de7 | ||
| FRA-1999-5104-0040 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | 2013 Flange Bearing Frog Update 2014 Letter | Other | Letter(s) | 2014-04-04T04:00:00Z | 2014 | 4 | 2014-04-04T04:00:00Z | 2024-11-11T20:50:33Z | 1 | 0 | 0900006481695e24 | ||
| FRA-1999-5104-0039 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | U.S. DOT/FRA - Acknowledgement Letter 4 | Other | Acknowledgement Letter/Receipt | 2014-01-30T05:00:00Z | 2014 | 1 | 2014-01-30T05:00:00Z | 2024-11-07T23:01:55Z | 1 | 0 | 09000064815053d4 | ||
| FRA-1999-5104-0038 | FRA | Association of American Railroads - Waiver Petition FRA-1999-5104 | Association of American Railroads - Schedule of Planned FBF Diamond Installations | Other | Letter(s) | 2014-01-30T05:00:00Z | 2014 | 1 | 2014-01-30T05:00:00Z | 2024-11-07T23:01:55Z | 1 | 0 | 090000648150539f |
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;