documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "MSPB" and document_type = "Proposed Rule" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| MSPB-2024-0001-0001 | MSPB | Appellate Jurisdiction Update | Proposed Rule | 2024-02-06T05:00:00Z | 2024 | 2 | 2024-02-06T05:00:00Z | 2024-03-08T04:59:59Z | 2024-02-06T13:34:41Z | 2024-02528 | 0 | 0 | 09000064863e7ee4 | ||
| MSPB-2014-0001-0001 | MSPB | Practices and Procedures | Proposed Rule | 2014-04-03T04:00:00Z | 2014 | 4 | 2014-04-03T04:00:00Z | 2014-05-06T03:59:59Z | 2014-04-03T12:56:16Z | 2014-07443 | 0 | 0 | 090000648169a4b3 | ||
| MSPB-2013-0011-0001 | MSPB | Practices and Procedures | Proposed Rule | 2013-11-08T05:00:00Z | 2013 | 11 | 2013-11-08T05:00:00Z | 2013-12-10T04:59:59Z | 2013-11-08T14:55:45Z | 2013-26783 | 0 | 0 | 0900006481473820 | ||
| MSPB-2012-0003-0001 | MSPB | Practices and Procedures | Proposed Rule | 2012-06-07T04:00:00Z | 2012 | 6 | 2012-06-07T04:00:00Z | 2012-07-24T03:59:59Z | 2012-06-08T03:00:05Z | 2012-13655 | 0 | 0 | 090000648103a276 | ||
| MSPB-2010-0010-0001 | MSPB | Practices and Procedure; Board Meetings | Proposed Rule | 2010-11-18T05:00:00Z | 2010 | 11 | 2010-11-18T05:00:00Z | 2010-12-21T04:59:59Z | 2010-11-18T15:11:37Z | 2010-29019 | 0 | 0 | 0900006480b98646 | ||
| MSPB-2005-0005-0001 | MSPB | Testimony by MSPB Employees and Production of Official Records in Legal Proceedings | Proposed Rule | 2005-12-16T05:00:00Z | 2005 | 12 | 2005-12-16T05:00:00Z | 2006-02-15T04:59:59Z | 2006-09-02T20:23:01Z | 05-24117 | 0 | 0 | 09000064800f899d | ||
| MSPB-2005-0004-0001 | MSPB | Filing of Constructive Removal Complaints by Administrative Law Judges; Reopening of the Comment Period | Proposed Rule | 2005-10-26T04:00:00Z | 2005 | 10 | 2005-10-26T04:00:00Z | 2005-11-26T04:59:59Z | 2006-09-02T20:22:59Z | 05-21389 | 0 | 0 | 090000648009719c | ||
| MSPB-2005-0001-0001 | MSPB | Proposed Amendment to the Rule Regarding the Filing of Constructive Removal Complaints by Administrative Law Judges | Proposed Rule | 2005-08-16T04:00:00Z | 2005 | 8 | 2005-08-16T04:00:00Z | 2005-10-18T03:59:59Z | 2006-09-02T20:22:54Z | 05-16217 | 0 | 0 | 090000648004fb3f |
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;