documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "MARAD-2013-0011" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, fr_doc_num, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| MARAD-2013-0011-0078 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2019-10-29T04:00:00Z | 2019 | 10 | 2019-10-29T04:00:00Z | 2024-11-12T23:10:27Z | C1-2019-14101 | 1 | 0 | 0900006484104079 | |
| MARAD-2013-0011-0076 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Voluntary Intermodal Sealift Agreement-Five Year Extension | Notice | Proposed Notice | 2019-09-30T04:00:00Z | 2019 | 9 | 2019-09-30T04:00:00Z | 2024-11-12T23:10:24Z | 2019-21215 | 1 | 0 | 0900006483feb808 | |
| MARAD-2013-0011-0077 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Voluntary Intermodal Sealift Agreement-Five Year Extension | Notice | Notice of Change | 2019-09-30T04:00:00Z | 2019 | 9 | 2019-09-30T04:00:00Z | 2024-11-12T23:09:36Z | 2019-21215 | 1 | 0 | 0900006483feab68 | |
| MARAD-2013-0011-0075 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Funding Opportunity: America's Marine Highway Projects; Application Deadline Extended | Notice | Notice of Intent | 2019-08-02T04:00:00Z | 2019 | 8 | 2019-08-02T04:00:00Z | 2024-11-12T23:05:48Z | 2019-16452 | 1 | 0 | 0900006483de7ed4 | |
| MARAD-2013-0011-0074 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2019-07-31T04:00:00Z | 2019 | 7 | 2019-07-31T04:00:00Z | 2024-11-12T23:05:10Z | 2019-14101 | 1 | 0 | 0900006483dd4787 | |
| MARAD-2013-0011-0073 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Funding Opportunity: America's Marine Highway Projects; Corrections | Notice | Notice of Intent | 2019-06-19T04:00:00Z | 2019 | 6 | 2019-06-19T04:00:00Z | 2024-11-12T23:03:21Z | 2019-12971 | 1 | 0 | 0900006483d23700 | |
| MARAD-2013-0011-0072 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Funding Opportunity: America's Marine Highway Projects | Notice | Notice of Intent | 2019-06-14T04:00:00Z | 2019 | 6 | 2019-06-14T04:00:00Z | 2024-11-12T23:03:01Z | 2019-12580 | 1 | 0 | 0900006483d119d7 | |
| MARAD-2013-0011-0071 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: U.S. Maritime Transportation System National Advisory Committee | Notice | Public Meetings | 2019-05-31T04:00:00Z | 2019 | 5 | 2019-05-31T04:00:00Z | 2024-11-12T23:01:34Z | 2019-11375 | 1 | 0 | 0900006483cdb2ae | |
| MARAD-2013-0011-0070 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Small Shipyard Grant Program; Application Deadlines | Notice | Notice of Intent | 2019-03-08T05:00:00Z | 2019 | 3 | 2019-03-08T05:00:00Z | 2024-11-12T22:56:36Z | 2019-04247 | 1 | 0 | 0900006483acdc14 | |
| MARAD-2013-0011-0069 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Marine Highway Project Designation Open Season General Information Announcement | Notice | Notice of Intent | 2019-03-01T05:00:00Z | 2019 | 3 | 2019-03-01T05:00:00Z | 2024-11-12T22:56:44Z | 2019-03598 | 1 | 0 | 0900006483ab580b |
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;