documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FRA-2008-0029" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2008-0029-0019 | FRA | Norfolk Southern Corporation - Waiver Petition FRA-2008-0029 | FRA-2008-0029 Decision Letter 2023 | Other | Decision | 2023-08-07T04:00:00Z | 2023 | 8 | 2023-08-07T04:00:00Z | 2023-08-07T13:20:45Z | 0 | 0 | 0900006485dec89f | ||
| FRA-2008-0029-0018 | FRA | Norfolk Southern Corporation - Waiver Petition FRA-2008-0029 | FRA-2008-0029 Incoming Petition Revision April 2023 | Other | Petition(s) | 2023-04-20T04:00:00Z | 2023 | 4 | 2023-04-20T04:00:00Z | 2023-04-20T12:36:29Z | 0 | 0 | 090000648595f03f | ||
| FRA-2008-0029-0017 | FRA | Norfolk Southern Corporation - Waiver Petition FRA-2008-0029 | Petition for Waiver of Compliance | Notice | Waivers | 2023-02-27T05:00:00Z | 2023 | 2 | 2023-02-27T05:00:00Z | 2024-11-07T00:48:36Z | 2023-03900 | 1 | 0 | 090000648571b82e | |
| FRA-2008-0029-0016 | FRA | Norfolk Southern Corporation - Waiver Petition FRA-2008-0029 | FRA-2008-0029 NS Rail Train Extension Letter Feb 2023 | Other | Letter(s) | 2023-02-13T05:00:00Z | 2023 | 2 | 2023-02-13T05:00:00Z | 2023-02-13T22:19:56Z | 0 | 0 | 0900006485689f98 | ||
| FRA-2008-0029-0015 | FRA | Norfolk Southern Corporation - Waiver Petition FRA-2008-0029 | FRA-2008-0029 Inc Waiver Extension Request Feb 2023 | Other | Waiver | 2023-02-09T05:00:00Z | 2023 | 2 | 2023-02-09T05:00:00Z | 2023-02-09T15:43:42Z | 0 | 0 | 09000064856403b2 |
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;