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 = "Proposed Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| BIA-2019-0006-0001 | BIA | American Indian Probate BIA-2019-0006 | American Indian Probate Regulations | Proposed Rule | 2019-10-31T04:00:00Z | 2019 | 10 | 2019-10-31T04:00:00Z | 2019-12-31T04:59:59Z | 2019-12-31T02:03:06Z | 2019-23748 | 0 | 0 | 090000648410f2f2 | |
| BIA-2019-0004-0003 | BIA | Tribal Transportation Program; Inventory of Proposed Roads BIA-2019-0004 | Tribal Transportation Program: Inventory of Proposed Roads | Proposed Rule | 2019-08-27T04:00:00Z | 2019 | 8 | 2019-08-27T04:00:00Z | 2019-09-25T03:59:59Z | 2019-09-26T01:05:05Z | 2019-15928 | 0 | 0 | 0900006483dbbff4 | |
| BIA-2017-0002-0041 | BIA | Delay of Compliance Date for Adding Proposed Roads to NTTFI - Tribal Transportation Program BIA-2017-0002 | Tribal Transportation Program: Inventory of Proposed Roads | Proposed Rule | 2019-07-26T04:00:00Z | 2019 | 7 | 2019-07-26T04:00:00Z | 2019-09-25T03:59:59Z | 2019-07-26T14:33:14Z | 2019-15928 | 0 | 0 | 0900006483dbb26a | |
| BIA-2019-0004-0001 | BIA | Tribal Transportation Program; Inventory of Proposed Roads BIA-2019-0004 | Tribal Transportation Program: Inventory of Proposed Roads | Proposed Rule | 2019-07-26T04:00:00Z | 2019 | 7 | 2019-07-26T04:00:00Z | 2019-09-25T03:59:59Z | 2019-09-07T01:05:05Z | 2019-15928 | 0 | 0 | 0900006483dbc1a2 | |
| BIA-2019-0003-0001 | BIA | List of Courts of Indian Offenses; Future Publication of Updates BIA-2019-0003 | List of Courts of Indian Offenses; Future Publication of Updates | Proposed Rule | 2019-07-23T04:00:00Z | 2019 | 7 | 2019-07-23T04:00:00Z | 2019-10-02T01:02:23Z | 2019-15549 | 0 | 0 | 0900006483da9eb9 | ||
| BIA-2019-0002-0001 | BIA | Tribal Energy Resource Agreements (TERAs) - 25 CFR 224 BIA-2019-0002 | Tribal Energy Resource Agreements | Proposed Rule | 2019-07-02T04:00:00Z | 2019 | 7 | 2019-07-02T04:00:00Z | 2019-09-04T03:59:59Z | 2019-09-10T01:02:21Z | 2019-13265 | 0 | 0 | 0900006483d55ecc | |
| BIA-2018-0002-0042 | BIA | Education Contracts under Johnson O'Malley BIA-2018-0002 | Education Contracts under Johnson-O'Malley Act | Proposed Rule | 2019-06-27T04:00:00Z | 2019 | 6 | 2019-06-27T04:00:00Z | 2019-08-27T03:59:59Z | 2019-08-29T01:06:31Z | 2019-13632 | 0 | 0 | 0900006483d46d41 | |
| BIA-2016-0005-0021 | BIA | BIE Standards, Assessment, and Accountability System – Negotiated Rulemaking BIA-2016-0005 | Standards, Assessments, and Accountability System | Proposed Rule | 2019-06-10T04:00:00Z | 2019 | 6 | 2019-06-10T04:00:00Z | 2019-08-10T03:59:59Z | 2019-08-31T01:05:25Z | 2019-12096 | 0 | 0 | 0900006483cfb6ef | |
| BIA-2016-0005-0020 | BIA | BIE Standards, Assessment, and Accountability System – Negotiated Rulemaking BIA-2016-0005 | Meetings: Bureau of Indian Education Standards, Assessments, and Accountability System Negotiated Rulemaking Committee | Proposed Rule | 2019-02-11T05:00:00Z | 2019 | 2 | 2019-02-11T05:00:00Z | 2019-02-28T15:42:57Z | 2019-01834 | 0 | 0 | 0900006483a5e761 |
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;