documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "OPM", document_type = "Proposed Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, last_modified, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OPM_FRDOC_0001-0729 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Prevailing Rate Systems: Redefinition of Minneapolis-St. Paul, MN, and Southwestern Wisconsin Appropriated Fund Federal Wage System Wage Areas | Proposed Rule | 2012-12-21T05:00:00Z | 2012 | 12 | 2012-12-21T05:00:00Z | 2013-01-23T04:59:59Z | 2012-12-21T14:34:19Z | 2012-30805 | 0 | 0 | 090000648119564c | |
| OPM-2012-0020-0001 | OPM | Patient Protection and Affordable Care Act: Establishment of Multi-State Plan Program for Affordable Insurance Exchanges OPM-2012-0020 | Patient Protection and Affordable Care Act: Establishment of Multi-State Plan Program for Affordable Insurance Exchanges | Proposed Rule | 2012-12-05T05:00:00Z | 2012 | 12 | 2012-12-05T05:00:00Z | 2013-01-05T04:59:59Z | 2013-01-11T03:01:04Z | 2012-29118 | 0 | 0 | 090000648117f787 | |
| OPM-2012-0017-0001 | OPM | Locality Pay Areas OPM-2012-0017 | General Schedule Locality Pay Areas | Proposed Rule | 2012-11-26T05:00:00Z | 2012 | 11 | 2012-11-26T05:00:00Z | 2013-01-11T04:59:59Z | 2013-01-11T03:01:04Z | 2012-28555 | 0 | 0 | 09000064811731f3 | |
| OPM_FRDOC_0001-0715 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Prevailing Rate Systems; Appropriated Fund Federal Wage System Wage Areas: Redefinition of St. Louis, MO, Southern MO, Cleveland, OH, and Pittsburgh, PA | Proposed Rule | 2012-11-15T05:00:00Z | 2012 | 11 | 2012-11-15T05:00:00Z | 2012-12-18T04:59:59Z | 2012-11-15T14:25:32Z | 2012-27671 | 0 | 0 | 090000648116833e | |
| OPM-2012-0009-0001 | OPM | Federal Employees Health Benefits Program and Federal Employees Dental and Vision Insurance Program: Expanding Coverage of Children Federal Flexible Benefits Plan, Pre-Tax Payment of Health Benefits Premiums, Conforming Amendments OPM-2012-0009 | Federal Employees Health Benefits Program and Federal Employees Dental and Vision Insurance Program: Expanding Coverage of Children Federal Flexible Benefits Plan, Pre-Tax Payment of Health Benefits Premiums, Conforming Amendments | Proposed Rule | 2012-07-20T04:00:00Z | 2012 | 7 | 2012-07-20T04:00:00Z | 2012-09-19T03:59:59Z | 2012-09-19T02:02:13Z | 2012-17537 | 0 | 0 | 09000064810a6f9f | |
| OPM_FRDOC_0001-0675 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Prevailing Rate Systems: Special Wage Schedules for Nonappropriated Fund Automotive Mechanics | Proposed Rule | 2012-06-12T04:00:00Z | 2012 | 6 | 2012-06-12T04:00:00Z | 2012-08-14T03:59:59Z | 2012-06-12T13:22:57Z | 2012-14274 | 0 | 0 | 0900006481043308 | |
| OPM-2012-0007-0001 | OPM | OPM_FRDOC_0001 OPM-2012-0007 | Excepted Service: Appointment of Persons with Intellectual Disabilities, Severe Physical Disabilities and Psychiatric Disabilities | Proposed Rule | 2012-02-07T05:00:00Z | 2012 | 2 | 2012-02-07T05:00:00Z | 2012-04-10T03:59:59Z | 2012-06-06T17:39:24Z | 2012-02660 | 0 | 0 | 0900006480faf541 |
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;