documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "BIA", document_type = "Rule" and posted_year = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2014-0001-0203 | BIA | 25 CFR 169 - Rights-of-Way on Indian Land BIA-2014-0001 | Rights-of-Way on Indian Land, | Rule | 2015-12-21T05:00:00Z | 2015 | 12 | 2015-12-21T05:00:00Z | 2016-02-23T19:57:28Z | 2015-31892 | 0 | 0 | 0900006481dbd820 | ||
| BIA-2014-0001-0202 | BIA | 25 CFR 169 - Rights-of-Way on Indian Land BIA-2014-0001 | Rights-of-Way on Indian Land | Rule | 2015-11-19T05:00:00Z | 2015 | 11 | 2015-11-19T05:00:00Z | 2016-02-23T19:57:06Z | 2015-28548 | 0 | 0 | 0900006481d5a285 | ||
| BIA-2014-0004-0024 | BIA | 25 CFR 256 - Housing Improvement Program (HIP) BIA-2014-0004 | Housing Improvement Program | Rule | 2015-11-10T05:00:00Z | 2015 | 11 | 2015-11-10T05:00:00Z | 2016-02-23T19:55:59Z | 2015-28547 | 0 | 0 | 0900006481d2dec1 | ||
| BIA-2014-0006-0019 | BIA | 25 CFR 81 - Secretarial Elections (and former 25 CFR 82 - Petitioning Procedures) BIA-2014-0006 | Secretarial Election Procedures | Rule | 2015-10-19T04:00:00Z | 2015 | 10 | 2015-10-19T04:00:00Z | 2015-11-02T15:59:41Z | 2015-26176 | 0 | 0 | 0900006481cd4840 | ||
| BIA-2013-0007-0360 | BIA | 25 CFR 83 - Federal Acknowledgment BIA-2013-0007 | Federal Acknowledgment of American Indian Tribes | Rule | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-07-30T12:45:46Z | 2015-16193 | 0 | 0 | 0900006481b61aee | ||
| BIA-2013-0007-0361 | BIA | 25 CFR 83 - Federal Acknowledgment BIA-2013-0007 | Requests for Administrative Acknowledgment of Federal Indian Tribes | Rule | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-07-30T12:49:35Z | 2015-16194 | 0 | 0 | 0900006481b63517 | ||
| BIA-2013-0003-0025 | BIA | Osage Mineral Negotiated Rulemaking BIA-2013-0003 | Leasing of Osage Reservation Lands for Oil and Gas Mining | Rule | 2015-05-11T04:00:00Z | 2015 | 5 | 2015-05-11T04:00:00Z | 2016-04-15T16:20:18Z | 2015-11314 | 0 | 0 | 0900006481ad8c66 |
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;