documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FRA-2018-0045" 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-2018-0045-0008 | FRA | Burlington Junction Railway FRA-2018-0045 | FRA-2018-0045 Decision Letter 2024 | Other | Decision | 2024-02-12T05:00:00Z | 2024 | 2 | 2024-02-12T05:00:00Z | 2024-02-12T16:41:31Z | 0 | 0 | 0900006486401186 | ||
| FRA-2018-0045-0007 | FRA | Burlington Junction Railway FRA-2018-0045 | Petition for Waiver of Compliance; Extension | Notice | Notice of Receipt of Petition | 2023-07-19T04:00:00Z | 2023 | 7 | 2023-07-19T04:00:00Z | 2024-11-12T05:50:51Z | 2023-15298 | 1 | 0 | 0900006485cdedad | |
| FRA-2018-0045-0006 | FRA | Burlington Junction Railway FRA-2018-0045 | FRA-2018-0045 Incoming Waiver Extension Petition 2023 | Other | Waiver | 2023-05-24T04:00:00Z | 2023 | 5 | 2023-05-24T04:00:00Z | 2023-05-24T16:37:29Z | 0 | 0 | 0900006485a495d2 | ||
| FRA-2018-0045-0005 | FRA | Burlington Junction Railway FRA-2018-0045 | U.S. DOT/FRA-Burlington Junction Railway's (BJRY) Decision Letter 2018 | Other | Decision | 2018-09-05T04:00:00Z | 2018 | 9 | 2018-09-05T04:00:00Z | 2018-09-05T14:14:41Z | 0 | 0 | 0900006483699a1e | ||
| FRA-2018-0045-0004 | FRA | Burlington Junction Railway FRA-2018-0045 | Petitions for Waivers of Compliance: Burlington Junction Railway | Notice | Waivers | 2018-05-15T04:00:00Z | 2018 | 5 | 2018-05-15T04:00:00Z | 2024-11-07T01:26:34Z | 2018-10274 | 1 | 0 | 09000064832686f4 | |
| FRA-2018-0045-0003 | FRA | Burlington Junction Railway FRA-2018-0045 | U.S. DOT/FRA-Addendum - Burlington Junction Railway | Other | Action Memo or Letter | 2018-05-09T04:00:00Z | 2018 | 5 | 2018-05-09T04:00:00Z | 2018-05-09T19:42:38Z | 0 | 0 | 09000064832501dc | ||
| FRA-2018-0045-0002 | FRA | Burlington Junction Railway FRA-2018-0045 | U.S. DOT/FRA-Waiver Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2018-05-07T04:00:00Z | 2018 | 5 | 2018-05-07T04:00:00Z | 2018-05-07T13:33:26Z | 0 | 0 | 09000064832288bb | ||
| FRA-2018-0045-0001 | FRA | Burlington Junction Railway FRA-2018-0045 | Burlington Junction Incoming Waiver Request | Other | Waiver | 2018-05-01T04:00:00Z | 2018 | 5 | 2018-05-01T04:00:00Z | 2024-11-07T01:30:41Z | 1 | 0 | 090000648320dd44 |
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;