documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FMC", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FMC-2020-0074-0001 | FMC | Update of Existing User Fees | Rule | 2020-11-13T05:00:00Z | 2020 | 11 | 2020-11-13T05:00:00Z | 2020-12-29T04:59:59Z | 2020-11-13T12:55:18Z | 2020-23763 | 0 | 0 | 090000648495c9fe | ||
| FMC-2020-0052-0001 | FMC | Policy Statement on Passenger Vessel Financial Responsibility | Rule | 2020-08-14T04:00:00Z | 2020 | 8 | 2020-08-14T04:00:00Z | 2020-08-14T11:50:42Z | 2020-16965 | 0 | 0 | 09000064847ffe9c | |||
| FMC-2020-0041-0001 | FMC | Service Contracts | Rule | 2020-06-25T04:00:00Z | 2020 | 6 | 2020-06-25T04:00:00Z | 2020-06-25T12:08:40Z | 2020-13045 | 0 | 0 | 090000648470a501 | |||
| FMC-2020-0031-0001 | FMC | Interpretive Rule on Demurrage and Detention Under the Shipping Act | Rule | 2020-05-18T04:00:00Z | 2020 | 5 | 2020-05-18T04:00:00Z | 2020-05-18T11:54:02Z | 2020-09370 | 0 | 0 | 090000648463032f | |||
| FMC-2020-0027-0001 | FMC | Procedures for Exemption from Service Contract Regulatory Requirements | Rule | 2020-04-27T04:00:00Z | 2020 | 4 | 2020-04-27T04:00:00Z | 2020-04-27T12:28:38Z | 2020-09003 | 0 | 0 | 09000064844f565e | |||
| FMC-2020-0012-0001 | FMC | Regulatory Amendments Implementing the Frank LoBiondo Coast Guard Authorization Act of 2018 | Rule | 2020-02-20T05:00:00Z | 2020 | 2 | 2020-02-20T05:00:00Z | 2020-02-20T12:59:12Z | 2020-02493 | 0 | 0 | 09000064843928d8 | |||
| FMC-2020-0007-0001 | FMC | Hearing Procedures Governing the Denial, Revocation, or Suspension of an Ocean Transportation Intermediary License | Rule | 2020-01-31T05:00:00Z | 2020 | 1 | 2020-01-31T05:00:00Z | 2020-01-31T12:43:01Z | 2020-00907 | 0 | 0 | 0900006484315eaf | |||
| FMC-2020-0004-0001 | FMC | Inflation Adjustment of Civil Monetary Penalties | Rule | 2020-01-13T05:00:00Z | 2020 | 1 | 2020-01-13T05:00:00Z | 2020-01-13T15:56:47Z | 2020-00294 | 0 | 0 | 090000648429176a |
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;