documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "MARAD-2013-0011" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, 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-0031 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Requests for Applications: Potential Award of Maritime Security Program Operating Agreements | Notice | Request for Comments | 2015-11-27T05:00:00Z | 2015 | 11 | 2015-11-27T05:00:00Z | 2015-11-27T15:55:21Z | 2015-30199 | 0 | 0 | 0900006481d75cf4 | |
| MARAD-2013-0011-0030 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: U.S. Marine Transportation System National Advisory Council | Notice | Meeting | 2015-11-17T05:00:00Z | 2015 | 11 | 2015-11-17T05:00:00Z | 2015-11-24T04:59:59Z | 2024-11-07T23:34:53Z | 2015-29193 | 1 | 0 | 0900006481d4d3eb |
| MARAD-2013-0011-0028 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: U.S. Merchant Marine Academy Board of Visitors | Notice | Public Meetings | 2015-11-09T05:00:00Z | 2015 | 11 | 2015-11-09T05:00:00Z | 2024-11-07T23:30:08Z | 2015-28442 | 1 | 0 | 0900006481d27d8d | |
| MARAD-2013-0011-0027 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Request for Comments | 2015-10-20T04:00:00Z | 2015 | 10 | 2015-10-20T04:00:00Z | 2015-11-20T04:59:59Z | 2024-11-12T05:48:04Z | 2015-26206 | 1 | 0 | 0900006481cd89de |
| MARAD-2013-0011-0026 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: U.S. Merchant Marine Academy Board of Visitors | Notice | Meeting | 2015-07-21T04:00:00Z | 2015 | 7 | 2015-07-21T04:00:00Z | 2024-11-11T21:05:08Z | 2015-17821 | 1 | 0 | 0900006481b948bd | |
| MARAD-2013-0011-0024 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Voluntary Intermodal Sealift Agreement Joint Planning Advisory Group Table Top Exercise | Notice | Notice of Change | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-07-01T14:37:54Z | 2015-16178 | 0 | 0 | 0900006481b62f0c | |
| MARAD-2013-0011-0025 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Voluntary Intermodal Sealift Agreement Open Season | Notice | Notice of Change | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-07-01T14:38:48Z | 2015-16179 | 0 | 0 | 0900006481b62fb1 | |
| MARAD-2013-0011-0023 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Recognition Awards for U.S.-flag Vessel Usage | Notice | Notice of Change | 2015-05-29T04:00:00Z | 2015 | 5 | 2015-05-29T04:00:00Z | 2015-05-29T13:27:28Z | 2015-13019 | 0 | 0 | 0900006481b0d1ca | |
| MARAD-2013-0011-0022 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Meetings: U.S. Merchant Marine Academy Board of Visitors | Notice | Meeting | 2015-02-13T05:00:00Z | 2015 | 2 | 2015-02-13T05:00:00Z | 2024-11-12T05:35:30Z | 2015-03059 | 1 | 0 | 0900006481a024de |
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;