documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FRA-2018-0041" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_date (date), comment_end_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-0041-0026 | FRA | Port Authority FRA-2018-0041 | FRA-2018-0041 Decision Letter 2024 | Other | Decision | 2024-06-20T04:00:00Z | 2024 | 6 | 2024-06-20T04:00:00Z | 2024-06-20T13:01:07Z | 0 | 0 | 09000064865c0a1c | ||
| FRA-2018-0041-0024 | FRA | Port Authority FRA-2018-0041 | Transcript from April 3, 2024, Public Hearing re: PATH Waiver Petition i | Other | Transcript(s) | 2024-05-07T04:00:00Z | 2024 | 5 | 2024-05-07T04:00:00Z | 2024-05-07T15:00:55Z | 0 | 0 | 0900006486544aec | ||
| FRA-2018-0041-0020 | FRA | Port Authority FRA-2018-0041 | PATH's (power point) Presentation Slides during Public Hearing (April 3, 2024) | Other | Additional Information | 2024-04-08T04:00:00Z | 2024 | 4 | 2024-04-08T04:00:00Z | 2024-04-08T13:28:18Z | 0 | 0 | 09000064864bd745 | ||
| FRA-2018-0041-0021 | FRA | Port Authority FRA-2018-0041 | Wietzke, Esq. Materials Provided for PATH Public Hearing (Apr. 3, 2024): Hearing Request Letter; Rivera Injury Report; Aviles Transcript; Tallent Injury Report; Tallent HW Stmt Rivera; Tallent HW StmtHeyman; Tallent photos of equipment and walls; Tallent Transcript; Photos showing flat work and clearances; Rivera photos showing conditions | Other | Additional Information | 2024-04-08T04:00:00Z | 2024 | 4 | 2024-04-08T04:00:00Z | 2024-04-08T13:30:23Z | 0 | 0 | 09000064864bd7ff | ||
| FRA-2018-0041-0019 | FRA | Port Authority FRA-2018-0041 | Path FRA response | Other | Response(s) | 2024-04-02T04:00:00Z | 2024 | 4 | 2024-04-02T04:00:00Z | 2024-04-02T14:24:12Z | 0 | 0 | 09000064864b27d2 | ||
| FRA-2018-0041-0018 | FRA | Port Authority FRA-2018-0041 | 2024 BMWED Letter in Response to PATH's Petition | Other | Response(s) | 2024-04-01T04:00:00Z | 2024 | 4 | 2024-04-01T04:00:00Z | 2024-04-01T14:08:27Z | 0 | 0 | 09000064864b19bf | ||
| FRA-2018-0041-0017 | FRA | Port Authority FRA-2018-0041 | Hearings, Meetings, Proceedings, etc.: Petition for Renewal of Waiver of Compliance | Notice | Notice of Renewal | 2024-03-04T05:00:00Z | 2024 | 3 | 2024-03-04T05:00:00Z | 2023-09-20T03:59:59Z | 2024-03-04T14:47:58Z | 2024-04510 | 0 | 0 | 090000648645446c |
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;