documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "MSPB", document_type = "Notice" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| MSPB-2023-0009-0001 | MSPB | Fiscal Year 2020 Service Contract Inventory | Notice | 2023-09-25T04:00:00Z | 2023 | 9 | 2023-09-25T04:00:00Z | 2023-09-25T12:09:47Z | 2023-20744 | 0 | 0 | 0900006485fefb3d | |||
| MSPB-2023-0008-0001 | MSPB | Privacy Act; Systems of Records | Notice | 2023-08-31T04:00:00Z | 2023 | 8 | 2023-08-31T04:00:00Z | 2023-10-03T03:59:59Z | 2023-08-31T12:11:52Z | 2023-18848 | 0 | 0 | 0900006485f1e80a | ||
| MSPB-2023-0007-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-08-09T04:00:00Z | 2023 | 8 | 2023-08-09T04:00:00Z | 2023-09-09T03:59:59Z | 2023-08-09T12:17:47Z | 2023-17082 | 0 | 0 | 0900006485e04839 | ||
| MSPB-2023-0005-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Generic Clearance for the Collection of Qualitative Feedback on Agency Service Delivery | Notice | 2023-06-08T04:00:00Z | 2023 | 6 | 2023-06-08T04:00:00Z | 2023-07-11T03:59:59Z | 2023-06-08T12:27:52Z | 2023-12215 | 0 | 0 | 0900006485ade97e | ||
| MSPB-2023-0006-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-06-08T04:00:00Z | 2023 | 6 | 2023-06-08T04:00:00Z | 2023-07-11T03:59:59Z | 2023-06-08T12:46:19Z | 2023-12213 | 0 | 0 | 0900006485adeaad | ||
| MSPB-2023-0004-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-04-25T04:00:00Z | 2023 | 4 | 2023-04-25T04:00:00Z | 2023-06-27T03:59:59Z | 2023-04-25T12:29:44Z | 2023-08650 | 0 | 0 | 0900006485984387 | ||
| MSPB-2023-0003-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2023-03-28T04:00:00Z | 2023 | 3 | 2023-03-28T04:00:00Z | 2023-05-31T03:59:59Z | 2023-03-28T18:48:55Z | 2023-06356 | 0 | 0 | 090000648587dbdb | ||
| MSPB-2023-0002-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Generic Clearance for the Collection of Qualitative Feedback on Agency Service Delivery | Notice | 2023-03-28T04:00:00Z | 2023 | 3 | 2023-03-28T04:00:00Z | 2023-05-31T03:59:59Z | 2023-03-28T18:47:55Z | 2023-06348 | 0 | 0 | 090000648587daa3 |
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;