documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FRA-2018-0088" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-0088-0017 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | FRA Certification Case - Status Report 3 re expert discovery | Other | Status | 2019-10-15T04:00:00Z | 2019 | 10 | 2019-10-15T04:00:00Z | 2019-10-15T14:21:20Z | 0 | 0 | 0900006484089cea | ||
| FRA-2018-0088-0016 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | Scheduling Order | Other | Order | 2019-09-26T04:00:00Z | 2019 | 9 | 2019-09-26T04:00:00Z | 2019-09-26T15:50:24Z | 0 | 0 | 0900006483fbcf40 | ||
| FRA-2018-0088-0015 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | Joint Status Report | Other | Report | 2019-09-03T04:00:00Z | 2019 | 9 | 2019-09-03T04:00:00Z | 2019-09-03T19:43:50Z | 0 | 0 | 0900006483ee5915 | ||
| FRA-2018-0088-0014 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | US DOT/FRA-Order Regarding Timeliness of Petition | Other | Order | 2019-06-11T04:00:00Z | 2019 | 6 | 2019-06-11T04:00:00Z | 2019-06-11T15:35:59Z | 0 | 0 | 0900006483cf64c7 | ||
| FRA-2018-0088-0013 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | FRA's Response to Proof of Timely Filing | Other | Response(s) | 2019-04-01T04:00:00Z | 2019 | 4 | 2019-04-01T04:00:00Z | 2019-04-01T15:40:58Z | 0 | 0 | 0900006483b47c7e | ||
| FRA-2018-0088-0012 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | Hearing Petitioner's Proof of Timely Filing | Other | Additional Information | 2019-03-18T04:00:00Z | 2019 | 3 | 2019-03-18T04:00:00Z | 2019-03-18T17:35:06Z | 0 | 0 | 0900006483aeba08 | ||
| FRA-2018-0088-0011 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | Scheduling Order | Other | Order | 2019-03-04T05:00:00Z | 2019 | 3 | 2019-03-04T05:00:00Z | 2019-03-04T15:44:29Z | 0 | 0 | 0900006483ab63c9 | ||
| FRA-2018-0088-0010 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | Joint Status Report | Other | Report | 2019-03-01T05:00:00Z | 2019 | 3 | 2019-03-01T05:00:00Z | 2019-03-01T16:18:26Z | 0 | 0 | 0900006483aad5d5 | ||
| FRA-2018-0088-0009 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | Co-Respondent CSX Transportation, Inc.'s Amended Notice of Contacts and Response to Hearing Petitioner's Statement of Claims. | Other | Adjudication Notice | 2019-02-15T05:00:00Z | 2019 | 2 | 2019-02-15T05:00:00Z | 2019-02-15T17:13:55Z | 0 | 0 | 0900006483a727f0 | ||
| FRA-2018-0088-0008 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | US DOT/FRA- Response to Statement of Claims | Other | Response(s) | 2019-02-13T05:00:00Z | 2019 | 2 | 2019-02-13T05:00:00Z | 2019-02-13T19:44:54Z | 0 | 0 | 0900006483a6f319 | ||
| FRA-2018-0088-0007 | FRA | A.B. Capers- Locomotive Engineer Certification FRA-2018-0088 | Scheduling Order | Other | Order | 2019-01-30T05:00:00Z | 2019 | 1 | 2019-01-30T05:00:00Z | 2019-01-30T18:07:42Z | 0 | 0 | 0900006483a28fba |
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;