documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2017-0048" and posted_year = 2018 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-2017-0048-0014 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | Soo Line Bergfield Notice of Dismissal | Other | Dismissal | 2018-05-14T04:00:00Z | 2018 | 5 | 2018-05-14T04:00:00Z | 2018-05-14T15:38:51Z | 0 | 0 | 0900006483263d1e | ||
| FRA-2017-0048-0013 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | Order | Other | Order | 2018-04-16T04:00:00Z | 2018 | 4 | 2018-04-16T04:00:00Z | 2018-04-16T15:13:39Z | 0 | 0 | 0900006483074a7d | ||
| FRA-2017-0048-0012 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | Order | Other | Order | 2018-03-07T05:00:00Z | 2018 | 3 | 2018-03-07T05:00:00Z | 2018-03-07T20:23:53Z | 0 | 0 | 0900006482f934dd | ||
| FRA-2017-0048-0011 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | Soo Line_Bergfield 18.03.02 Consent Motion to Stay Proceedings | Other | Motion | 2018-03-05T05:00:00Z | 2018 | 3 | 2018-03-05T05:00:00Z | 2018-03-05T18:42:17Z | 0 | 0 | 0900006482f87c8c | ||
| FRA-2017-0048-0010 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | Notice of Contacts for Petitioner Soo Line Railroad Company d/b/a Canadian Pacific | Other | Additional Information | 2018-02-21T05:00:00Z | 2018 | 2 | 2018-02-21T05:00:00Z | 2018-02-21T14:16:08Z | 0 | 0 | 0900006482f36739 | ||
| FRA-2017-0048-0009 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | U.S. DOT/ Notice of contacts | Other | Additional Information | 2018-02-13T05:00:00Z | 2018 | 2 | 2018-02-13T05:00:00Z | 2018-02-13T14:14:00Z | 0 | 0 | 0900006482f17b4a | ||
| FRA-2017-0048-0008 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | Initial Scheduling Order | Other | Order | 2018-02-02T05:00:00Z | 2018 | 2 | 2018-02-02T05:00:00Z | 2018-02-02T16:12:35Z | 0 | 0 | 0900006482eab133 | ||
| FRA-2017-0048-0007 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | U.S. DOT/FRA-AHO Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2018-01-31T05:00:00Z | 2018 | 1 | 2018-01-31T05:00:00Z | 2018-01-31T18:18:57Z | 0 | 0 | 0900006482e83eae | ||
| FRA-2017-0048-0006 | FRA | Bobby Bergfield- Conductor Certfication FRA-2017-0048 | Request for Administrative Hearing | Other | Request | 2018-01-19T05:00:00Z | 2018 | 1 | 2018-01-19T05:00:00Z | 2018-01-19T14:20:29Z | 0 | 0 | 0900006482e2f4ad |
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;