documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FRA-2009-0126" 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-2009-0126-0011 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | U.S. DOT/FRA - Decision Letter | Other | Decision | 2017-04-12T04:00:00Z | 2017 | 4 | 2017-04-12T04:00:00Z | 2024-11-07T00:56:09Z | 1 | 0 | 090000648254eb1d | ||
| FRA-2009-0126-0010 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | U.S.DOT/FRA - Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2016-06-01T04:00:00Z | 2016 | 6 | 2016-06-01T04:00:00Z | 2016-06-01T17:26:28Z | 0 | 0 | 0900006482004e3d | ||
| FRA-2009-0126-0009 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | CSX Transportation - Waiver | Other | Waiver | 2016-05-27T04:00:00Z | 2016 | 5 | 2016-05-27T04:00:00Z | 2016-05-27T15:48:49Z | 0 | 0 | 0900006481ff6f12 | ||
| FRA-2009-0126-0008 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | U.S. DOT/FRA- Waiver Expiration Letter | Other | Letter(s) | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T04:00:00Z | 2024-11-12T06:08:21Z | 1 | 0 | 0900006481fa4f1a | ||
| FRA-2009-0126-0007 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | U.S. DOT/FRA- CSX - Decision | Other | Decision | 2015-12-22T05:00:00Z | 2015 | 12 | 2015-12-22T05:00:00Z | 2024-11-11T21:18:32Z | 1 | 0 | 0900006481dc3370 | ||
| FRA-2009-0126-0006 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | CSX - Waiver Extension Request | Other | Waiver | 2015-12-22T05:00:00Z | 2015 | 12 | 2015-12-22T05:00:00Z | 2024-11-11T21:12:01Z | 1 | 0 | 0900006481dba676 | ||
| FRA-2009-0126-0005 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | U.S. DOT/FRA - Waiver Expiration Notice | Other | Waiver | 2014-12-16T05:00:00Z | 2014 | 12 | 2014-12-16T05:00:00Z | 2024-11-12T05:31:28Z | 1 | 0 | 090000648196f222 | ||
| FRA-2009-0126-0004 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | U.S. DOT/FRA - Decision Letter | Other | Decision | 2010-06-10T04:00:00Z | 2010 | 6 | 2010-06-10T04:00:00Z | 2024-11-07T22:16:03Z | 1 | 0 | 0900006480afed2d | ||
| FRA-2009-0126-0002 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | U.S. DOT/FRA - Acknowledgement of Receipt of a Waiver Petition | Other | Acknowledgement Letter/Receipt | 2010-01-21T05:00:00Z | 2010 | 1 | 2010-01-21T05:00:00Z | 2024-11-07T22:13:56Z | 1 | 0 | 0900006480a81963 | ||
| FRA-2009-0126-0001 | FRA | CSX Transportation, Inc. – Waiver Petition FRA-2009-0126 | CSX Transportation Inc. - Waiver Petition | Other | Petition(s) | 2010-01-20T05:00:00Z | 2010 | 1 | 2010-01-20T05:00:00Z | 2013-07-27T23:04:41Z | 0 | 0 | 0900006480a7f809 |
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;