documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2009-0078" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2009-0078-0212 | FRA | American Short Line Regional Railroad Association – Pilot Project FRA-2009-0078 | Petition for Extension of Waiver of Compliance | Notice | Waivers | 2021-12-07T05:00:00Z | 2021 | 12 | 2021-12-07T05:00:00Z | 2024-11-07T00:34:21Z | 2021-26424 | 1 | 0 | 0900006484ea7bd9 | |
| FRA-2009-0078-0211 | FRA | American Short Line Regional Railroad Association – Pilot Project FRA-2009-0078 | FRA-2009-0078 Incoming Waiver Extension Request Nov 2021 | Other | Waiver | 2021-11-23T05:00:00Z | 2021 | 11 | 2021-11-23T05:00:00Z | 2021-11-23T16:09:06Z | 0 | 0 | 0900006484e76a94 | ||
| FRA-2009-0078-0210 | FRA | American Short Line Regional Railroad Association – Pilot Project FRA-2009-0078 | FRA-2009-0078 Waiver Renewal Request Ack. Letter Nov 2021 | Other | Waiver | 2021-11-11T05:00:00Z | 2021 | 11 | 2021-11-11T05:00:00Z | 2021-11-11T13:01:06Z | 0 | 0 | 0900006484e3e1a9 | ||
| FRA-2009-0078-0209 | FRA | American Short Line Regional Railroad Association – Pilot Project FRA-2009-0078 | FRA-2009-0078 Waiver Amend. Request Ack. Letter Nov 2021 | Other | Acknowledgement Letter/Receipt | 2021-11-09T05:00:00Z | 2021 | 11 | 2021-11-09T05:00:00Z | 2021-11-10T00:35:41Z | 0 | 0 | 0900006484e38c31 | ||
| FRA-2009-0078-0208 | FRA | American Short Line Regional Railroad Association – Pilot Project FRA-2009-0078 | Petition for Amendment of Waiver of Compliance | Notice | Waivers | 2021-11-04T04:00:00Z | 2021 | 11 | 2021-11-04T04:00:00Z | 2024-11-07T00:34:03Z | 2021-24009 | 1 | 0 | 0900006484e17f69 | |
| FRA-2009-0078-0207 | FRA | American Short Line Regional Railroad Association – Pilot Project FRA-2009-0078 | FRA-2009-0078 Incoming Amend Petition - 5 RRs October 2021 | Other | Petition(s) | 2021-10-30T04:00:00Z | 2021 | 10 | 2021-10-30T04:00:00Z | 2021-10-30T14:09:15Z | 0 | 0 | 0900006484dff038 |
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;