documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "DOD" and docket_id = "DOD-2012-OS-0053" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| DOD-2012-OS-0053-0009 | DOD | Meeting Notices DOD-2012-OS-0053 | Meetings: Department of Defense Military Family Readiness Council | Notice | 2013-04-04T04:00:00Z | 2013 | 4 | 2013-04-04T04:00:00Z | 2013-05-24T13:30:45Z | 2013-07890 | 0 | 0 | 0900006481268c19 | ||
| DOD-2012-OS-0053-0008 | DOD | Meeting Notices DOD-2012-OS-0053 | Meetings: Defense Military Family Readiness Council | Notice | 2012-10-17T04:00:00Z | 2012 | 10 | 2012-10-17T04:00:00Z | 2012-12-05T18:24:46Z | 2012-25506 | 0 | 0 | 0900006481144d3d | ||
| DOD-2012-OS-0053-0007 | DOD | Meeting Notices DOD-2012-OS-0053 | Meetings: Military Family Readiness Council | Notice | 2012-08-27T04:00:00Z | 2012 | 8 | 2012-08-27T04:00:00Z | 2012-09-18T14:40:30Z | 2012-20987 | 0 | 0 | 09000064810f25cb | ||
| DOD-2012-OS-0053-0006 | DOD | Meeting Notices DOD-2012-OS-0053 | Meetings: Department of Defense Military Family Readiness Council | Notice | 2012-07-18T04:00:00Z | 2012 | 7 | 2012-09-18T14:31:14Z | 2012-17458 | 0 | 0 | 090000648109f941 | |||
| DOD-2012-OS-0053-0003 | DOD | Meeting Notices DOD-2012-OS-0053 | Meetings: Defense Policy Board | Notice | 2012-02-17T05:00:00Z | 2012 | 2 | 2012-02-17T05:00:00Z | 2012-05-03T13:05:04Z | 2012-03698 | 0 | 0 | 0900006480fb8f96 | ||
| DOD-2012-OS-0053-0002 | DOD | Meeting Notices DOD-2012-OS-0053 | Meetings: National Security Education Board | Notice | 2012-02-16T05:00:00Z | 2012 | 2 | 2012-02-16T05:00:00Z | 2012-05-03T13:04:39Z | 2012-03621 | 0 | 0 | 0900006480fb7ecc | ||
| DOD-2012-OS-0053-0005 | DOD | Meeting Notices DOD-2012-OS-0053 | TRICARE Assistance Program Demonstration Termination | Notice | 2012-02-15T05:00:00Z | 2012 | 2 | 2012-02-15T05:00:00Z | 2012-05-03T13:06:06Z | 2012-03525 | 0 | 0 | 0900006480fb72b3 | ||
| DOD-2012-OS-0053-0004 | DOD | Meeting Notices DOD-2012-OS-0053 | Housing Price Inflation Adjustment | Notice | 2012-02-15T05:00:00Z | 2012 | 2 | 2012-02-15T05:00:00Z | 2012-05-03T13:05:45Z | 2012-03524 | 0 | 0 | 0900006480fb7286 | ||
| DOD-2012-OS-0053-0001 | DOD | Meeting Notices DOD-2012-OS-0053 | Meetings: Defense Advisory Committee on Women in the Services | Notice | 2012-02-10T05:00:00Z | 2012 | 2 | 2012-02-10T05:00:00Z | 2012-03-02T04:59:59Z | 2012-05-03T13:04:15Z | 2012-03165 | 0 | 0 | 0900006480fb281f |
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;