documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "OPM", document_type = "Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-1518 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Program Fraud Civil Remedies: Civil Monetary Penalty Inflation Adjustment | Rule | 2019-10-01T04:00:00Z | 2019 | 10 | 2019-10-01T04:00:00Z | 2019-10-01T11:53:38Z | 2019-21132 | 0 | 0 | 0900006483ff2246 | ||
| OPM_FRDOC_0001-1517 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Prevailing Rate Systems: Redefinition of Certain Nonappropriated Fund Federal Wage System Wage Areas | Rule | 2019-09-24T04:00:00Z | 2019 | 9 | 2019-09-24T04:00:00Z | 2019-09-24T11:41:54Z | 2019-20144 | 0 | 0 | 0900006483fbc523 | ||
| OPM_FRDOC_0001-1516 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Federal Employees' Retirement System: Present Value Conversion Factors for Spouses of Deceased Separated Employees | Rule | 2019-09-23T04:00:00Z | 2019 | 9 | 2019-09-23T04:00:00Z | 2019-09-23T11:45:24Z | 2019-20124 | 0 | 0 | 0900006483fab3a0 | ||
| OPM_FRDOC_0001-1502 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Prevailing Rate Systems: North American Industry Classification System Based Federal Wage System Wage Surveys | Rule | 2019-07-30T04:00:00Z | 2019 | 7 | 2019-07-30T04:00:00Z | 2019-07-30T12:09:12Z | 2019-16129 | 0 | 0 | 0900006483dcc4ee | ||
| OPM_FRDOC_0001-1488 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Federal Employees Dental and Vision Insurance Program: Extension of Eligibility to Certain TRICARE-Eligible Individuals; Effective Date of Enrollment | Rule | 2019-06-07T04:00:00Z | 2019 | 6 | 2019-06-07T04:00:00Z | 2019-06-07T11:57:31Z | 2019-11939 | 0 | 0 | 0900006483cf5b35 | ||
| OPM_FRDOC_0001-1480 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Prevailing Rate Systems: Special Appropriated Fund Wage Schedules for U.S. Insular Areas | Rule | 2019-05-20T04:00:00Z | 2019 | 5 | 2019-05-20T04:00:00Z | 2019-05-20T11:50:38Z | 2019-10335 | 0 | 0 | 0900006483ca0d2b | ||
| OPM_FRDOC_0001-1476 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Compensatory Time Off for Religious Observances and Other Miscellaneous Changes | Rule | 2019-04-29T04:00:00Z | 2019 | 4 | 2019-04-29T04:00:00Z | 2019-04-29T12:17:56Z | 2019-08533 | 0 | 0 | 0900006483c0fa4c | ||
| OPM_FRDOC_0001-1474 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Certifying the Use of a Merit Personnel System as Required by the Intergovernmental Personnel Act | Rule | 2019-04-19T04:00:00Z | 2019 | 4 | 2019-04-19T04:00:00Z | 2019-04-19T11:58:58Z | 2019-07312 | 0 | 0 | 0900006483bc4b29 | ||
| OPM_FRDOC_0001-1468 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Examining System | Rule | 2019-04-03T04:00:00Z | 2019 | 4 | 2019-04-03T04:00:00Z | 2019-04-03T11:47:53Z | 2019-06396 | 0 | 0 | 0900006483b5e582 | ||
| OPM_FRDOC_0001-1437 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Federal Employees Dental and Vision Insurance Program: Extension of Eligibility to Certain TRICARE-Eligible Individuals; Effective Date of Enrollment; Correction | Rule | 2019-02-05T05:00:00Z | 2019 | 2 | 2019-02-05T05:00:00Z | 2019-02-05T13:12:21Z | 2019-00799 | 0 | 0 | 0900006483a3e7cf |
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;