documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "MARAD-2013-0011" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, last_modified, open_for_comment, 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-0131 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Funding Opportunity: America's Marine Highway Projects | Notice | Notice of Intent | 2021-05-24T04:00:00Z | 2021 | 5 | 2021-05-24T04:00:00Z | 2024-11-06T23:47:25Z | 2021-10914 | 1 | 0 | 0900006484b2e2dc | |
| MARAD-2013-0011-0130 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Civil Penalty Amounts | Rule | Final Rule | 2021-05-03T04:00:00Z | 2021 | 5 | 2021-05-03T04:00:00Z | 2021-05-05T12:10:48Z | 2021-08224 | 0 | 0 | 0900006484ac7c27 | |
| MARAD-2013-0011-0129 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Funding Opportunity: Port Infrastructure Development Program | Notice | Notice of Intent | 2021-04-16T04:00:00Z | 2021 | 4 | 2021-04-16T04:00:00Z | 2021-05-05T12:07:46Z | 2021-07852 | 0 | 0 | 0900006484aa984b | |
| MARAD-2013-0011-0128 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Small Shipyard Grant Program; Application Deadlines | Notice | Notice of Intent | 2021-01-22T05:00:00Z | 2021 | 1 | 2021-01-22T05:00:00Z | 2024-11-06T23:45:04Z | 2021-01359 | 1 | 0 | 09000064849fc5b8 | |
| MARAD-2013-0011-0127 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Revisions to Civil Penalty Amounts | Rule | Final Rule | 2021-01-11T05:00:00Z | 2021 | 1 | 2021-01-11T05:00:00Z | 2024-11-06T23:45:04Z | 2020-25236 | 1 | 0 | 09000064849ec359 | |
| MARAD-2013-0011-0126 | MARAD | Federal Registers for Applications, Notices, and Orders - Miscellaneous MARAD-2013-0011 | Request for Applications: U.S. Maritime Transportation System National Advisory Committee | Notice | Notice of Intent | 2021-01-08T05:00:00Z | 2021 | 1 | 2021-01-08T05:00:00Z | 2024-11-06T23:44:25Z | 2021-00121 | 1 | 0 | 09000064849e899e |
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;