documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "BIA-2010-0003" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2010-0003-0006 | BIA | No Child Left Behind Act - School Construction and Facilities Negotiated Rulemaking Committee BIA-2010-0003 | No Child Left Behind School Facilities and Construction Negotiated Rulemaking Committee; Meeting | Proposed Rule | 2011-08-31T04:00:00Z | 2011 | 8 | 2011-08-31T04:00:00Z | 2011-11-02T15:17:54Z | 2011-22302 | 0 | 0 | 0900006480f0c699 | ||
| BIA-2010-0003-0005 | BIA | No Child Left Behind Act - School Construction and Facilities Negotiated Rulemaking Committee BIA-2010-0003 | Tribal Consultation on No Child Left Behind School Facilities and Construction Negotiated Rulemaking Committee - Draft Report | Proposed Rule | 2011-06-08T04:00:00Z | 2011 | 6 | 2011-06-08T04:00:00Z | 2011-07-30T03:59:59Z | 2011-11-02T15:16:37Z | 2011-14038 | 0 | 0 | 0900006480e400a4 | |
| BIA-2010-0003-0004 | BIA | No Child Left Behind Act - School Construction and Facilities Negotiated Rulemaking Committee BIA-2010-0003 | Meetings: No Child Left Behind School Facilities and Construction Negotiated Rulemaking Committee | Proposed Rule | 2011-04-12T04:00:00Z | 2011 | 4 | 2011-04-12T04:00:00Z | 2011-11-02T15:15:47Z | 2011-08649 | 0 | 0 | 0900006480c22dc0 | ||
| BIA-2010-0003-0003 | BIA | No Child Left Behind Act - School Construction and Facilities Negotiated Rulemaking Committee BIA-2010-0003 | No Child Left Behind School Facilities and Construction Negotiated Rulemaking Committee | Notice | 2011-01-14T05:00:00Z | 2011 | 1 | 2011-01-14T05:00:00Z | 2011-11-02T15:13:32Z | 2011-00722 | 0 | 0 | 0900006480bcaea4 | ||
| BIA-2010-0003-0002 | BIA | No Child Left Behind Act - School Construction and Facilities Negotiated Rulemaking Committee BIA-2010-0003 | No Child Left Behind School Facilities and Construction Negotiated Rulemaking Committee; Meeting | Notice | 2010-09-28T04:00:00Z | 2010 | 9 | 2010-09-28T04:00:00Z | 2011-11-02T15:11:10Z | 2010-24107 | 0 | 0 | 0900006480b622b1 | ||
| BIA-2010-0003-0001 | BIA | No Child Left Behind Act - School Construction and Facilities Negotiated Rulemaking Committee BIA-2010-0003 | No Child Left Behind Act of 2001: No Child Left Behind School Facilities and Construction Negotiated Rulemaking Committee; Meeting | Notice | 2010-03-29T04:00:00Z | 2010 | 3 | 2010-03-29T04:00:00Z | 2010-09-13T17:33:28Z | 2010-07061 | 0 | 0 | 0900006480aca822 |
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;