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 = "Rule" and posted_year = 2016 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-2016-0096-0001 | FMC | Rules of Practice and Procedure; Presentation of Evidence in Commission Proceedings | Rule | 2016-12-22T05:00:00Z | 2016 | 12 | 2016-12-22T05:00:00Z | 2016-12-22T12:51:02Z | 2016-30745 | 0 | 0 | 0900006482430400 | |||
| FMC-2016-0071-0001 | FMC | Update of Existing and Addition of New User Fees | Rule | 2016-08-29T04:00:00Z | 2016 | 8 | 2016-08-29T04:00:00Z | 2016-08-29T12:01:12Z | 2016-20647 | 0 | 0 | 09000064821a81f5 | |||
| FMC-2016-0052-0001 | FMC | Inflation Adjustment of Civil Monetary Penalties | Rule | 2016-06-30T04:00:00Z | 2016 | 6 | 2016-06-30T04:00:00Z | 2016-06-30T12:00:08Z | 2016-15569 | 0 | 0 | 090000648207c436 | |||
| FMC-2016-0048-0001 | FMC | Optional Method of Filing Ocean Common Carrier and Marine Terminal Operator Agreements Subject to the Shipping Act | Rule | 2016-06-13T04:00:00Z | 2016 | 6 | 2016-06-13T04:00:00Z | 2016-06-13T12:56:52Z | 2016-13889 | 0 | 0 | 0900006482033507 | |||
| FMC-2016-0032-0001 | FMC | Optional Method of Filing Ocean Common Carrier and Marine Terminal Operator Agreements Subject to the Shipping Act of 1984 | Rule | 2016-04-27T04:00:00Z | 2016 | 4 | 2016-04-27T04:00:00Z | 2016-05-28T03:59:59Z | 2016-04-27T12:57:23Z | 2016-09760 | 0 | 0 | 0900006481f91a01 | ||
| FMC-2016-0017-0001 | FMC | Organization and Functions; Rules of Practice and Procedure; Attorney Fees | Rule | 2016-03-01T05:00:00Z | 2016 | 3 | 2016-03-01T05:00:00Z | 2016-03-01T14:06:45Z | 2016-04219 | 0 | 0 | 0900006481e9528c | |||
| FMC-2016-0007-0001 | FMC | Ocean Transportation Intermediary Licensing and Financial Responsibility Requirements, and General Duties | Rule | 2016-01-27T05:00:00Z | 2016 | 1 | 2016-01-27T05:00:00Z | 2016-01-27T13:22:46Z | 2016-01578 | 0 | 0 | 0900006481e31443 |
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;