documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FRA-2018-0056" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, open_for_comment, withdrawn, 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-2018-0056-0012 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | U.S. DOT/FRA - The Federal Railroad Administrations Motion for Extension of the Deadline for Filing Post-Hearing Briefs | Other | Motion | 2018-12-21T05:00:00Z | 2018 | 12 | 2018-12-21T05:00:00Z | 2018-12-21T17:58:25Z | 0 | 0 | 09000064839be85b | ||
| FRA-2018-0056-0011 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | Robinson Motion to Dismiss Proceedings with Respect to the Disqualification of William Robinson for Failure to Comply with Due Process | Other | Motion | 2018-12-03T05:00:00Z | 2018 | 12 | 2018-12-03T05:00:00Z | 2018-12-03T14:57:42Z | 0 | 0 | 09000064839066fc | ||
| FRA-2018-0056-0010 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | Motion to Dismiss | Other | Motion | 2018-11-28T05:00:00Z | 2018 | 11 | 2018-11-28T05:00:00Z | 2018-11-28T21:03:22Z | 0 | 0 | 09000064838fccd6 | ||
| FRA-2018-0056-0008 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | Administration's Response to Respondent's Apparent Motion to Dismiss | Other | Response(s) | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T05:00:00Z | 2018-11-27T20:45:42Z | 0 | 0 | 09000064839000ae | ||
| FRA-2018-0056-0009 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | Administration's Opposition to Respondent's Motion to Dismiss | Other | Motion | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T05:00:00Z | 2018-11-27T20:46:49Z | 0 | 0 | 09000064839000b2 | ||
| FRA-2018-0056-0006 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | Subpoenas & Attachments | Other | Additional Information | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T05:00:00Z | 2018-11-27T20:31:18Z | 0 | 0 | 09000064838edf68 | ||
| FRA-2018-0056-0007 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | Incomplete Motion & Attachments | Other | Additional Information | 2018-11-27T05:00:00Z | 2018 | 11 | 2018-11-27T05:00:00Z | 2018-11-27T20:39:06Z | 0 | 0 | 09000064838edf87 | ||
| FRA-2018-0056-0005 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | William Robinson- Request for Hearing | Other | Request | 2018-10-10T04:00:00Z | 2018 | 10 | 2018-10-10T04:00:00Z | 2024-11-12T06:18:47Z | 1 | 0 | 09000064837b74db | ||
| FRA-2018-0056-0004 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | Joint Pre-Hearing Statement | Other | Statement | 2018-10-09T04:00:00Z | 2018 | 10 | 2018-10-09T04:00:00Z | 2018-10-09T19:56:52Z | 0 | 0 | 09000064837ae142 | ||
| FRA-2018-0056-0003 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | Prehearing Scheduling Order | Other | Order | 2018-08-03T04:00:00Z | 2018 | 8 | 2018-08-03T04:00:00Z | 2018-08-03T15:59:55Z | 0 | 0 | 09000064835c4f3e | ||
| FRA-2018-0056-0002 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | U.S. DOT/FRA - Acknowledgement letter for hearing request | Other | Acknowledgement Letter/Receipt | 2018-07-24T04:00:00Z | 2018 | 7 | 2018-07-24T04:00:00Z | 2018-07-24T15:01:55Z | 0 | 0 | 090000648353a672 | ||
| FRA-2018-0056-0001 | FRA | William Robinson- Request for Hearing FRA-2018-0056 | William Robinson- Request for Hearing | Other | 2018-07-19T00:00:00Z | 2018 | 7 | 2024-11-07T23:53:52Z | 0 | 1 | 0900006483523797 |
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;