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 = "Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_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-1431 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Veterans' Preference | Rule | 2018-12-07T05:00:00Z | 2018 | 12 | 2018-12-07T05:00:00Z | 2018-12-07T12:51:53Z | 2018-26265 | 0 | 0 | 090000648395875e | ||
| OPM_FRDOC_0001-1432 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | General Schedule Locality Pay Areas | Rule | 2018-12-07T05:00:00Z | 2018 | 12 | 2018-12-07T05:00:00Z | 2018-12-07T12:52:11Z | 2018-26519 | 0 | 0 | 090000648395878d | ||
| OPM_FRDOC_0001-1423 | 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 | 2018-11-19T05:00:00Z | 2018 | 11 | 2018-11-19T05:00:00Z | 2019-01-19T04:59:59Z | 2018-11-19T12:49:19Z | 2018-25114 | 0 | 0 | 09000064838e6871 | |
| OPM_FRDOC_0001-1420 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Personnel Management in Agencies | Rule | 2018-11-09T05:00:00Z | 2018 | 11 | 2018-11-09T05:00:00Z | 2018-11-09T12:56:42Z | 2018-24501 | 0 | 0 | 09000064838bb3c5 | ||
| OPM_FRDOC_0001-1405 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Program Fraud Civil Remedies: Civil Monetary Penalty Inflation Adjustment | Rule | 2018-07-24T04:00:00Z | 2018 | 7 | 2018-07-24T04:00:00Z | 2018-07-24T12:13:35Z | 2018-15764 | 0 | 0 | 0900006483543cfc | ||
| OPM_FRDOC_0001-1404 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Federal Employees Health Benefits Program and Federal Employees Dental and Vision Insurance Program: Expiration of Coverage of Children of Same-Sex Domestic Partners; Federal Flexible Benefits Plan: Pre-Tax Payment of Health Benefits Premiums | Rule | 2018-07-12T04:00:00Z | 2018 | 7 | 2018-07-12T04:00:00Z | 2018-07-12T16:24:26Z | 2018-14938 | 0 | 0 | 09000064834d74a5 | ||
| OPM_FRDOC_0001-1393 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Federal Employees Health Benefits Program Flexibilities | Rule | 2018-04-27T04:00:00Z | 2018 | 4 | 2018-04-27T04:00:00Z | 2018-04-27T12:24:13Z | 2018-08933 | 0 | 0 | 09000064831ea873 | ||
| OPM-2017-0005-0092 | OPM | Administrative Leave, Investigative Leave, Notice Leave, and Weather and Safety Leave Proposed Rule OPM-2017-0005 | Weather and Safety Leave | Rule | 2018-04-10T00:00:00Z | 2018 | 4 | 2018-04-10T00:00:00Z | 2025-05-27T19:35:42Z | 2018-07348 | 0 | 0 | 09000064830f7b40 | ||
| OPM_FRDOC_0001-1368 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Federal Employees Health Benefits Program: Removal of Eligible and Ineligible Individuals from Existing Enrollments | Rule | 2018-01-23T05:00:00Z | 2018 | 1 | 2018-01-23T05:00:00Z | 2018-01-23T12:37:07Z | 2018-01174 | 0 | 0 | 0900006482e4a999 |
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;