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 = "Rule" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2014-0010-0001 | DOI | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards: Federal Awarding Agency Regulatory Implementation DOI-2014-0010 | Uniform Administrative Requirements, Cost Principles, and Audit Requirements for Federal Awards: Federal Awarding Agency Regulatory Implementation | Rule | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2015-02-18T04:59:59Z | 2016-06-21T19:59:07Z | 2014-28697 | 0 | 0 | 0900006481985f49 | |
| DOI-2014-0009-0002 | DOI | Privacy Act; Systems of Records: Exemption for the Insider Threat Program DOI-2014-0009 | Privacy Act Regulations: Insider Threat Program; Exemption | Rule | 2014-11-19T05:00:00Z | 2014 | 11 | 2014-11-19T05:00:00Z | 2016-06-21T19:51:32Z | 2014-27328 | 0 | 0 | 0900006481937d2e | ||
| DOI-2014-0008-0001 | DOI | Privacy Act; Systems of Records: Incident Management, Analysis and Reporting System; Exemption DOI-2014-0008 | Privacy Act; Systems of Records: Incident Management, Analysis and Reporting System; Exemption | Rule | 2014-09-02T04:00:00Z | 2014 | 9 | 2014-09-02T04:00:00Z | 2016-06-21T19:34:23Z | 2014-20744 | 0 | 0 | 0900006481853dac | ||
| DOI-2011-0007-0002 | DOI | Amendment of Privacy Act Regulations DOI-2011-0007 | Privacy Act Regulations: Exemption for the Debarment and Suspension Program | Rule | 2014-08-19T04:00:00Z | 2014 | 8 | 2014-08-19T04:00:00Z | 2016-06-21T20:17:12Z | 2014-19651 | 0 | 0 | 090000648182f7be | ||
| DOI-2007-0032-0221 | 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: Definition of Indian Tribe | Rule | 2014-06-11T04:00:00Z | 2014 | 6 | 2014-06-11T04:00:00Z | 2014-06-27T16:11:25Z | 2014-13622 | 0 | 0 | 090000648173a6ef |
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;