home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

12 rows where docket_id = "MARAD-2013-0011" and posted_year = 2018 sorted by posted_date descending

✎ View and edit SQL

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), last_modified (date)

document_type 2

  • Notice 11
  • Rule 1

posted_year 1

  • 2018 · 12 ✖

agency_id 1

  • MARAD 12
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-0068 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Meetings: U.S. Merchant Marine Academy Board of Visitors Notice Meeting 2018-12-07T05:00:00Z 2018 12 2018-12-07T05:00:00Z   2024-11-12T22:49:40Z 2018-26529 1 0 0900006483958742
MARAD-2013-0011-0067 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Revisions to Civil Penalty Amounts Rule Final Rule 2018-11-27T05:00:00Z 2018 11 2018-11-27T05:00:00Z   2018-11-27T15:19:24Z 2018-24930 0 0 09000064838fe9ed
MARAD-2013-0011-0066 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Deepwater Port License: Neptune LNG LLC; Amendment and Temporary Suspension Notice Notice of Intent 2018-09-04T04:00:00Z 2018 9 2018-09-04T04:00:00Z   2024-11-07T01:37:17Z 2018-19048 1 0 0900006483694995
MARAD-2013-0011-0065 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Meetings: U.S. Maritime Transportation System National Advisory Committee Notice Public Meetings 2018-08-27T04:00:00Z 2018 8 2018-08-27T04:00:00Z   2024-11-07T01:05:21Z 2018-18491 1 0 0900006483659b82
MARAD-2013-0011-0064 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Funding Opportunities: America's Marine Highway Projects Notice Notice of Intent 2018-06-27T04:00:00Z 2018 6 2018-06-27T04:00:00Z   2024-11-07T01:33:05Z 2018-13798 1 0 09000064834673bb
MARAD-2013-0011-0063 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Meetings: U.S. Maritime Transportation System National Advisory Committee Notice Meeting 2018-05-25T04:00:00Z 2018 5 2018-05-25T04:00:00Z   2024-11-07T01:30:37Z 2018-11254 1 0 09000064832ec9b6
MARAD-2013-0011-0062 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Funding Opportunities: Small Shipyard Grant Program; Application Deadlines Notice Notice of Intent 2018-04-16T04:00:00Z 2018 4 2018-04-16T04:00:00Z   2024-11-07T01:26:09Z 2018-07846 1 0 090000648314616f
MARAD-2013-0011-0061 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Meetings: U.S. Merchant Marine Academy Board of Visitors Meeting Notice Meeting 2018-04-16T04:00:00Z 2018 4 2018-04-16T04:00:00Z   2024-11-07T01:26:08Z 2018-07845 1 0 0900006483146119
MARAD-2013-0011-0060 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Requests for Nominations: U.S. Maritime Transportation System National Advisory Committee Notice Notice of Intent 2018-04-12T04:00:00Z 2018 4 2018-04-12T04:00:00Z   2024-11-07T01:25:27Z 2018-07565 1 0 090000648312abd6
MARAD-2013-0011-0059 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Voluntary Intermodal Sealift Agreement: Changes to the Open Season Enrollment Period Notice Notice of Intent 2018-01-31T05:00:00Z 2018 1 2018-01-31T05:00:00Z   2024-11-07T01:20:54Z 2018-01851 1 0 0900006482e82ceb
MARAD-2013-0011-0058 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Meetings: Transportation System National Advisory Committee Notice Meeting 2018-01-30T05:00:00Z 2018 1 2018-01-30T05:00:00Z   2024-11-07T01:19:52Z 2018-01744 1 0 0900006482e7c42d
MARAD-2013-0011-0057 MARAD Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 Funding Opportunities: America's Marine Highway Projects Notice Notice of Intent 2018-01-05T05:00:00Z 2018 1 2018-01-05T05:00:00Z   2024-11-07T01:15:33Z 2018-00033 1 0 0900006482d9af61

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 5031.159ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API