documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "OMB_FRDOC_0001" and posted_year = 2012 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OMB_FRDOC_0001-0106 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Calendar Year 2012 Cost of Outpatient Medical and Dental Services Furnished by Department of Defense Medical Treatment Facilities: Certain Rates Regarding Recovery From Tortiously Liable Third Persons | Notice | 2012-11-19T05:00:00Z | 2012 | 11 | 2012-11-19T05:00:00Z | 2012-11-19T14:19:37Z | 2012-27990 | 0 | 0 | 090000648116c45a | ||
| OMB_FRDOC_0001-0105 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Sequestration Update Report to the President and Congress for Fiscal Year 2013 | Notice | 2012-08-27T04:00:00Z | 2012 | 8 | 2012-08-27T04:00:00Z | 2012-08-27T15:25:57Z | 2012-20939 | 0 | 0 | 09000064810f24dc | ||
| OMB_FRDOC_0001-0104 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | OMB Circular A-133 Compliance Supplement; Availability: Audits of States, Local Governments, and Non-Profit Organizations | Notice | 2012-08-01T04:00:00Z | 2012 | 8 | 2012-08-01T04:00:00Z | 2012-11-01T03:59:59Z | 2012-08-01T12:46:34Z | 2012-18808 | 0 | 0 | 09000064810bc3f1 | |
| OMB_FRDOC_0001-0098 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Compliance Assistance Resources and Points of Contact Available to Small Businesses | Notice | 2012-03-06T05:00:00Z | 2012 | 3 | 2012-03-06T05:00:00Z | 2012-03-06T14:32:10Z | 2012-05196 | 0 | 0 | 0900006480fcfcdb | ||
| OMB_FRDOC_0001-0096 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | 2011 Statutory Pay-As-You-Go Act Annual Report | Notice | 2012-02-08T05:00:00Z | 2012 | 2 | 2012-02-08T05:00:00Z | 2012-02-08T13:44:21Z | 2012-01871 | 0 | 0 | 0900006480fb02b1 | ||
| OMB_FRDOC_0001-0095 | OMB | Recently Posted OMB Rules and Notices. OMB_FRDOC_0001 | Discount Rates for Cost-Effectiveness Analysis of Federal Programs | Notice | 2012-01-11T05:00:00Z | 2012 | 1 | 2012-01-11T05:00:00Z | 2012-01-11T14:11:01Z | 2012-00308 | 0 | 0 | 0900006480f927c1 |
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;