documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "DOI", document_type = "Proposed Rule" and posted_year = 2023 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, 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-2023-0012-0001 | DOI | Department of the Interior Acquisition Regulation Governance Titles - NOT PUBLISHED YET DOI-2023-0012 | Acquisition Regulation : Governance Titles | Proposed Rule | 2023-12-07T05:00:00Z | 2023 | 12 | 2023-12-07T05:00:00Z | 2024-02-06T04:59:59Z | 2023-12-14T02:00:42Z | 2023-26443 | 0 | 0 | 090000648630b1a7 | |
| DOI-2023-0008-0002 | DOI | Privacy Act Regulations; Exemption for Investigative Records; INTERIOR/OIG–02, Investigative Records DOI-2023-0008 | Privacy Act Regulations; Exemption for Investigative Records | Proposed Rule | 2023-07-13T04:00:00Z | 2023 | 7 | 2023-07-13T04:00:00Z | 2023-09-12T03:59:59Z | 2023-07-22T01:01:28Z | 2023-14881 | 0 | 0 | 0900006485c9d927 | |
| DOI-2023-0008-0001 | DOI | Privacy Act Regulations; Exemption for Investigative Records; INTERIOR/OIG–02, Investigative Records DOI-2023-0008 | Privacy Act Regulations; Exemption for Investigative Records; INTERIOR/OIG–02, Investigative Records | Proposed Rule | 2023-07-13T04:00:00Z | 2023 | 7 | 2023-07-13T04:00:00Z | 2023-07-22T19:34:13Z | 2023-14881 | 0 | 0 | 0900006485c9cf8c | ||
| DOI-2024-0002-0001 | DOI | Semiannual Regulatory Agenda DOI-2024-0002 | Semiannual Regulatory Agenda | Proposed Rule | 2023-02-22T05:00:00Z | 2023 | 2 | 2023-02-22T05:00:00Z | 2024-01-12T11:32:41Z | 2023-02028 | 0 | 0 | 09000064856ee1aa | ||
| DOI-2022-0016-0001 | DOI | Natural Resource Damage Assessment and Restoration - Hazardous Substances DOI-2022-0016 | Natural Resource Damages for Hazardous Substances | Proposed Rule | 2023-01-19T05:00:00Z | 2023 | 1 | 2023-01-19T05:00:00Z | 2023-03-21T03:59:59Z | 2023-03-21T01:01:23Z | 2023-00927 | 0 | 0 | 09000064855f846e |
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;