documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "BIA", document_type = "Rule" and posted_year = 2021 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BIA-2019-0006-0012 | BIA | American Indian Probate BIA-2019-0006 | American Indian Probate Regulations | Rule | 2021-12-20T05:00:00Z | 2021 | 12 | 2021-12-20T05:00:00Z | 2022-06-27T19:12:53Z | 2021-27257 | 0 | 0 | 0900006484ed6204 | ||
| BIA-2020-0008-0021 | BIA | 25 CFR 150 - Indian Land Title and Records BIA-2020-0008 | Indian Land Title and Records | Rule | 2021-10-25T04:00:00Z | 2021 | 10 | 2021-10-25T04:00:00Z | 2021-11-16T18:29:52Z | 2021-23063 | 0 | 0 | 0900006484df1958 | ||
| BIA-2020-0009-0004 | BIA | 25 CFR 90 - Election of Osage Minerals Council Officers BIA-2020-0009 | Election of Officers of the Osage Minerals Council | Rule | 2021-10-01T04:00:00Z | 2021 | 10 | 2021-10-01T04:00:00Z | 2021-11-16T18:29:05Z | 2021-21385 | 0 | 0 | 0900006484db6265 | ||
| BIA-2021-0002-0012 | BIA | Indian Business Incubator Program (IBIP) BIA-2021-0002 | Indian Business Incubators Program | Rule | 2021-09-08T04:00:00Z | 2021 | 9 | 2021-09-08T04:00:00Z | 2021-09-09T03:59:59Z | 2021-10-25T22:07:39Z | 2021-18736 | 0 | 0 | 0900006484d5ee5f | |
| BIA-2020-0008-0020 | BIA | 25 CFR 150 - Indian Land Title and Records BIA-2020-0008 | Indian Land Title and Records | Rule | 2021-08-16T04:00:00Z | 2021 | 8 | 2021-08-16T04:00:00Z | 2021-09-07T12:36:00Z | 2021-17377 | 0 | 0 | 0900006484c6356f | ||
| BIA-2021-0003-0002 | BIA | Tribal Energy Resource Agreements BIA-2021-0003 | Tribal Energy Resource Agreements | Rule | 2021-07-27T04:00:00Z | 2021 | 7 | 2021-07-27T04:00:00Z | 2021-08-11T12:53:10Z | 2021-15929 | 0 | 0 | 0900006484c124bd | ||
| BIA-2020-0006-0003 | BIA | 25 CFR 48 - Leasing of BIE-Operated School Facilities & Fundraising by Employees of BIE-Operated Schools BIA-2020-0006 | Use of Bureau-Operated Schools by Third Parties under Lease Agreements and Fundraising Activity by Bureau-Operated School Personnel | Rule | 2021-07-01T04:00:00Z | 2021 | 7 | 2021-07-01T04:00:00Z | 2021-07-07T13:15:48Z | 2021-13196 | 0 | 0 | 0900006484bc6bc2 | ||
| BIA-2021-0003-0001 | BIA | Tribal Energy Resource Agreements BIA-2021-0003 | Tribal Energy Resource Agreements | Rule | 2021-05-24T04:00:00Z | 2021 | 5 | 2021-05-24T04:00:00Z | 2021-06-24T03:59:59Z | 2021-06-24T13:58:35Z | 2021-10764 | 0 | 0 | 0900006484b2e378 | |
| BIA-2019-0001-0003 | BIA | 2019 to present - Civil Penalties Adjustments BIA-2019-0001 | Annual Adjustments: Civil Penalties Inflation Adjustments | Rule | 2021-01-28T05:00:00Z | 2021 | 1 | 2021-01-28T05:00:00Z | 2021-02-02T14:17:22Z | 2021-01517 | 0 | 0 | 0900006484a0a5fb |
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;