documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "DOI", document_type = "Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, comment_end_date, fr_doc_num, 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-2025-0002-0001 | DOI | Paleontological Resources Preservation DOI-2025-0002 | Paleontological Resources Preservation | Rule | 2022-08-02T04:00:00Z | 2022 | 8 | 2022-08-02T04:00:00Z | 2022-09-02T03:59:59Z | 2025-01-15T21:10:54Z | 2022-16405 | 0 | 0 | 090000648520492b | |
| DOI-2021-0002-0002 | DOI | Social Security Number Fraud Prevention Act of 2017 Implementation; Direct final rule DOI-2021-0002 | Social Security Number Fraud Prevention Act Implementation | Rule | 2022-07-14T04:00:00Z | 2022 | 7 | 2022-07-14T04:00:00Z | 2022-08-16T03:59:59Z | 2022-10-31T14:07:09Z | 2022-14847 | 0 | 0 | 09000064851c9aaf | |
| DOI-2021-0002-0001 | DOI | Social Security Number Fraud Prevention Act of 2017 Implementation; Direct final rule DOI-2021-0002 | Social Security Number Fraud Prevention Act of 2017 Implementation; Direct final rule | Rule | 2022-07-14T04:00:00Z | 2022 | 7 | 2022-07-14T04:00:00Z | 2022-08-16T03:59:59Z | 2022-07-14T13:34:06Z | 2022-14847 | 0 | 0 | 09000064851c9e24 | |
| DOI-2019-0012-0012 | DOI | Department of the Interior Acquisition Regulations, Buy Indian Act Acquisition Regulations DOI-2019-0012 | Acquisition Regulation: Buy Indian Act; Procedures for Contracting | Rule | 2022-04-08T04:00:00Z | 2022 | 4 | 2022-04-08T04:00:00Z | 2022-10-31T12:58:45Z | 2022-07118 | 0 | 0 | 090000648500416b | ||
| DOI-2021-0014-0001 | DOI | Privacy Act Regulations; Exemption for the Insider Threat Program; Final Rule DOI-2021-0014 | Privacy Act Regulations; Exemption for the Insider Threat Program; Final Rule | Rule | 2022-02-15T05:00:00Z | 2022 | 2 | 2022-02-23T12:27:39Z | 2022-03135 | 0 | 0 | 0900006484f7897e | |||
| DOI-2021-0014-0002 | DOI | Privacy Act Regulations; Exemption for the Insider Threat Program; Final Rule DOI-2021-0014 | Privacy Act: Exemption for the Insider Threat Program | Rule | 2022-02-15T05:00:00Z | 2022 | 2 | 2022-02-23T12:18:27Z | 2022-03135 | 0 | 0 | 0900006484f792bd | |||
| DOI-2022-0002-0001 | DOI | Civil Penalties Inflation Adjustments DOI-2022-0002 | Civil Monetary Penalty Inflation Adjustment | Rule | 2022-01-31T05:00:00Z | 2022 | 1 | 2022-01-31T21:22:13Z | 2022-01937 | 0 | 0 | 0900006484f47cd7 |
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;