documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "OPM", document_type = "Proposed Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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-2202 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Federal Employees Dental and Vision Insurance Program: Extension of Eligibility to Certain Employees on Temporary Appointments and Certain Employees on Seasonal and Intermittent Schedules; Enrollment Clarifications and Qualifying Life Events | Proposed Rule | 2021-10-19T04:00:00Z | 2021 | 10 | 2021-10-19T04:00:00Z | 2021-12-21T04:59:59Z | 2021-12-20T02:00:44Z | 2021-22281 | 0 | 0 | 0900006484dcb12c | |
| OPM_FRDOC_0001-2193 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Requirements Related to Air Ambulance Services, Agent and Broker Disclosures, and Provider Enforcement | Proposed Rule | 2021-09-16T04:00:00Z | 2021 | 9 | 2021-09-15T04:00:00Z | 2021-09-16T03:59:59Z | 2021-09-16T16:28:07Z | 2021-19797 | 0 | 0 | 0900006484d83e21 | |
| OPM-2021-0005-0001 | OPM | FERS Present Value Conversion Factors OPM-2021-0005 | Federal Employees' Retirement System: Present Value Conversion Factors for Spouses of Deceased Separated Employees | Proposed Rule | 2021-06-30T04:00:00Z | 2021 | 6 | 2021-06-30T04:00:00Z | 2021-08-31T03:59:59Z | 2021-07-15T19:16:18Z | 2021-13774 | 0 | 0 | 0900006484bc29fa | |
| OPM_FRDOC_0001-2147 | OPM | Recently Posted OPM Rules and Notices. OPM_FRDOC_0001 | Request for Information: Reporting on Pharmacy Benefits and Prescription Drug Costs | Proposed Rule | 2021-06-23T04:00:00Z | 2021 | 6 | 2021-06-23T20:13:32Z | 2021-13138 | 0 | 0 | 0900006484ba43bf | |||
| OPM-2021-0003-0001 | OPM | Representative Payees Under the Civil Service Retirement System and Federal Employees’ Retirement System OPM-2021-0003 | Representative Payees Under the Civil Service Retirement System and Federal Employees' Retirement System | Proposed Rule | 2021-03-08T05:00:00Z | 2021 | 3 | 2021-03-08T05:00:00Z | 2021-05-08T03:59:59Z | 2021-05-08T23:12:50Z | 2021-04628 | 0 | 0 | 0900006484a62975 |
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;