documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "BIA-2016-0005" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-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 | ||
| BIA-2016-0005-0007 | BIA | BIE Standards, Assessment, and Accountability System – Negotiated Rulemaking BIA-2016-0005 | Committee Establishment; Proposed Memberships: Bureau of Indian Education Standards, Assessments, and Accountability System Negotiated Rulemaking Committee | Proposed Rule | 2018-04-17T04:00:00Z | 2018 | 4 | 2018-04-17T04:00:00Z | 2018-05-18T03:59:59Z | 2018-05-08T01:04:00Z | 2018-07922 | 0 | 0 | 090000648314dc9c | |
| BIA-2016-0005-0001 | BIA | BIE Standards, Assessment, and Accountability System – Negotiated Rulemaking BIA-2016-0005 | Bureau of Indian Education Standards, Assessments, and Accountability System Negotiated Rulemaking Committee Establishment; Nominations | Proposed Rule | 2017-09-14T04:00:00Z | 2017 | 9 | 2017-09-14T04:00:00Z | 2017-10-17T03:59:59Z | 2017-11-16T16:53:38Z | 2017-19111 | 0 | 0 | 0900006482b347b7 |
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;