documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "OPM-2025-0009" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2025-0009-0028 | OPM | Meetings: Federal Prevailing Rate Advisory Committee (2020-2025) OPM-2025-0009 | Meetings: Federal Prevailing Rate Advisory Committee | Notice | 2023-11-17T00:00:00Z | 2023 | 11 | 2023-11-17T00:00:00Z | 2025-05-24T00:42:40Z | 2023-25389 | 0 | 0 | 090000648628ca9a | ||
| OPM-2025-0009-0027 | OPM | Meetings: Federal Prevailing Rate Advisory Committee (2020-2025) OPM-2025-0009 | Meetings: Federal Prevailing Rate Advisory Committee | Notice | 2023-10-30T00:00:00Z | 2023 | 10 | 2023-10-30T00:00:00Z | 2025-05-24T00:42:21Z | 2023-23837 | 0 | 0 | 09000064861845cb | ||
| OPM-2025-0009-0026 | OPM | Meetings: Federal Prevailing Rate Advisory Committee (2020-2025) OPM-2025-0009 | Meetings: Federal Prevailing Rate Advisory Committee | Notice | 2023-09-29T00:00:00Z | 2023 | 9 | 2023-09-29T00:00:00Z | 2025-05-24T00:41:54Z | 2023-21370 | 0 | 0 | 090000648600f3cc | ||
| OPM-2025-0009-0025 | OPM | Meetings: Federal Prevailing Rate Advisory Committee (2020-2025) OPM-2025-0009 | Meetings: Federal Prevailing Rate Advisory Committee | Notice | 2023-08-25T00:00:00Z | 2023 | 8 | 2023-08-25T00:00:00Z | 2025-05-24T00:41:31Z | 2023-18358 | 0 | 0 | 0900006485eea2db | ||
| OPM-2025-0009-0024 | OPM | Meetings: Federal Prevailing Rate Advisory Committee (2020-2025) OPM-2025-0009 | Meetings: Federal Prevailing Rate Advisory Committee | Notice | 2023-06-30T00:00:00Z | 2023 | 6 | 2023-06-30T00:00:00Z | 2025-05-24T00:41:12Z | 2023-13986 | 0 | 0 | 0900006485c21c33 | ||
| OPM-2025-0009-0023 | OPM | Meetings: Federal Prevailing Rate Advisory Committee (2020-2025) OPM-2025-0009 | Meetings: Federal Prevailing Rate Advisory Committee | Notice | 2023-05-02T00:00:00Z | 2023 | 5 | 2023-05-02T00:00:00Z | 2025-05-24T00:40:49Z | 2023-09215 | 0 | 0 | 09000064859b7a21 | ||
| OPM-2025-0009-0022 | OPM | Meetings: Federal Prevailing Rate Advisory Committee (2020-2025) OPM-2025-0009 | Meetings: Federal Prevailing Rate Advisory Committee | Notice | 2023-03-21T00:00:00Z | 2023 | 3 | 2023-03-21T00:00:00Z | 2025-05-24T00:40:27Z | 2023-05768 | 0 | 0 | 090000648580f2dc | ||
| OPM-2025-0009-0021 | OPM | Meetings: Federal Prevailing Rate Advisory Committee (2020-2025) OPM-2025-0009 | Meetings: Federal Prevailing Rate Advisory Committee | Notice | 2023-01-25T00:00:00Z | 2023 | 1 | 2023-01-25T00:00:00Z | 2025-05-24T00:40:02Z | 2023-01457 | 0 | 0 | 0900006485608b79 |
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;