documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where docket_id = "FRA-2011-0090" and document_type = "Other" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2011-0090-0012 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | FRA-2011-0090 Decision Letter 2023 | Other | Decision | 2023-12-19T05:00:00Z | 2023 | 12 | 2023-12-19T05:00:00Z | 2023-12-19T19:26:16Z | 0 | 0 | 0900006486346834 | ||
| FRA-2011-0090-0011 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | FRA-2011-0090 Incoming SA Extension Petition 2023 | Other | Petition(s) | 2023-05-25T04:00:00Z | 2023 | 5 | 2023-05-25T04:00:00Z | 2023-05-25T11:52:14Z | 0 | 0 | 0900006485a4f918 | ||
| FRA-2011-0090-0010 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | FRA-2011-0090 Decision Letter 2022 | Other | Decision | 2022-12-05T05:00:00Z | 2022 | 12 | 2022-12-05T05:00:00Z | 2022-12-05T16:09:51Z | 0 | 0 | 09000064855122ef | ||
| FRA-2011-0090-0009 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | FRA-2011-0090 SA Extension Petition Ack Letter 2022 | Other | Acknowledgement Letter/Receipt | 2022-08-26T04:00:00Z | 2022 | 8 | 2022-08-26T04:00:00Z | 2022-08-26T17:36:02Z | 0 | 0 | 0900006485276bd5 | ||
| FRA-2011-0090-0008 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | FRA-2011-0090 Incoming SA Extension Petition 2022 | Other | Petition(s) | 2022-07-01T04:00:00Z | 2022 | 7 | 2022-07-01T04:00:00Z | 2022-07-01T13:44:02Z | 0 | 0 | 09000064851a9281 | ||
| FRA-2011-0090-0007 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | FRA-2011-0090 Incoming SA Withdrawal Request Jan 2022 | Other | Withdrawal | 2022-01-13T05:00:00Z | 2022 | 1 | 2022-01-13T05:00:00Z | 2022-01-13T21:38:38Z | 0 | 0 | 0900006484f1f5b0 | ||
| FRA-2011-0090-0005 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | FRA-2011-0090 Incoming Extension Petition 2021 | Other | Petition(s) | 2021-10-30T04:00:00Z | 2021 | 10 | 2021-10-30T04:00:00Z | 2021-10-30T14:35:25Z | 0 | 0 | 0900006484dff03c | ||
| FRA-2011-0090-0006 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | FRA-2011-0090 Special Approval Ext. Ack. Letter 2021 | Other | Acknowledgement Letter/Receipt | 2021-10-30T04:00:00Z | 2021 | 10 | 2021-10-30T04:00:00Z | 2021-10-30T14:40:33Z | 0 | 0 | 0900006484dff03e | ||
| FRA-2011-0090-0004 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | U.S. DOT/FRA- Union Railroad Decision Letter | Other | Decision | 2017-10-24T04:00:00Z | 2017 | 10 | 2017-10-24T04:00:00Z | 2017-10-24T18:16:24Z | 0 | 0 | 0900006482bf7c7b | ||
| FRA-2011-0090-0003 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | Union Railroad Company- Extension Request | Other | Waiver | 2017-01-24T05:00:00Z | 2017 | 1 | 2017-01-24T05:00:00Z | 2024-11-11T21:34:38Z | 1 | 0 | 090000648248c831 | ||
| FRA-2011-0090-0002 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | U.S. DOT/FRA - Decision Letter | Other | Decision | 2012-07-24T04:00:00Z | 2012 | 7 | 2012-07-24T04:00:00Z | 2024-11-07T22:42:09Z | 1 | 0 | 09000064810a4d3f | ||
| FRA-2011-0090-0001 | FRA | Union Railroad Company - Waiver Petition FRA-2011-0090 | Union Railroad Company - Petition for Waiver Under CFR Part 215.203; Restricted Cars | Other | Waiver | 2011-11-10T05:00:00Z | 2011 | 11 | 2011-11-10T05:00:00Z | 2024-11-07T22:42:28Z | 1 | 0 | 0900006480f6a1ac |
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;