documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FRA-2010-0166" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2010-0166-0032 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | U.S. DOT/FRA - Decision and Order | Other | Decision | 2012-04-09T04:00:00Z | 2012 | 4 | 2012-04-09T04:00:00Z | 2012-04-09T15:47:14Z | 0 | 0 | 0900006480fe9143 | ||
| FRA-2010-0166-0031 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Petitioner Union Pacific Reply Memorandum | Other | Reply | 2012-03-29T04:00:00Z | 2012 | 3 | 2012-03-29T04:00:00Z | 2012-03-29T14:45:13Z | 0 | 0 | 0900006480fdd055 | ||
| FRA-2010-0166-0029 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Alonzo Harris - See Attachments | Supporting & Related Material | Supplement | 2012-03-16T04:00:00Z | 2012 | 3 | 2012-03-16T14:40:45Z | 0 | 0 | 0900006480fd735c | |||
| FRA-2010-0166-0030 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | U.S. DOT/FRA - Brief of Co-Respondent Federal Railroad Administration | Other | Brief | 2012-03-16T04:00:00Z | 2012 | 3 | 2012-03-16T04:00:00Z | 2012-03-16T19:06:20Z | 0 | 0 | 0900006480fd75ca | ||
| FRA-2010-0166-0027 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Hearing Petitioner Union Pacific Railroad Company's Brief | Other | Brief | 2012-03-05T05:00:00Z | 2012 | 3 | 2012-03-05T05:00:00Z | 2012-03-05T20:24:48Z | 0 | 0 | 0900006480fcd2b1 | ||
| FRA-2010-0166-0028 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Hearing Petitioner Union Pacific Railroad Company's Brie - Attachments | Other | Additional Information | 2012-03-05T05:00:00Z | 2012 | 3 | 2012-03-05T05:00:00Z | 2012-03-05T20:30:07Z | 0 | 0 | 0900006480fcd2b8 | ||
| FRA-2010-0166-0026 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Order Modifying Schedule | Other | Order | 2012-03-01T05:00:00Z | 2012 | 3 | 2012-03-01T05:00:00Z | 2012-03-01T16:28:57Z | 0 | 0 | 0900006480fc70b8 | ||
| FRA-2010-0166-0025 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Unopposed Motion to Extend Deadlines | Other | Motion | 2012-03-01T05:00:00Z | 2012 | 3 | 2012-03-01T05:00:00Z | 2012-03-01T15:32:18Z | 0 | 0 | 0900006480fc71b8 | ||
| FRA-2010-0166-0024 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Parties' Joint Statement of Undisputed Material Facts | Other | Statement of Position | 2012-02-24T05:00:00Z | 2012 | 2 | 2012-02-24T05:00:00Z | 2024-11-12T04:30:13Z | 1 | 0 | 0900006480fb9b9b | ||
| FRA-2010-0166-0023 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Marcus Elston Declaration and Certificate of Service | Other | Declaration(s) | 2012-02-24T05:00:00Z | 2012 | 2 | 2012-02-24T05:00:00Z | 2024-11-12T04:41:12Z | 1 | 0 | 0900006480fb9375 | ||
| FRA-2010-0166-0022 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | U.S.DOT/FRA - Order Setting Discovery and Briefing Schedule | Other | Order | 2012-01-30T05:00:00Z | 2012 | 1 | 2012-01-30T05:00:00Z | 2024-11-07T21:56:13Z | 1 | 0 | 0900006480fa5edb | ||
| FRA-2010-0166-0021 | FRA | A. Harris - Locomotive Engineer Certification Case FRA-2010-0166 | Respondent Federal Railroad Administration's Statement Regarding the Joint Statement of Facts | Other | Statement of Position | 2012-01-12T05:00:00Z | 2012 | 1 | 2012-01-17T20:41:27Z | 0 | 0 | 0900006480f989f1 |
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;