documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "MSPB" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| MSPB-2012-0010-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2012-12-03T05:00:00Z | 2012 | 12 | 2012-12-03T05:00:00Z | 2013-02-02T04:59:59Z | 2012-12-03T14:26:21Z | 2012-29072 | 0 | 0 | 090000648117c85b | ||
| MSPB-2012-0009-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2012-11-19T05:00:00Z | 2012 | 11 | 2012-11-19T05:00:00Z | 2012-11-24T04:59:59Z | 2012-11-19T14:19:49Z | 2012-27995 | 0 | 0 | 090000648116c45d | ||
| MSPB-2012-0008-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Emergency Reinstatement | Notice | 2012-10-29T04:00:00Z | 2012 | 10 | 2012-10-29T04:00:00Z | 2012-11-06T04:59:59Z | 2012-10-29T12:40:08Z | 2012-26534 | 0 | 0 | 090000648115439e | ||
| MSPB-2012-0007-0001 | MSPB | Privacy Act; Systems of Records | Notice | 2012-10-25T04:00:00Z | 2012 | 10 | 2012-10-25T04:00:00Z | 2012-11-27T04:59:59Z | 2012-10-25T13:16:49Z | 2012-26241 | 0 | 0 | 09000064811502d8 | ||
| MSPB-2012-0006-0001 | MSPB | Practices and Procedures | Rule | 2012-10-12T04:00:00Z | 2012 | 10 | 2012-10-12T04:00:00Z | 2012-10-12T12:37:09Z | 2012-24130 | 0 | 0 | 090000648113e3b4 | |||
| MSPB-2012-0005-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2012-08-03T04:00:00Z | 2012 | 8 | 2012-08-03T04:00:00Z | 2012-09-05T03:59:59Z | 2012-08-03T12:49:46Z | 2012-18939 | 0 | 0 | 09000064810c08e8 | ||
| MSPB-2012-0004-0001 | MSPB | Performance Review Board Membership | Notice | 2012-06-28T04:00:00Z | 2012 | 6 | 2012-06-28T04:00:00Z | 2012-06-28T12:41:45Z | 2012-15802 | 0 | 0 | 090000648106d0f3 | |||
| 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-2012-0002-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2012-04-30T04:00:00Z | 2012 | 4 | 2012-04-30T04:00:00Z | 2012-06-30T03:59:59Z | 2012-04-30T12:35:46Z | 2012-10349 | 0 | 0 | 0900006481000d8d | ||
| MSPB-2012-0001-0001 | MSPB | Privacy Act; Termination of Three Systems of Records | Notice | 2012-04-20T04:00:00Z | 2012 | 4 | 2012-04-20T04:00:00Z | 2012-04-20T12:55:34Z | 2012-09530 | 0 | 0 | 0900006480ff4ce2 |
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;