documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "MSPB", document_type = "Notice" and posted_year = 2014 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2014-0009-0001 | MSPB | Meetings: Special Panel, Oral Argument, Reynaldo Alvara v. Department of Homeland Security | Notice | 2014-09-05T04:00:00Z | 2014 | 9 | 2014-09-05T04:00:00Z | 2014-09-05T12:57:28Z | 2014-21237 | 0 | 0 | 090000648185e58d | |||
| MSPB-2014-0006-0001 | MSPB | Meetings; Sunshine Act | Notice | 2014-08-14T04:00:00Z | 2014 | 8 | 2014-08-14T04:00:00Z | 2014-08-14T12:36:12Z | 2014-19351 | 0 | 0 | 0900006481822123 | |||
| MSPB-2014-0005-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Generic Clearance for the Collection of Qualitative Feedback on Agency Service Delivery | Notice | 2014-07-17T04:00:00Z | 2014 | 7 | 2014-07-17T04:00:00Z | 2014-08-19T03:59:59Z | 2014-07-17T12:40:21Z | 2014-16762 | 0 | 0 | 09000064817b3c0a | ||
| MSPB-2014-0004-0001 | MSPB | Requests for Information: Attorneys Interested in Representing Appellate Clients Pro Bono | Notice | 2014-06-13T04:00:00Z | 2014 | 6 | 2014-06-13T04:00:00Z | 2014-06-13T13:08:16Z | 2014-13860 | 0 | 0 | 0900006481745d66 | |||
| MSPB-2014-0003-0001 | MSPB | Merit Systems Studies | Notice | 2014-05-06T04:00:00Z | 2014 | 5 | 2014-05-06T04:00:00Z | 2014-05-06T13:19:26Z | 2014-10333 | 0 | 0 | 09000064816e4004 | |||
| MSPB-2014-0002-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Generic Clearance for the Collection of Qualitative Feedback on Agency Service Delivery | Notice | 2014-04-10T04:00:00Z | 2014 | 4 | 2014-04-10T04:00:00Z | 2014-06-10T03:59:59Z | 2014-04-10T12:41:57Z | 2014-08023 | 0 | 0 | 09000064816ad774 |
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;