documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "MARAD-1998-3468" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, last_modified, 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-1998-3468-0023 | MARAD | Notice of Proposed Rulemaking - Putting Customers First in the Title 11 Progrsm MARAD-1998-3468 | U.S. DOT/MARAD - Final Rule | Rule | Federal Register Publication | 2000-07-20T04:00:00Z | 2000 | 7 | 2000-07-20T04:00:00Z | 2000-07-21T03:59:59Z | 2008-01-08T20:02:49Z | 0 | 0 | 0900006480320468 | |
| MARAD-1998-3468-0016 | MARAD | Notice of Proposed Rulemaking - Putting Customers First in the Title 11 Progrsm MARAD-1998-3468 | Notice of Proposed Rulemaking | Rule | Federal Register Publication | 1999-08-13T04:00:00Z | 1999 | 8 | 1999-08-13T04:00:00Z | 1999-08-14T03:59:59Z | 2008-01-08T20:03:04Z | 0 | 0 | 090000648032045d | |
| MARAD-1998-3468-0011 | MARAD | Notice of Proposed Rulemaking - Putting Customers First in the Title 11 Progrsm MARAD-1998-3468 | Proposed Amendments to the Title XI; Closing Documentation and Application - Proposed Rule; Request for Comments. | Rule | Federal Register Publication | 1998-07-30T04:00:00Z | 1998 | 7 | 1998-07-30T04:00:00Z | 1998-08-01T03:59:59Z | 2008-01-08T20:02:49Z | 0 | 0 | 0900006480320458 | |
| MARAD-1998-3468-0009 | MARAD | Notice of Proposed Rulemaking - Putting Customers First in the Title 11 Progrsm MARAD-1998-3468 | American Shipbuilding Association - Response(s) | Other | Response(s) | 1998-03-23T05:00:00Z | 1998 | 3 | 1998-03-23T05:00:00Z | 1998-03-25T04:59:59Z | 2008-01-08T20:02:18Z | 0 | 0 | 090000648032046f | |
| MARAD-1998-3468-0001 | MARAD | Notice of Proposed Rulemaking - Putting Customers First in the Title 11 Progrsm MARAD-1998-3468 | Putting Customers First in the Title XI Program - Advance Notice of Proposed Rulemaking; Request for Comments | Notice | Advance Notice of Proposed Rulemaking (ANPRM) | 1998-02-17T05:00:00Z | 1998 | 2 | 1998-02-17T05:00:00Z | 1998-03-20T04:59:59Z | 2008-01-08T20:00:51Z | 0 | 0 | 0900006480320456 |
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;