documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "BIA-2021-0001" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2021-0001-0042 | BIA | Self-Governance PROGRESS Act Regulations BIA-2021-0001 | Hearings, Meetings, Proceedings, etc.: Self-Governance PROGRESS Act Negotiated Rulemaking Committee | Proposed Rule | 2024-08-16T04:00:00Z | 2024 | 8 | 2024-08-16T04:00:00Z | 2024-10-20T03:59:59Z | 2024-12-18T15:55:09Z | 2024-18382 | 0 | 0 | 090000648664dab3 | |
| BIA-2021-0001-0016 | BIA | Self-Governance PROGRESS Act Regulations BIA-2021-0001 | Self-Governance PROGRESS Act Regulations | Proposed Rule | 2024-07-15T04:00:00Z | 2024 | 7 | 2024-07-15T04:00:00Z | 2024-08-23T03:59:59Z | 2025-01-12T03:02:15Z | 2024-14862 | 0 | 0 | 09000064865eed2f | |
| BIA-2021-0001-0014 | BIA | Self-Governance PROGRESS Act Regulations BIA-2021-0001 | Hearings, Meetings, Proceedings, etc.: Self-Governance PROGRESS Act Negotiated Rulemaking Committee | Proposed Rule | 2024-03-20T04:00:00Z | 2024 | 3 | 2024-06-25T17:06:59Z | 2024-05889 | 0 | 0 | 090000648648791a | |||
| BIA-2021-0001-0013 | BIA | Self-Governance PROGRESS Act Regulations BIA-2021-0001 | Hearings, Meetings, Proceedings, etc.: Self-Governance Practical Reforms and Other Goals to Reinforce the Effectiveness of Self-Governance and Self-Determination for Indian Tribes Act Negotiated Rulemaking Committee | Proposed Rule | 2024-02-29T05:00:00Z | 2024 | 2 | 2024-02-29T05:00:00Z | 2024-06-25T17:06:12Z | 2024-04196 | 0 | 0 | 090000648644084c | ||
| BIA-2021-0001-0011 | BIA | Self-Governance PROGRESS Act Regulations BIA-2021-0001 | Hearings, Meetings, Proceedings etc.: Self-Governance PROGRESS Act Negotiated Rulemaking Committee | Proposed Rule | 2023-11-28T05:00:00Z | 2023 | 11 | 2024-06-25T16:59:45Z | 2023-26124 | 0 | 0 | 09000064862bc40e | |||
| BIA-2021-0001-0003 | BIA | Self-Governance PROGRESS Act Regulations BIA-2021-0001 | Meetings: Self-Governance PROGRESS Act Negotiated Rulemaking Committee | Proposed Rule | 2023-02-03T05:00:00Z | 2023 | 2 | 2023-02-03T05:00:00Z | 2023-02-06T13:49:55Z | 2023-02205 | 0 | 0 | 0900006485630871 | ||
| BIA-2021-0001-0002 | BIA | Self-Governance PROGRESS Act Regulations BIA-2021-0001 | Self-Governance PROGRESS Act Negotiated Rulemaking Committee Establishment; Proposed Membership | Proposed Rule | 2021-11-23T05:00:00Z | 2021 | 11 | 2021-11-23T05:00:00Z | 2024-06-25T02:54:45Z | 2021-25401 | 0 | 0 | 0900006484e757c9 | ||
| BIA-2021-0001-0001 | BIA | Self-Governance PROGRESS Act Regulations BIA-2021-0001 | Requests for Nominations: Self-Governance Practical Reforms and Other Goals to Reinforce the Effectiveness of Self-Governance and Self-Determination Act Negotiated Rulemaking Committee Establishment | Proposed Rule | 2021-02-01T05:00:00Z | 2021 | 2 | 2021-02-01T05:00:00Z | 2021-03-04T04:59:59Z | 2021-02-02T14:18:57Z | 2021-01149 | 0 | 0 | 0900006484a11afd |
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;