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 = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| MARAD-2013-0011-0021 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: U.S. Merchant Marine Academy Board of Visitors | Notice | Meeting | 2014-11-25T05:00:00Z | 2014 | 11 | 2014-11-25T05:00:00Z | 2024-11-12T05:29:16Z | 2014-27963 | 1 | 0 | 0900006481944996 | |
| MARAD-2013-0011-0020 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Voluntary Intermodal Sealift Agreements | Notice | Notice of Intent | 2014-10-29T04:00:00Z | 2014 | 10 | 2014-10-29T04:00:00Z | 2014-10-30T19:05:33Z | 2014-25755 | 0 | 0 | 0900006481905312 | |
| MARAD-2013-0011-0019 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: Marine Transportation System National Advisory Council | Notice | Notice of Change | 2014-08-26T04:00:00Z | 2014 | 8 | 2014-08-26T04:00:00Z | 2014-08-26T14:34:46Z | 2014-20305 | 0 | 0 | 090000648184539f | |
| MARAD-2013-0011-0018 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Voluntary Intermodal Sealift Agreement Open Season | Notice | Notice of Intent | 2014-08-08T04:00:00Z | 2014 | 8 | 2014-08-08T04:00:00Z | 2014-08-11T14:58:45Z | 2014-18812 | 0 | 0 | 09000064818115cd | |
| MARAD-2013-0011-0017 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: Marine Transportation System National Advisory Council | Notice | Meeting | 2014-07-25T04:00:00Z | 2014 | 7 | 2014-07-25T04:00:00Z | 2014-07-25T13:50:01Z | 2014-17611 | 0 | 0 | 09000064817e1793 | |
| MARAD-2013-0011-0016 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: U.S. Merchant Marine Academy Board of Visitors | Notice | Meeting | 2014-07-03T04:00:00Z | 2014 | 7 | 2014-07-03T04:00:00Z | 2014-07-03T13:56:36Z | 2014-15691 | 0 | 0 | 090000648178eb02 | |
| MARAD-2013-0011-0015 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Marine Highway Projects; Open Season | Notice | Notice of Change | 2014-06-02T04:00:00Z | 2014 | 6 | 2014-06-02T04:00:00Z | 2014-06-02T13:56:41Z | 2014-12602 | 0 | 0 | 0900006481722bde | |
| MARAD-2013-0011-0014 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | War Risk Insurance: Retrospective Review | Rule | Final Rule | 2014-03-31T04:00:00Z | 2014 | 3 | 2014-03-31T04:00:00Z | 2014-03-31T14:24:43Z | 2014-06756 | 0 | 0 | 09000064816910e8 | |
| MARAD-2013-0011-0013 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: Marine Transportation System National Advisory Council | Notice | Public Meetings | 2014-03-14T04:00:00Z | 2014 | 3 | 2014-03-14T04:00:00Z | 2014-03-14T14:03:00Z | 2014-05730 | 0 | 0 | 0900006481665c07 | |
| MARAD-2013-0011-0012 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: Marine Transportation System National Advisory Council | Notice | Public Meetings | 2014-01-31T05:00:00Z | 2014 | 1 | 2014-01-31T05:00:00Z | 2014-02-18T04:59:59Z | 2014-01-31T17:24:20Z | 2014-02036 | 0 | 0 | 0900006481539bad |
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;