documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FRA-2020-0039" 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-2020-0039-0032 | FRA | Western Rail Yard EIS, New York , NY FRA-2020-0039 | Western Rail Yard Infrastructure Project: Combined Final Environmental Impact Statement/Record of Decision | Other | Report | 2021-11-24T05:00:00Z | 2021 | 11 | 2021-11-24T05:00:00Z | 2021-11-24T17:46:00Z | 0 | 0 | 0900006484e7d0e3 | ||
| FRA-2020-0039-0023 | FRA | Western Rail Yard EIS, New York , NY FRA-2020-0039 | Western Rail Yard Infrastructure Project: Draft EIS | Other | Report | 2021-06-10T04:00:00Z | 2021 | 6 | 2021-06-10T04:00:00Z | 2024-11-12T23:31:22Z | 1 | 0 | 0900006484b612e5 | ||
| FRA-2020-0039-0021 | FRA | Western Rail Yard EIS, New York , NY FRA-2020-0039 | 21FRA001M City Comment Letter August 25 2020 FINAL | Other | Action Memo or Letter | 2021-03-08T05:00:00Z | 2021 | 3 | 2021-03-08T05:00:00Z | 2021-03-08T14:58:44Z | 0 | 0 | 0900006484a60e4a | ||
| FRA-2020-0039-0019 | FRA | Western Rail Yard EIS, New York , NY FRA-2020-0039 | 2020-09-04 Scoping Summary Report FINAL Complete | Other | Report | 2020-09-14T04:00:00Z | 2020 | 9 | 2020-09-14T04:00:00Z | 2020-09-14T14:45:51Z | 0 | 0 | 0900006484856b6f | ||
| FRA-2020-0039-0009 | FRA | Western Rail Yard EIS, New York , NY FRA-2020-0039 | Comment from Anonymous Anonymous | Other | Comment(s) | 2020-08-04T04:00:00Z | 2020 | 8 | 2020-06-15T04:00:00Z | 2020-08-01T03:59:59Z | 2020-08-17T16:49:08Z | 0 | 0 | 09000064847bab32 | |
| FRA-2020-0039-0003 | FRA | Western Rail Yard EIS, New York , NY FRA-2020-0039 | CHKLU Admin Letter on WRY inf Scope EIS July 2020 | Other | Action Memo or Letter | 2020-07-31T04:00:00Z | 2020 | 7 | 2020-07-31T04:00:00Z | 2020-07-31T16:24:12Z | 0 | 0 | 09000064847b9182 |
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;