documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "OPM", document_type = "Proposed Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, last_modified, 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-2005-0024-0002 | OPM | Examining System and Programs for Specific Positions and Examinations (Miscellaneous) OPM-2005-0024 | Examining System and Programs for Specific Positions and Examinations (Miscellaneous) | Proposed Rule | 2005-12-21T05:00:00Z | 2005 | 12 | 2005-12-21T05:00:00Z | 2006-02-22T04:59:59Z | 2011-06-11T17:53:31Z | 05-24286 | 0 | 0 | 09000064800fcc61 | |
| OPM-2005-0024-0001 | OPM | Examining System and Programs for Specific Positions and Examinations (Miscellaneous) OPM-2005-0024 | Examining System and Programs for Specific Positions and Examinations (Miscellaneous) | Proposed Rule | 2005-12-13T05:00:00Z | 2005 | 12 | 2005-12-13T05:00:00Z | 2006-02-14T04:59:59Z | 2011-06-11T17:53:31Z | 05-23930 | 0 | 0 | 09000064800f4c15 | |
| OPM-2005-0019-0001 | OPM | Prevailing Rate Systems; North American Industry Classification System Based Federal Wage System Wage Surveys OPM-2005-0019 | Prevailing Rate Systems; North American Industry Classification System Based Federal Wage System Wage Surveys | Proposed Rule | 2005-11-16T05:00:00Z | 2005 | 11 | 2005-11-16T05:00:00Z | 2005-12-17T04:59:59Z | 2011-06-11T17:53:30Z | 05-22742 | 0 | 0 | 09000064800a0a71 | |
| OPM-2005-0005-0001 | OPM | Personnel Management In Agencies--Employee Surveys OPM-2005-0005 | Personnel Management In Agencies--Employee Surveys | Proposed Rule | 2005-09-16T04:00:00Z | 2005 | 9 | 2005-09-16T04:00:00Z | 2005-10-18T03:59:59Z | 2011-06-11T17:53:29Z | 05-18374 | 0 | 0 | 0900006480050161 | |
| OPM-2005-0003-0001 | OPM | Prevailing Rate Systems; Redefinition of the Adams-Denver, CO; Nonappropriated Fund Wage Area OPM-2005-0003 | Prevailing Rate Systems; Redefinition of the Adams-Denver, CO; Nonappropriated Fund Wage Area | Proposed Rule | 2005-08-22T04:00:00Z | 2005 | 8 | 2005-08-22T04:00:00Z | 2005-09-22T03:59:59Z | 2006-12-08T17:51:14Z | 05-16593 | 0 | 0 | 09000064800500a7 | |
| OPM-2005-0004-0001 | OPM | Cost-of-Living Allowances (Nonforeign Areas); COLA Rate Changes OPM-2005-0004 | Cost-of-Living Allowances (Nonforeign Areas); COLA Rate Changes | Proposed Rule | 2005-08-04T04:00:00Z | 2005 | 8 | 2005-08-04T04:00:00Z | 2005-10-04T03:59:59Z | 2011-06-11T17:53:28Z | 05-15097 | 0 | 0 | 090000648005015a |
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;