documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FMC", document_type = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2015-0075-0001 | FMC | Ocean Transportation Intermediary Licensing and Financial Responsibility Requirements, and General Duties | Rule | 2015-11-05T05:00:00Z | 2015 | 11 | 2015-11-05T05:00:00Z | 2015-11-05T13:16:07Z | 2015-27914 | 0 | 0 | 0900006481d14022 | |||
| FMC-2015-0065-0001 | FMC | Time and Service in Adjudicatory Proceedings | Rule | 2015-09-23T04:00:00Z | 2015 | 9 | 2015-09-23T04:00:00Z | 2015-10-31T03:59:59Z | 2015-09-23T13:16:42Z | 2015-24087 | 0 | 0 | 0900006481c8e553 | ||
| FMC-2015-0057-0001 | FMC | Commission Information and Records; Freedom of Information Act | Rule | 2015-09-01T04:00:00Z | 2015 | 9 | 2015-09-01T04:00:00Z | 2015-10-02T03:59:59Z | 2015-09-01T13:19:54Z | 2015-21453 | 0 | 0 | 0900006481c4a481 | ||
| FMC-2015-0055-0001 | FMC | Commission Information and Records; Freedom of Information Act; Withdrawal | Rule | 2015-09-01T04:00:00Z | 2015 | 9 | 2015-09-01T04:00:00Z | 2015-09-01T13:18:51Z | 2015-21452 | 0 | 0 | 0900006481c4a400 | |||
| FMC-2015-0041-0001 | FMC | Access to Commission Information and Records; Freedom of Information Act | Rule | 2015-07-02T04:00:00Z | 2015 | 7 | 2015-07-02T04:00:00Z | 2015-08-04T03:59:59Z | 2015-07-02T13:11:39Z | 2015-16101 | 0 | 0 | 0900006481b67374 | ||
| FMC-2015-0018-0001 | FMC | Service of Private Party Complaints and Documents Containing Confidential Materials | Rule | 2015-03-19T04:00:00Z | 2015 | 3 | 2015-03-19T04:00:00Z | 2015-05-27T03:59:59Z | 2015-03-19T12:32:15Z | 2015-06239 | 0 | 0 | 0900006481a51945 |
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;