documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FRA-2015-0072" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, posted_date (date), comment_start_date (date), comment_end_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-2015-0072-0011 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | FRA-2015-0072 Decision Letter 2022 | Other | Decision | 2022-04-13T04:00:00Z | 2022 | 4 | 2022-04-13T04:00:00Z | 2022-04-13T16:21:57Z | 0 | 0 | 09000064850163df | ||
| FRA-2015-0072-0010 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | Petition for Extension of Waiver of Compliance | Notice | Waivers | 2021-10-13T04:00:00Z | 2021 | 10 | 2021-10-13T04:00:00Z | 2024-11-07T00:32:39Z | 2021-22262 | 1 | 0 | 0900006484dc373b | |
| FRA-2015-0072-0009 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | US DOT/FRA-Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2021-02-24T05:00:00Z | 2021 | 2 | 2021-02-24T05:00:00Z | 2021-02-24T16:13:42Z | 0 | 0 | 0900006484a4c647 | ||
| FRA-2015-0072-0008 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | Incoming Waiver Extension Request 2021 | Other | Waiver | 2021-02-17T05:00:00Z | 2021 | 2 | 2021-02-17T05:00:00Z | 2021-02-17T16:17:09Z | 0 | 0 | 0900006484a3ae50 | ||
| FRA-2015-0072-0007 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | U.S. DOT/FRA - Decision | Other | Decision | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T04:00:00Z | 2024-11-12T06:11:08Z | 1 | 0 | 0900006481fa4e38 | ||
| FRA-2015-0072-0006 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | U.S. DOT/FRA - Decision | Other | Decision | 2016-04-12T04:00:00Z | 2016 | 4 | 2016-04-12T04:00:00Z | 2024-11-12T06:07:03Z | 1 | 0 | 0900006481f5e4ce | ||
| FRA-2015-0072-0003 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | Petitions for Waivers of Compliance | Notice | Waivers | 2015-07-31T04:00:00Z | 2015 | 7 | 2015-07-31T04:00:00Z | 2015-09-01T03:59:59Z | 2024-11-11T21:07:21Z | 2015-18743 | 1 | 0 | 0900006481bb4b90 |
| FRA-2015-0072-0002 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | U.S. DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2015-07-23T04:00:00Z | 2015 | 7 | 2015-07-23T04:00:00Z | 2024-11-12T05:43:50Z | 1 | 0 | 0900006481b95fcf | ||
| FRA-2015-0072-0001 | FRA | Union Pacific Railroad Company - Waiver Petition FRA-2015-0072 | Union Pacific Railroad - Waiver Petition | Other | Waiver | 2015-07-21T04:00:00Z | 2015 | 7 | 2015-07-21T04:00:00Z | 2024-11-11T21:07:48Z | 1 | 0 | 0900006481b8bfc7 |
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;