documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "MSPB" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2011-0012-0001 | MSPB | Oral Arguments | Notice | 2011-11-29T05:00:00Z | 2011 | 11 | 2011-11-29T05:00:00Z | 2011-11-29T13:55:13Z | 2011-30659 | 0 | 0 | 0900006480f759cb | |||
| MSPB-2011-0011-0001 | MSPB | Mandatory Electronic Filing for Agencies and Attorneys, Washington Regional and Denver Field Office | Rule | 2011-10-13T04:00:00Z | 2011 | 10 | 2011-10-13T04:00:00Z | 2011-10-13T12:57:45Z | 2011-26315 | 0 | 0 | 0900006480f51bac | |||
| MSPB-2011-0010-0001 | MSPB | Practices and Procedures | Rule | 2011-09-30T04:00:00Z | 2011 | 9 | 2011-09-30T04:00:00Z | 2011-09-30T12:36:51Z | 2011-25174 | 0 | 0 | 0900006480f45b27 | |||
| MSPB-2011-0009-0001 | MSPB | Opportunities To File Amicus Briefs | Notice | 2011-09-23T04:00:00Z | 2011 | 9 | 2011-09-23T04:00:00Z | 2011-09-23T12:17:49Z | 2011-24439 | 0 | 0 | 0900006480f28545 | |||
| MSPB-2011-0008-0001 | MSPB | Opportunity to File Amicus Briefs | Notice | 2011-07-25T04:00:00Z | 2011 | 7 | 2011-07-25T04:00:00Z | 2011-07-25T13:35:20Z | 2011-18647 | 0 | 0 | 0900006480eca23d | |||
| MSPB-2011-0007-0001 | MSPB | Fiscal Year 2010 Service Contract Inventory; Availability | Notice | 2011-07-18T04:00:00Z | 2011 | 7 | 2011-07-18T04:00:00Z | 2011-07-18T14:35:25Z | 2011-17976 | 0 | 0 | 0900006480ec44b8 | |||
| MSPB-2011-0006-0001 | MSPB | Opportunity To File Amicus Briefs in the Matter of Michael B. Graves v. Department of Veterans Affairs | Notice | 2011-06-03T04:00:00Z | 2011 | 6 | 2011-06-03T04:00:00Z | 2011-06-03T13:14:57Z | 2011-13737 | 0 | 0 | 0900006480e3a7ec | |||
| MSPB-2011-0004-0001 | MSPB | Performance Review Board Membership | Notice | 2011-03-17T04:00:00Z | 2011 | 3 | 2011-03-17T04:00:00Z | 2011-03-17T12:52:44Z | 2011-06239 | 0 | 0 | 0900006480c09b3c | |||
| MSPB-2011-0003-0001 | MSPB | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2011-03-11T05:00:00Z | 2011 | 3 | 2011-03-11T05:00:00Z | 2011-04-12T03:59:59Z | 2011-03-11T14:10:41Z | 2011-05589 | 0 | 0 | 0900006480c05cd4 | ||
| MSPB-2011-0002-0001 | MSPB | Practices and Procedures, Board Meetings | Rule | 2011-02-28T05:00:00Z | 2011 | 2 | 2011-02-28T05:00:00Z | 2011-02-28T13:55:03Z | 2011-04317 | 0 | 0 | 0900006480bfa5db | |||
| MSPB-2011-0001-0001 | MSPB | Opportunity To File Amicus Briefs in Matter of Jeffrey Denton v. Department of Agriculture | Notice | 2011-01-13T05:00:00Z | 2011 | 1 | 2011-01-13T05:00:00Z | 2011-01-13T14:19:59Z | 2011-00633 | 0 | 0 | 0900006480bca35f |
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;