documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "DOI", document_type = "Proposed Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOI-2007-0038-0001 | DOI | Amendment to the Freedom of Information Act Regulations DOI-2007-0038 | Amendment to the Freedom of Information Act Regulations | Proposed Rule | 2007-10-25T04:00:00Z | 2007 | 10 | 2007-10-25T04:00:00Z | 2007-12-25T04:59:59Z | 2011-06-11T17:09:19Z | E7-21012 | 0 | 0 | 09000064803562b2 | |
| DOI-2007-0032-0001 | DOI | Native American Graves Protection and Repatriation Act Regulations--Disposition of Culturally Unidentifiable Human Remains DOI-2007-0032 | Native American Graves Protection and Repatriation Act Regulations--Disposition of Culturally Unidentifiable Human Remains | Proposed Rule | 2007-10-16T04:00:00Z | 2007 | 10 | 2007-10-16T04:00:00Z | 2008-01-15T04:59:59Z | 2011-06-11T17:09:05Z | E7-20209 | 0 | 0 | 0900006480305250 | |
| DOI-2007-0035-0001 | DOI | Commercial Filming DOI-2007-0035 | Making Motion Pictures, Television Productions, Soundtracks or Taking Still Photographs on Certain Areas Under the Jurisdiction of the Department of the Interior | Proposed Rule | 2007-08-20T04:00:00Z | 2007 | 8 | 2007-08-20T04:00:00Z | 2007-10-20T03:59:59Z | 2011-06-11T17:09:14Z | E7-15845 | 0 | 0 | 090000648027821e | |
| DOI-2007-0034-0001 | DOI | Consultation and Dialogue On Regulations Regarding The Disposition Of Unclaimed Native American Human Remains DOI-2007-0034 | Consultation and Dialogue On Regulations Regarding The Disposition Of Unclaimed Native American Human Remains, Funerary Objects, Sacred Objects, Or Objects Of Cultural Patrimony Excavated Or Discovered On Federal Or Tribal Lands After November 16, 1990, Pursuant To Provisions Of The Native American Graves Protection And Repatriation Act (NAGPRA) | Proposed Rule | 2007-08-13T04:00:00Z | 2007 | 8 | 2007-08-13T04:00:00Z | 2007-12-02T04:59:59Z | 2008-02-06T19:38:44Z | E7-15823 | 0 | 0 | 090000648027669f | |
| DOI-2007-0031-0001 | DOI | Department of the Interior Implementation of OMB Guidance on Nonprocurement Debarment and Suspension DOI-2007-0031 | Department of the Interior Implementation of OMB Guidance on Nonprocurement Debarment and Suspension | Proposed Rule | 2007-06-18T04:00:00Z | 2007 | 6 | 2007-06-18T04:00:00Z | 2007-08-18T03:59:59Z | 2011-06-11T17:09:00Z | 07-02949 | 0 | 0 | 090000648025339c |
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;