documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2013-0141" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-2013-0141-0020 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | U.S. DOT/FRA - Order of Dismissal | Other | Order | 2015-08-03T04:00:00Z | 2015 | 8 | 2015-08-03T04:00:00Z | 2024-11-11T21:06:12Z | 1 | 0 | 0900006481bb5d35 | ||
| FRA-2013-0141-0019 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | Hearing Petitioner CSX Transportation, Inc.'s Voluntary Withdrawal of Its Request for an Administrative Hearing | Other | Withdrawal | 2015-07-30T04:00:00Z | 2015 | 7 | 2015-07-30T04:00:00Z | 2024-11-12T05:39:16Z | 1 | 0 | 0900006481bb1a38 | ||
| FRA-2013-0141-0018 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | Hearing Petitioner CSX Transportation, Inc.'s Unopposed Motion to Continue the Deadline for Filing the Joint Statement | Other | Motion | 2015-07-28T04:00:00Z | 2015 | 7 | 2015-07-28T04:00:00Z | 2024-11-12T05:38:47Z | 1 | 0 | 0900006481ba696e | ||
| FRA-2013-0141-0015 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | Joint Motion to Continue the Discovery Deadline and All Other Deadlines Sixty Days | Other | Motion | 2015-05-13T04:00:00Z | 2015 | 5 | 2015-05-13T04:00:00Z | 2024-11-07T23:14:47Z | 1 | 0 | 0900006481aa132e | ||
| FRA-2013-0141-0016 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | U.S. DOT/FRA - Order Modifying Initial Schedule | Other | Order | 2015-05-13T04:00:00Z | 2015 | 5 | 2015-05-13T04:00:00Z | 2024-11-07T23:15:43Z | 1 | 0 | 0900006481aa2b7d | ||
| FRA-2013-0141-0017 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | Notice of Contact | Other | Adjudication Notice | 2015-05-13T04:00:00Z | 2015 | 5 | 2015-05-13T04:00:00Z | 2024-11-07T23:16:00Z | 1 | 0 | 0900006481ab7975 | ||
| FRA-2013-0141-0014 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | U.S. DOT/FRA - Order Modifying Initial Schedule | Other | Order | 2015-01-26T05:00:00Z | 2015 | 1 | 2015-01-26T05:00:00Z | 2024-11-11T20:54:59Z | 1 | 0 | 09000064819dcc9b | ||
| FRA-2013-0141-0013 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | Respondents' Preliminary Discovery Statement | Other | Discovery | 2015-01-09T05:00:00Z | 2015 | 1 | 2015-01-09T05:00:00Z | 2024-11-12T05:34:18Z | 1 | 0 | 09000064819abd4e | ||
| FRA-2013-0141-0012 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | Hearing Petitioner CSX Transportation, Inc. Preliminary Discovery Statement | Other | Discovery | 2015-01-09T05:00:00Z | 2015 | 1 | 2015-01-09T05:00:00Z | 2024-11-12T05:29:41Z | 1 | 0 | 09000064819ac154 | ||
| FRA-2013-0141-0011 | FRA | Keith Goss - Conductor Certification Petition Review FRA-2013-0141 | U.S. DOT/FRA - Joint Response to Hearing Petitioner's Statement of Claims | Other | Response(s) | 2015-01-07T05:00:00Z | 2015 | 1 | 2015-01-07T05:00:00Z | 2024-11-12T05:32:42Z | 1 | 0 | 0900006481982648 |
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;