documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "DOI", document_type = "Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOI-2016-0006-0009 | DOI | Freedom of Information Act Regulations DOI-2016-0006 | Freedom of Information Act Regulations | Rule | 2016-12-20T05:00:00Z | 2016 | 12 | 2016-12-20T05:00:00Z | 2017-02-23T22:32:27Z | 2016-30601 | 0 | 0 | 0900006482429605 | ||
| DOI-2015-0001-0004 | DOI | Resource Agency Hearings and Alternatives Development Procedures in Hydropower Licenses DOI-2015-0001 | Resource Agency Hearings and Alternatives Development Procedures in Hydropower Licenses | Rule | 2016-11-23T05:00:00Z | 2016 | 11 | 2016-11-23T05:00:00Z | 2017-03-03T01:32:04Z | 2016-28063 | 0 | 0 | 09000064823b9a04 | ||
| DOI-2016-0007-0001 | DOI | Supplemental Standards of Ethical Conduct for Employees of the Department of the Interior DOI-2016-0007 | Standards of Ethical Conduct for Employees of the Department of the Interior | Rule | 2016-11-02T04:00:00Z | 2016 | 11 | 2016-11-02T04:00:00Z | 2016-12-03T04:59:59Z | 2016-11-28T02:00:12Z | 2016-26458 | 0 | 0 | 09000064823691f5 | |
| DOI-2015-0005-6341 | DOI | Procedures for Reestablishing a Formal Government-to-Government Relationship with the Native Hawaiian Community DOI-2015-0005 | Procedures for Reestablishing a Formal Government-to-Government Relationship with the Native Hawaiian Community | Rule | 2016-10-14T04:00:00Z | 2016 | 10 | 2016-10-14T04:00:00Z | 2016-11-02T13:23:59Z | 2016-23720 | 0 | 0 | 09000064822f786a | ||
| DOI-2016-0008-0001 | DOI | Revision to Nonprocurement Suspension and Debarment Regulations DOI-2016-0008 | Nonprocurement Suspension and Debarment Regulations | Rule | Final Rule | 2016-09-26T04:00:00Z | 2016 | 9 | 2016-09-26T04:00:00Z | 2017-03-03T18:20:39Z | 2016-23102 | 0 | 0 | 09000064822662c5 | |
| DOI-2016-0004-0004 | DOI | Civil Monetary Penalties Contained in U.S. Department of the Interior Regulations - Inflation Adjustments DOI-2016-0004 | Civil Penalties Inflation Adjustments | Rule | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-20T04:00:00Z | 2016-09-20T14:53:10Z | 2016-22565 | 0 | 0 | 090000648222d4d3 | ||
| DOI-2016-0004-0003 | DOI | Civil Monetary Penalties Contained in U.S. Department of the Interior Regulations - Inflation Adjustments DOI-2016-0004 | Civil Penalties Inflation Adjustments; Correction | Rule | 2016-08-08T04:00:00Z | 2016 | 8 | 2016-08-08T04:00:00Z | 2016-08-08T14:14:00Z | 2016-18643 | 0 | 0 | 090000648215c465 | ||
| DOI-2016-0004-0001 | DOI | Civil Monetary Penalties Contained in U.S. Department of the Interior Regulations - Inflation Adjustments DOI-2016-0004 | Civil Penalties Inflation Adjustments | Rule | 2016-06-28T04:00:00Z | 2016 | 6 | 2016-06-28T04:00:00Z | 2016-08-30T03:59:59Z | 2016-07-13T01:00:34Z | 2016-15168 | 0 | 0 | 090000648207409a | |
| DOI-2015-0002-0519 | DOI | Land Exchange Procedures and Procedures to Amend the Hawaiian Homes Commission Act, 1920 DOI-2015-0002 | Land Exchange Procedures and Procedures to Amend the Hawaiian Homes Commission Act | Rule | 2016-05-13T04:00:00Z | 2016 | 5 | 2016-05-13T04:00:00Z | 2016-05-20T15:50:40Z | 2016-11146 | 0 | 0 | 0900006481fcb620 | ||
| DOI-2016-0003-0001 | DOI | Freedom of Information Act Regulations DOI-2016-0003 | Freedom of Information Act Regulations | Rule | 2016-03-03T05:00:00Z | 2016 | 3 | 2016-03-03T05:00:00Z | 2016-06-20T16:42:04Z | 2016-04647 | 0 | 0 | 0900006481e9cec5 |
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;