documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "MARAD-2019-0094" and document_type = "Notice" 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| MARAD-2019-0094-1204 | MARAD | Bluewater Deepwater Port License Application MARAD-2019-0094 | Environmental Impact Statements; Availability, etc.: Deepwater Port License Application; Bluewater Texas Terminal LLC | Notice | Request for Comments | 2026-01-23T05:00:00Z | 2026 | 1 | 2026-01-23T05:00:00Z | 2026-03-10T03:59:59Z | 2026-03-10T21:04:27Z | 2026-01255 | 0 | 0 | 09000064b917bc89 |
| MARAD-2019-0094-0447 | MARAD | Bluewater Deepwater Port License Application MARAD-2019-0094 | Deepwater Port LicenseApplication: Bluewater Texas Terminal, LLC | Notice | Request for Comments | 2021-11-01T04:00:00Z | 2021 | 11 | 2021-11-01T04:00:00Z | 2021-12-17T04:59:59Z | 2022-01-04T02:00:12Z | 2021-23807 | 0 | 0 | 0900006484e050ab |
| MARAD-2019-0094-0435 | MARAD | Bluewater Deepwater Port License Application MARAD-2019-0094 | Deepwater Port License Application: Bluewater Texas Terminal, LLC; Correction | Notice | Notice of Intent | 2020-11-19T05:00:00Z | 2020 | 11 | 2020-11-19T05:00:00Z | 2021-12-14T17:02:57Z | 2020-25237 | 0 | 0 | 09000064849680c3 | |
| MARAD-2019-0094-0062 | MARAD | Bluewater Deepwater Port License Application MARAD-2019-0094 | Deepwater Port License Application: Bluewater Texas Terminal, LLC; Project Scope Changes | Notice | Request for Comments | 2020-08-07T04:00:00Z | 2020 | 8 | 2020-08-07T04:00:00Z | 2020-09-12T03:59:59Z | 2021-12-14T17:03:09Z | 2020-17327 | 0 | 0 | 09000064847e2940 |
| MARAD-2019-0094-0017 | MARAD | Bluewater Deepwater Port License Application MARAD-2019-0094 | Deepwater Port License Application: Bluewater LLC; Extension of Scoping Period | Notice | Notice of Intent | 2019-08-15T04:00:00Z | 2019 | 8 | 2019-08-15T04:00:00Z | 2019-08-31T03:59:59Z | 2021-12-14T17:03:20Z | 2019-17483 | 0 | 0 | 0900006483e53cb5 |
| MARAD-2019-0094-0006 | MARAD | Bluewater Deepwater Port License Application MARAD-2019-0094 | Deepwater Port License Application: Bluewater Texas Terminal LLC | Notice | Notice of Intent | 2019-07-03T04:00:00Z | 2019 | 7 | 2019-07-03T04:00:00Z | 2021-12-14T17:03:28Z | 2019-14177 | 0 | 0 | 0900006483d5b1eb | |
| MARAD-2019-0094-0003 | MARAD | Bluewater Deepwater Port License Application MARAD-2019-0094 | Deepwater Port License Application: Bluewater Texas Terminal, LLC | Notice | Notice of Intent | 2019-06-26T04:00:00Z | 2019 | 6 | 2019-06-26T04:00:00Z | 2021-12-14T17:03:38Z | 2019-13637 | 0 | 0 | 0900006483d42687 |
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;