documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "BIA", document_type = "Proposed Rule" and posted_year = 2020 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-2020-0008-0001 | BIA | 25 CFR 150 - Indian Land Title and Records BIA-2020-0008 | Indian Land Title and Records | Proposed Rule | 2020-12-11T05:00:00Z | 2020 | 12 | 2020-12-11T05:00:00Z | 2021-02-10T04:59:59Z | 2021-02-18T02:00:47Z | 2020-26721 | 0 | 0 | 0900006484998517 | |
| BIA-2020-0009-0001 | BIA | 25 CFR 90 - Election of Osage Minerals Council Officers BIA-2020-0009 | Election of Officers of the Osage Minerals Council | Proposed Rule | 2020-12-04T05:00:00Z | 2020 | 12 | 2020-12-04T05:00:00Z | 2021-02-03T04:59:59Z | 2021-02-25T02:00:22Z | 2020-25999 | 0 | 0 | 0900006484985cc5 | |
| BIA-2020-0006-0001 | BIA | 25 CFR 48 - Leasing of BIE-Operated School Facilities & Fundraising by Employees of BIE-Operated Schools BIA-2020-0006 | Proposed Rule - BIE Leasing and Fundraising | Proposed Rule | 2020-11-09T05:00:00Z | 2020 | 11 | 2020-11-09T05:00:00Z | 2020-11-10T02:00:50Z | 0 | 0 | 090000648495416c | |||
| BIA-2020-0004-0001 | BIA | 25 CFR 48 - Leasing of Bureau-Operated School Facilities and Fundraising for Bureau-Operated Schools BIA-2020-0004 | Use of Bureau-Operated Schools by Third Parties Under Lease Agreements and Fundraising Activity by Bureau-Operated School Personnel | Proposed Rule | 2020-10-14T04:00:00Z | 2020 | 10 | 2020-10-14T04:00:00Z | 2020-12-15T04:59:59Z | 2020-12-12T02:01:19Z | 2020-21536 | 0 | 0 | 0900006484909529 | |
| BIA-2020-0005-0001 | BIA | Section 504 Rehabilitation Act - Bureau of Indian Education BIA-2020-0005 | Meetings: Tribal Consultation; National Policy Memorandum on Section 504 of the Rehabilitation Act of 1973 | Proposed Rule | 2020-10-09T04:00:00Z | 2020 | 10 | 2020-10-09T04:00:00Z | 2020-11-28T04:59:59Z | 2020-11-10T02:00:53Z | 2020-21972 | 0 | 0 | 09000064848f1624 | |
| BIA-2020-0001-0006 | BIA | Procedures for Federal Acknowledgment of Alaska Native Entities BIA-2020-0001 | Procedures for Federal Acknowledgment of Alaska Native Entities | Proposed Rule | 2020-05-06T04:00:00Z | 2020 | 5 | 2020-05-06T04:00:00Z | 2020-05-22T03:59:59Z | 2020-06-11T14:20:47Z | 2020-09100 | 0 | 0 | 0900006484565523 | |
| BIA-2020-0001-0002 | BIA | Procedures for Federal Acknowledgment of Alaska Native Entities BIA-2020-0001 | Procedures for Federal Acknowledgment of Alaska Native Entities | Proposed Rule | 2020-02-24T05:00:00Z | 2020 | 2 | 2020-02-24T05:00:00Z | 2020-03-02T18:39:50Z | 2020-03736 | 0 | 0 | 09000064843a3148 | ||
| BIA-2020-0001-0001 | BIA | Procedures for Federal Acknowledgment of Alaska Native Entities BIA-2020-0001 | Procedures for Federal Acknowledgment of Alaska Native Entities | Proposed Rule | 2020-01-02T05:00:00Z | 2020 | 1 | 2020-01-02T05:00:00Z | 2020-03-03T04:59:59Z | 2021-03-09T02:00:29Z | 2019-27998 | 0 | 0 | 09000064842636a2 |
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;