documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2016-0102" and posted_year = 2016 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, 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-2016-0102-0009 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | Union Pacific Railroad - Response and Objections to the Hearing Petitioner’s Statement of Issues | Other | Response(s) | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-13T05:00:00Z | 2024-11-07T23:52:27Z | 1 | 0 | 09000064823fd7a5 | ||
| FRA-2016-0102-0008 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | U.S. DOT/FRA - Appearance of Notice | Other | Adjudication Notice | 2016-12-05T05:00:00Z | 2016 | 12 | 2016-12-05T05:00:00Z | 2024-11-11T21:32:15Z | 1 | 0 | 09000064823db8a4 | ||
| FRA-2016-0102-0007 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | Jay Heuermann | Other | Appearance Request | 2016-12-01T05:00:00Z | 2016 | 12 | 2016-11-02T04:00:00Z | 2024-11-07T23:52:35Z | 1 | 0 | 09000064823d188c | ||
| FRA-2016-0102-0006 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | Jay Heuermann | Other | Certificate of Service | 2016-12-01T05:00:00Z | 2016 | 12 | 2016-11-02T04:00:00Z | 2016-12-01T19:11:32Z | 0 | 0 | 09000064823d27f3 | ||
| FRA-2016-0102-0005 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | J.W. Heuermann Statement of Claims | Other | Statement | 2016-11-30T05:00:00Z | 2016 | 11 | 2016-11-30T05:00:00Z | 2024-11-11T21:32:34Z | 1 | 0 | 09000064823c728e | ||
| FRA-2016-0102-0004 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | Co-Respondent Union Pacific Railroad Company's Notice of Entry of Appearance for Reha Kamas | Other | Appearance Request | 2016-11-16T05:00:00Z | 2016 | 11 | 2016-11-16T05:00:00Z | 2024-11-11T21:31:14Z | 1 | 0 | 090000648239882f | ||
| FRA-2016-0102-0003 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | U.S.DOT/FRA - Initial Scheduling Order | Other | Order | 2016-11-02T04:00:00Z | 2016 | 11 | 2016-11-02T04:00:00Z | 2024-11-07T23:50:41Z | 1 | 0 | 0900006482369e10 | ||
| FRA-2016-0102-0002 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | U.S. DOT/FRA - Hearing Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2016-11-01T04:00:00Z | 2016 | 11 | 2016-11-01T04:00:00Z | 2024-11-11T21:31:13Z | 1 | 0 | 090000648235fc87 | ||
| FRA-2016-0102-0001 | FRA | J. W. Heuermann - Petition FRA-2016-0102 | J. W. Heuermann - Request for Hearing | Other | Request for Hearing | 2016-10-20T04:00:00Z | 2016 | 10 | 2016-10-20T04:00:00Z | 2024-11-11T21:32:30Z | 1 | 0 | 0900006482322c09 |
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;