documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2019-0065" 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-2019-0065-0006 | FRA | Buffalo Cattaraugus & Jamestown (BCJ)- Waiver FRA-2019-0065 | FRA-2019-0065 Decision Letter 2024 | Other | Decision | 2024-10-18T04:00:00Z | 2024 | 10 | 2024-10-18T04:00:00Z | 2024-10-23T13:09:08Z | 0 | 0 | 09000064867d48b6 | ||
| FRA-2019-0065-0005 | FRA | Buffalo Cattaraugus & Jamestown (BCJ)- Waiver FRA-2019-0065 | Petition for Extension of Waiver of Compliance | Notice | Waivers | 2024-07-03T04:00:00Z | 2024 | 7 | 2024-07-03T04:00:00Z | 2024-11-12T22:34:28Z | 2024-14627 | 1 | 0 | 09000064865d894f | |
| FRA-2019-0065-0004 | FRA | Buffalo Cattaraugus & Jamestown (BCJ)- Waiver FRA-2019-0065 | FRA-2019-0065 Incoming Waiver and SA Extension Petition 2024 | Other | Waiver | 2024-06-10T04:00:00Z | 2024 | 6 | 2024-06-10T04:00:00Z | 2024-06-24T16:35:44Z | 0 | 0 | 090000648659a5e3 | ||
| FRA-2019-0065-0003 | FRA | Buffalo Cattaraugus & Jamestown (BCJ)- Waiver FRA-2019-0065 | U.S.DOT/FRA- Decision Letter | Other | Decision | 2020-01-27T05:00:00Z | 2020 | 1 | 2020-01-27T05:00:00Z | 2020-01-27T14:39:43Z | 0 | 0 | 09000064842e0e8b | ||
| FRA-2019-0065-0002 | FRA | Buffalo Cattaraugus & Jamestown (BCJ)- Waiver FRA-2019-0065 | U.S. DOT/FRA- Acknowledgement Letter | Other | Acknowledgement Letter/Receipt | 2019-09-10T04:00:00Z | 2019 | 9 | 2019-09-10T04:00:00Z | 2019-09-10T18:29:50Z | 0 | 0 | 0900006483f22440 | ||
| FRA-2019-0065-0001 | FRA | Buffalo Cattaraugus & Jamestown (BCJ)- Waiver FRA-2019-0065 | BCJ- Waiver Request | Other | Request | 2019-09-06T04:00:00Z | 2019 | 9 | 2019-09-06T04:00:00Z | 2024-11-12T23:07:23Z | 1 | 0 | 0900006483f10bb4 |
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;