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 = "Rule" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| OPM_FRDOC_0001-2346 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | General Schedule Locality Pay Areas; Correction | Rule | 2022-12-13T05:00:00Z | 2022 | 12 | 2022-12-13T05:00:00Z | 2022-12-13T12:38:23Z | 2022-26751 | 0 | 0 | 0900006485533110 | ||
| OPM_FRDOC_0001-2341 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | General Schedule Locality Pay Areas | Rule | 2022-12-05T05:00:00Z | 2022 | 12 | 2022-12-05T05:00:00Z | 2022-12-05T12:45:16Z | 2022-26427 | 0 | 0 | 090000648551966b | ||
| OPM_FRDOC_0001-2334 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Temporary and Term Employment | Rule | 2022-12-01T05:00:00Z | 2022 | 12 | 2022-12-01T05:00:00Z | 2022-12-01T12:46:41Z | 2022-26221 | 0 | 0 | 090000648550e839 | ||
| OPM_FRDOC_0001-2318 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Enhancing Stability and Flexibility for the Federal Long Term Care Insurance Program: Abbreviated Underwriting, Applications for Coverage, and Technical Corrections | Rule | 2022-11-16T05:00:00Z | 2022 | 11 | 2022-11-16T05:00:00Z | 2022-11-16T12:38:36Z | 2022-24849 | 0 | 0 | 09000064854bb027 | ||
| OPM-2022-0001-0033 | 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: Competitive Position, Performance-Based Reduction in Grade and Removal Actions and Adverse Actions | Rule | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T05:00:00Z | 2026-02-21T07:05:35Z | 2022-24309 | 0 | 0 | 09000064854a2a25 | ||
| OPM_FRDOC_0001-2256 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Access to Federal Employees Health Benefits for Employees of Certain Tribally Controlled Schools | Rule | 2022-04-13T04:00:00Z | 2022 | 4 | 2022-04-13T04:00:00Z | 2022-04-13T12:11:14Z | 2022-07802 | 0 | 0 | 0900006485014ee9 | ||
| OPM_FRDOC_0001-2253 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Program Fraud Civil Remedies: Civil Monetary Penalty Inflation Adjustment | Rule | 2022-03-22T04:00:00Z | 2022 | 3 | 2022-03-22T04:00:00Z | 2022-03-22T12:12:58Z | 2022-05700 | 0 | 0 | 0900006484fd810a |
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;