documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "OPM", document_type = "Proposed Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OPM_FRDOC_0001-2367 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Prevailing Rate Systems: Redefinition of Certain Appropriated Fund Federal Wage System Wage Areas | Proposed Rule | 2022-12-30T05:00:00Z | 2022 | 12 | 2022-12-30T05:00:00Z | 2023-01-31T04:59:59Z | 2022-12-30T13:04:54Z | 2022-28318 | 0 | 0 | 0900006485564bf6 | |
| OPM_FRDOC_0001-2317 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Retirement: Members of Congress and Congressional Employees | Proposed Rule | 2022-11-16T05:00:00Z | 2022 | 11 | 2022-11-16T05:00:00Z | 2023-01-18T04:59:59Z | 2023-01-13T02:00:26Z | 2022-24875 | 0 | 0 | 09000064854bab05 | |
| OPM_FRDOC_0001-2306 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Prevailing Rate Systems: Definition of San Mateo County, CA, to a Nonappropriated Fund Federal Wage System Wage Area | Proposed Rule | 2022-09-21T04:00:00Z | 2022 | 9 | 2022-09-21T04:00:00Z | 2022-10-22T03:59:59Z | 2022-10-23T01:00:26Z | 2022-20248 | 0 | 0 | 0900006485343e29 | |
| OPM-2022-0007-0001 | OPM | General Schedule Locality Pay Areas OPM-2022-0007 | General Schedule Locality Pay Areas | Proposed Rule | 2022-09-21T04:00:00Z | 2022 | 9 | 2022-09-21T04:00:00Z | 2022-10-22T03:59:59Z | 2022-10-19T01:00:24Z | 2022-20247 | 0 | 0 | 0900006485343fc5 | |
| OPM_FRDOC_0001-2304 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Request for Information: Advanced Explanation of Benefits and Good Faith Estimate for Covered Individuals | Proposed Rule | 2022-09-16T04:00:00Z | 2022 | 9 | 2022-09-16T04:00:00Z | 2022-09-17T03:59:59Z | 2022-09-19T20:56:57Z | 2022-19798 | 0 | 0 | 090000648531747f | |
| OPM-2022-0006-0001 | OPM | Enhancing Stability and Flexibility for the Federal Long Term Care Insurance Program: Abbreviated Underwriting, Applications for FLTCIP Coverage OPM-2022-0006 | Enhancing Stability and Flexibility for the Federal Long Term Care Insurance Program: Abbreviated Underwriting, Applications for FLTCIP Coverage; Technical Corrections | Proposed Rule | 2022-06-03T04:00:00Z | 2022 | 6 | 2022-06-03T04:00:00Z | 2022-07-06T03:59:59Z | 2022-07-20T01:00:34Z | 2022-11720 | 0 | 0 | 0900006485129fbf | |
| OPM-2022-0004-0001 | OPM | Fair Chance to Compete for Jobs OPM-2022-0004 | Fair Chance to Compete for Jobs | Proposed Rule | 2022-04-27T04:00:00Z | 2022 | 4 | 2022-04-27T04:00:00Z | 2022-06-28T03:59:59Z | 2022-06-29T01:00:32Z | 2022-08975 | 0 | 0 | 0900006485039e40 | |
| OPM-2022-0002-0001 | OPM | No Fear Act OPM-2022-0002 | Elijah E. Cummings Federal Employee Anti-Discrimination Act of 2020 | Proposed Rule | 2022-01-06T05:00:00Z | 2022 | 1 | 2022-01-06T05:00:00Z | 2022-02-08T04:59:59Z | 2022-02-09T02:00:41Z | 2021-28019 | 0 | 0 | 0900006484f0b4c7 | |
| OPM-2022-0001-0001 | OPM | Probation on Initial Appointment to a Competitive Position, Performance-Based Reduction in Grade and Removal Actions and Adverse Actions OPM-2022-0001 | Probation on Initial Appointment to a Competitive Position, Performance-Based Reduction in Grade and Removal Actions and Adverse Actions | Proposed Rule | 2022-01-04T05:00:00Z | 2022 | 1 | 2022-01-04T05:00:00Z | 2022-02-04T04:59:59Z | 2022-02-06T02:00:33Z | 2021-28205 | 0 | 0 | 0900006484f071df |
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;