documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "DOD", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, 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-2007-HA-0048-0014 | DOD | TRICARE; Outpatient Hospital Prospective Payment System (OPPS) DOD-2007-HA-0048 | TRICARE; Hospital Outpatient Prospective Payment System (OPPS) | Rule | 2008-12-10T05:00:00Z | 2008 | 12 | 2008-12-10T05:00:00Z | 2011-06-11T17:08:00Z | E8-29251 | 0 | 0 | 09000064807d56e6 | ||
| DOD-2007-HA-0010-0002 | DOD | TRICARE Program; Overpayments Recovery DOD-2007-HA-0010 | TRICARE Program; Overpayments Recovery | Rule | 2008-11-25T05:00:00Z | 2008 | 11 | 2008-11-25T05:00:00Z | 2011-06-11T17:07:58Z | E8-27959 | 0 | 0 | 09000064807bf112 | ||
| DOD-2006-OS-0041-0003 | DOD | Procedures and Support for Non-Federal Entities Authorized to Operate on Department of Defense (DoD) Installations DOD-2006-OS-0041 | Procedures and Support for Non-Federal Entities Authorized To Operate on Department of Defense (DoD) Installations | Rule | 2008-10-09T04:00:00Z | 2008 | 10 | 2008-10-09T04:00:00Z | 2008-10-09T11:33:01Z | E8-23970 | 0 | 0 | 0900006480741137 | ||
| DOD-2007-OS-0025-0004 | DOD | Office of the Secretary 32 CFR Part 112 Indebtedness of Military Personnel DOD-2007-OS-0025 | Indebtedness of Military Personnel | Rule | 2008-10-09T04:00:00Z | 2008 | 10 | 2008-10-09T04:00:00Z | 2011-06-11T17:08:02Z | E8-23977 | 0 | 0 | 0900006480741113 | ||
| DOD-2008-HA-0035-0001 | DOD | Civilian Health and Medical Program of the Uniformed Services (CHAMPUS); Voluntary Disenrollment from the TRICARE Retiree Dental Program (TRDP) DOD-2008-HA-0035 | Civilian Health and Medical Program of the Uniformed Services (CHAMPUS); Voluntary Disenrollment From the TRICARE Retiree Dental Program (TRDP) | Rule | 2008-10-09T04:00:00Z | 2008 | 10 | 2008-10-09T04:00:00Z | 2011-06-11T17:08:04Z | E8-24001 | 0 | 0 | 090000648074113b | ||
| DOD-2008-OS-0061-0003 | DOD | National Security Personnel System DOD-2008-OS-0061 | National Security Personnel System; Correction | Rule | 2008-10-07T04:00:00Z | 2008 | 10 | 2008-10-07T04:00:00Z | 2011-06-11T17:08:07Z | E8-23727 | 0 | 0 | 090000648073b4dd | ||
| DOD-2008-OS-0061-0002 | DOD | National Security Personnel System DOD-2008-OS-0061 | National SecurityPersonnel System | Rule | 2008-09-26T04:00:00Z | 2008 | 9 | 2008-09-26T04:00:00Z | 2011-06-11T17:08:08Z | E8-22483 | 0 | 0 | 0900006480727e21 | ||
| DOD-2006-OS-0091-0002 | DOD | TRICARE; Reserve and Guard Family Member Benefits DOD-2006-OS-0091 | TRICARE; Reserve and Guard Family Member Benefits | Rule | 2008-08-12T04:00:00Z | 2008 | 8 | 2008-08-12T04:00:00Z | 2011-06-11T17:07:51Z | E8-18597 | 0 | 0 | 09000064806bf300 | ||
| DOD-2006-HA-0194-0003 | DOD | TRICARE; Certain Survivors of Deceased Active Duty Members; and Adoption Intermediaries DOD-2006-HA-0194 | TRICARE; Certain Survivors of Deceased Active Duty Members; and Adoption Intermediaries | Rule | 2008-05-28T04:00:00Z | 2008 | 5 | 2008-05-28T04:00:00Z | 2011-06-11T17:07:43Z | E8-11738 | 0 | 0 | 09000064806031da | ||
| DOD-2006-OS-0005-0002 | DOD | User Fees DOD-2006-OS-0005 | User Fees | Rule | 2008-05-01T04:00:00Z | 2008 | 5 | 2008-05-01T04:00:00Z | 2011-06-11T17:07:45Z | E8-09377 | 0 | 0 | 090000648053f705 | ||
| DOD-2006-OS-0136-0043 | DOD | Military Recruiting and Reserve Officer Training Corps Program Access to Institutions of Higher Education DOD-2006-OS-0136 | Military Recruiting and Reserve Officer Training Corps Program Access to Institutions of Higher Education | Rule | 2008-03-28T04:00:00Z | 2008 | 3 | 2008-03-28T04:00:00Z | 2011-06-11T17:07:55Z | E8-06536 | 0 | 0 | 090000648040d32b |
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;