documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "DOI", document_type = "Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, fr_doc_num, open_for_comment, 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-2019-0001-0033 | DOI | Updates to American Indian Probate Regulations DOI-2019-0001 | American Indian Probate Regulations | Rule | 2021-12-20T05:00:00Z | 2021 | 12 | 2021-12-20T19:22:23Z | 2021-27257 | 0 | 0 | 0900006484ed6203 | |||
| DOI-2020-0020-0001 | DOI | Financial Assistance Interior Regulation DOI-2020-0020 | Financial Assistance Interior Regulation | Rule | 2021-10-18T04:00:00Z | 2021 | 10 | 2021-10-18T04:00:00Z | 2021-10-19T03:59:59Z | 2021-10-25T18:08:25Z | 2021-22632 | 0 | 0 | 0900006484dc8baf | |
| DOI-2020-0014-0002 | DOI | Privacy Act Regulations; Exemption for the Physical Security Access Files System; Final rule DOI-2020-0014 | Privacy Act Regulations; Exemption for the Physical Security Access Files System | Rule | 2021-09-07T04:00:00Z | 2021 | 9 | 2021-09-07T04:00:00Z | 2021-09-08T03:59:59Z | 2024-11-12T23:33:27Z | 2021-18575 | 1 | 0 | 0900006484d567f2 | |
| DOI-2020-0014-0001 | DOI | Privacy Act Regulations; Exemption for the Physical Security Access Files System; Final rule DOI-2020-0014 | Privacy Act Regulations; Exemption for the Physical Security Access Files System; Final rule | Rule | 2021-09-07T04:00:00Z | 2021 | 9 | 2021-09-07T04:00:00Z | 2021-09-07T17:13:08Z | 2021-18575 | 0 | 0 | 0900006484d57c51 | ||
| DOI-2020-0001-0004 | DOI | Implementation of Executive Order 13891: Guidance Documents DOI-2020-0001 | Procedure for Issuing Guidance Documents | Rule | 2021-04-15T04:00:00Z | 2021 | 4 | 2021-04-15T04:00:00Z | 2021-06-22T11:29:55Z | 2021-07685 | 0 | 0 | 0900006484aa82f7 | ||
| DOI-2016-0004-0005 | DOI | Civil Monetary Penalties Contained in U.S. Department of the Interior Regulations - Inflation Adjustments DOI-2016-0004 | Civil Penalties Inflation Adjustments | Rule | 2021-02-01T05:00:00Z | 2021 | 2 | 2021-02-09T16:38:58Z | 2021-01303 | 0 | 0 | 0900006484a11ba2 |
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;