documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "DOD", document_type = "Other" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOD-2014-OS-0115-0003 | DOD | Privacy Act of 1974; System of Records (addition, DMDC 17 DoD) DOD-2014-OS-0115 | DoD Comment Response | Other | 2014-09-30T04:00:00Z | 2014 | 9 | 2014-09-30T04:00:00Z | 2014-09-30T13:37:36Z | 0 | 0 | 090000648189c272 | |||
| DOD-2014-OS-0101-0004 | DOD | Privacy Act of 1974; System of Records (alteration, DHRA 06 DoD, Defense Sexual Assault Incident Database) DOD-2014-OS-0101 | DoD Response to Public Comments on DOD-2014-OS-0101 | Other | 2014-09-02T04:00:00Z | 2014 | 9 | 2014-09-02T04:00:00Z | 2014-09-02T16:17:02Z | 0 | 0 | 0900006481854d0f | |||
| DOD-2011-OS-0036-0012 | DOD | Department of Defense (DoD) Plan for Retrospective Analysis of Existing Rules DOD-2011-OS-0036 | DoD Retrospective Review Report - July 2014 Update | Other | 2014-08-13T04:00:00Z | 2014 | 8 | 2014-08-13T04:00:00Z | 2014-08-13T13:56:40Z | 0 | 0 | 090000648181ef3d | |||
| DOD-2014-OS-0083-0001 | DOD | Semiannual Regulatory Agenda - Spring 2014 DOD-2014-OS-0083 | Semiannual Regulatory Agenda - Spring 2014 | Other | Additional Information | 2014-05-23T04:00:00Z | 2014 | 5 | 2014-05-23T04:00:00Z | 2014-05-24T00:28:34Z | 0 | 0 | 090000648171076d | ||
| DOD-2011-OS-0036-0011 | DOD | Department of Defense (DoD) Plan for Retrospective Analysis of Existing Rules DOD-2011-OS-0036 | DoD Retro Update January 2014 | Other | 2014-03-11T04:00:00Z | 2014 | 3 | 2014-03-11T04:00:00Z | 2014-03-11T11:31:42Z | 0 | 0 | 090000648165d88f | |||
| DOD-2014-OS-0002-0003 | DOD | Privacy Act of 1974; System of Records (addition, DPR 44 DOD) DOD-2014-OS-0002 | OSD Response to Public Comment | Other | 2014-02-18T05:00:00Z | 2014 | 2 | 2014-02-18T05:00:00Z | 2014-02-18T14:52:02Z | 0 | 0 | 0900006481576b62 |
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;