documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2007-28700" 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-2007-28700-0030 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | U.S. DOT/FRA Response to KCSRs Sept. 2018 Letter | Other | Response(s) | 2018-12-27T05:00:00Z | 2018 | 12 | 2018-12-27T05:00:00Z | 2018-12-27T14:57:14Z | 0 | 0 | 09000064839b51a1 | ||
| FRA-2007-28700-0029 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | U.S. DOT/FRA Response to AARs Sept. 2018 Letter | Other | Response(s) | 2018-11-07T05:00:00Z | 2018 | 11 | 2018-11-07T05:00:00Z | 2018-11-07T20:29:52Z | 0 | 0 | 09000064838a9ba7 | ||
| FRA-2007-28700-0028 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | AARs Letter to Secretary Chao - KCSRs May 31, 2018 Petition for Waiver | Other | Waiver | 2018-10-02T04:00:00Z | 2018 | 10 | 2018-10-02T04:00:00Z | 2018-10-02T18:34:59Z | 0 | 0 | 090000648377a267 | ||
| FRA-2007-28700-0027 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | KCSs Response to Congressional letter to Secretary Chao | Other | Letter(s) | 2018-09-24T04:00:00Z | 2018 | 9 | 2018-09-24T04:00:00Z | 2018-09-24T16:35:41Z | 0 | 0 | 090000648375b5da | ||
| FRA-2007-28700-0026 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | Congressional letter to Secretary Chao opposing KCSs May 31, 2018 Petition for Waiver | Other | Waiver | 2018-09-20T04:00:00Z | 2018 | 9 | 2018-09-20T04:00:00Z | 2018-09-20T18:30:19Z | 0 | 0 | 0900006483717471 | ||
| FRA-2007-28700-0024 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | BLET & SMART TD Joint Request for Public Hearing | Other | Request | 2018-08-29T04:00:00Z | 2018 | 8 | 2018-08-29T04:00:00Z | 2018-08-29T20:15:48Z | 0 | 0 | 090000648364a700 | ||
| FRA-2007-28700-0021 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | BRC & TWU joint request for hearing | Other | Request | 2018-08-22T04:00:00Z | 2018 | 8 | 2018-08-22T04:00:00Z | 2018-08-22T18:53:53Z | 0 | 0 | 0900006483644ecf | ||
| FRA-2007-28700-0015 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | Compliance Waivers; Petitions | Notice | Waivers | 2018-07-24T04:00:00Z | 2018 | 7 | 2018-07-24T04:00:00Z | 2024-11-07T01:03:57Z | 2018-15795 | 1 | 0 | 0900006483543c4f | |
| FRA-2007-28700-0014 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | U.S. DOT/FRA-Waiver Extension Acknowledgement Letter 2018 | Other | Waiver | 2018-06-11T04:00:00Z | 2018 | 6 | 2018-06-11T04:00:00Z | 2018-06-11T16:54:58Z | 0 | 0 | 090000648336b26d | ||
| FRA-2007-28700-0013 | FRA | Kansas City Southern Railway - Waiver Petition FRA-2007-28700 | Waiver Modification Request 2018 | Other | Waiver | 2018-06-07T04:00:00Z | 2018 | 6 | 2018-06-07T04:00:00Z | 2018-06-07T13:20:23Z | 0 | 0 | 0900006483346935 |
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;