documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FMC", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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-2016-0067-0001 | FMC | Service Contracts and Non-Vessel Operating Common Carriers Service Arrangements | Proposed Rule | 2016-08-22T04:00:00Z | 2016 | 8 | 2016-08-22T04:00:00Z | 2016-09-24T03:59:59Z | 2016-08-22T12:11:16Z | 2016-19843 | 0 | 0 | 090000648218db5b | ||
| FMC-2016-0064-0001 | FMC | Ocean Common Carrier and Marine Terminal Operator Agreements Subject to the Shipping Act of 1984 | Proposed Rule | 2016-08-15T04:00:00Z | 2016 | 8 | 2016-08-15T04:00:00Z | 2016-10-18T03:59:59Z | 2016-08-15T13:48:36Z | 2016-18805 | 0 | 0 | 0900006482175690 | ||
| FMC-2016-0044-0001 | FMC | Update of Existing and Addition of New User Fees | Proposed Rule | 2016-05-27T04:00:00Z | 2016 | 5 | 2016-05-27T04:00:00Z | 2016-06-28T03:59:59Z | 2016-05-27T12:36:02Z | 2016-12326 | 0 | 0 | 0900006481ff8f84 | ||
| FMC-2016-0033-0001 | FMC | Rules of Practice and Procedure: Presentation of Evidence in Commission Proceedings | Proposed Rule | 2016-05-03T04:00:00Z | 2016 | 5 | 2016-05-03T04:00:00Z | 2016-07-06T03:59:59Z | 2016-05-03T12:56:55Z | 2016-09759 | 0 | 0 | 0900006481fa3f75 | ||
| FMC-2016-0021-0001 | FMC | Update of Existing and Addition of New User Fees | Proposed Rule | 2016-03-21T04:00:00Z | 2016 | 3 | 2016-03-21T04:00:00Z | 2016-04-19T03:59:59Z | 2016-03-21T12:03:16Z | 2016-06241 | 0 | 0 | 0900006481ed21a0 | ||
| FMC-2016-0015-0001 | FMC | Amendments to Regulations Governing Service Contracts and NVOCC Service Arrangements | Proposed Rule | 2016-02-29T05:00:00Z | 2016 | 2 | 2016-02-29T05:00:00Z | 2016-03-31T03:59:59Z | 2016-02-29T15:22:41Z | 2016-04264 | 0 | 0 | 0900006481e8f46f | ||
| FMC-2016-0016-0001 | FMC | Ocean Common Carrier and Marine Terminal Operator Agreements Subject to the Shipping Act of 1984 | Proposed Rule | 2016-02-29T05:00:00Z | 2016 | 2 | 2016-02-29T05:00:00Z | 2016-04-05T03:59:59Z | 2016-02-29T15:24:05Z | 2016-04263 | 0 | 0 | 0900006481e8f9ac |
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;