documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "DOI-2014-0002" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, withdrawn, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- DOI 8
| 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOI-2014-0002-2440 | DOI | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community DOI-2014-0002 | Amendment to the Freedom of Information Act Regulations | Supporting & Related Material | 2015-08-24T04:00:00Z | 2015 | 8 | 2015-08-25T00:31:58Z | 0 | 0 | 0900006481c35238 | ||||
| DOI-2014-0002-2441 | DOI | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community DOI-2014-0002 | Native American Graves Protection and Repatriation Act Regulations— Definition of ‘‘Indian Tribe’’ | Supporting & Related Material | 2015-08-24T04:00:00Z | 2015 | 8 | 2015-08-25T00:31:45Z | 0 | 0 | 0900006481c35304 | ||||
| DOI-2014-0002-2194 | DOI | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community DOI-2014-0002 | DMK Comments | Other | 2014-08-21T00:00:00Z | 2014 | 8 | 2015-08-18T15:40:18Z | 0 | 1 | 09000064818386f2 | ||||
| DOI-2014-0002-0005 | DOI | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community DOI-2014-0002 | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2014-06-20T04:00:00Z | 2014 | 6 | 2014-06-20T04:00:00Z | 2014-08-20T03:59:59Z | 2015-08-25T01:30:33Z | 2014-14430 | 0 | 0 | 09000064817571ca |
| DOI-2014-0002-0004 | DOI | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community DOI-2014-0002 | Reducing Regulatory Burden; Retrospective Review Under E.O. 13563 | Proposed Rule | 2011-07-11T00:00:00Z | 2011 | 7 | 2015-08-18T15:39:36Z | 0 | 1 | 0900006480ebef3f | ||||
| DOI-2014-0002-0003 | DOI | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community DOI-2014-0002 | REGULATORY AGENDA Semiannual Regulatory Agenda | Proposed Rule | 2011-07-07T00:00:00Z | 2011 | 7 | 2015-08-18T15:37:52Z | 0 | 1 | 0900006480ebb58c | ||||
| DOI-2014-0002-0002 | DOI | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community DOI-2014-0002 | Native American Graves Protection and Repatriation Act Regulations: Definition of Indian Tribe | Rule | 2011-07-05T00:00:00Z | 2011 | 7 | 2015-08-18T15:37:25Z | 0 | 1 | 0900006480eb9588 | ||||
| DOI-2014-0002-0001 | DOI | Procedures for Reestablishing a Government-to-Government Relationship with the Native Hawaiian Community DOI-2014-0002 | Amendment to the Freedom of Information Act Regulations | Rule | 2009-04-14T00:00:00Z | 2009 | 4 | 2015-08-21T19:10:10Z | 0 | 1 | 0900006480952da0 |
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;