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 = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2020-0007-0001 | BIA | 25 CFR 248 - Columbia River In Lieu Fishing BIA-2020-0007 | Columbia River in Lieu Fishing Sites | Rule | 2020-11-17T05:00:00Z | 2020 | 11 | 2020-11-17T05:00:00Z | 2020-11-30T15:51:58Z | 2020-24729 | 0 | 0 | 0900006484963795 | ||
| BIA-2020-0002-0003 | BIA | Minimum Standards of Character: Indian Child Protection and Family Violence Prevention BIA-2020-0002 | Indian Child Protection and Family Violence Prevention: Minimum Standards of Character | Rule | 2020-10-16T04:00:00Z | 2020 | 10 | 2020-10-16T04:00:00Z | 2020-10-23T14:29:43Z | 2020-21535 | 0 | 0 | 0900006484912f35 | ||
| BIA-2020-0003-0001 | BIA | Address Change; Office of Indian Gaming BIA-2020-0003 | Change of Address: Office of Indian Gaming for Submission of Tribal-State Class III Gaming Compacts | Rule | 2020-06-24T04:00:00Z | 2020 | 6 | 2020-06-24T04:00:00Z | 2020-06-29T13:14:09Z | 2020-13060 | 0 | 0 | 0900006484704373 | ||
| BIA-2020-0002-0001 | BIA | Minimum Standards of Character: Indian Child Protection and Family Violence Prevention BIA-2020-0002 | Minimum Standards of Character: Indian Child Protection and Family Violence Prevention | Rule | 2020-06-23T04:00:00Z | 2020 | 6 | 2020-06-23T04:00:00Z | 2020-07-24T03:59:59Z | 2020-08-18T01:03:01Z | 2020-11974 | 0 | 0 | 0900006484700f2e | |
| BIA-2019-0004-0016 | BIA | Tribal Transportation Program; Inventory of Proposed Roads BIA-2019-0004 | Tribal Transportation Program: Inventory of Proposed Roads | Rule | 2020-03-30T04:00:00Z | 2020 | 3 | 2020-03-30T04:00:00Z | 2020-04-06T12:36:12Z | 2020-06061 | 0 | 0 | 090000648447703f | ||
| BIA-2016-0005-0049 | BIA | BIE Standards, Assessment, and Accountability System – Negotiated Rulemaking BIA-2016-0005 | Standards, Assessments, and Accountability System | Rule | 2020-03-26T04:00:00Z | 2020 | 3 | 2020-03-26T04:00:00Z | 2020-04-06T12:35:14Z | 2020-06148 | 0 | 0 | 090000648446adad | ||
| BIA-2018-0002-0097 | BIA | Education Contracts under Johnson O'Malley BIA-2018-0002 | Education Contracts under Johnson-O'Malley Act | Rule | 2020-02-25T05:00:00Z | 2020 | 2 | 2020-02-25T05:00:00Z | 2020-03-02T18:43:13Z | 2020-02883 | 0 | 0 | 09000064843ad24d | ||
| BIA-2019-0001-0002 | BIA | 2019 to present - Civil Penalties Adjustments BIA-2019-0001 | Civil Penalties Inflation Adjustments; Annual Adjustments | Rule | 2020-02-19T05:00:00Z | 2020 | 2 | 2020-02-19T05:00:00Z | 2020-03-02T18:49:34Z | 2020-02615 | 0 | 0 | 090000648438689c | ||
| BIA-2019-0003-0003 | BIA | List of Courts of Indian Offenses; Future Publication of Updates BIA-2019-0003 | List of Courts of Indian Offenses; Future Publication of Updates | Rule | 2020-01-07T05:00:00Z | 2020 | 1 | 2020-01-07T05:00:00Z | 2020-01-13T14:27:48Z | 2019-27997 | 0 | 0 | 0900006484275b82 |
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;