documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "MSPB", document_type = "Notice" and posted_year = 2010 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-2010-0011-0001 | MSPB | Meetings; Sunshine Act | Notice | 2010-11-26T05:00:00Z | 2010 | 11 | 2010-11-26T05:00:00Z | 2011-01-01T04:59:59Z | 2010-11-26T13:52:27Z | 2010-29888 | 0 | 0 | 0900006480ba42c1 | ||
| MSPB-2010-0009-0001 | MSPB | Oral Argument | Notice | 2010-10-12T04:00:00Z | 2010 | 10 | 2010-10-12T04:00:00Z | 2010-10-12T13:35:59Z | 2010-25552 | 0 | 0 | 0900006480b6cd86 | |||
| MSPB-2010-0007-0001 | MSPB | Oral Arguments | Notice | 2010-09-15T04:00:00Z | 2010 | 9 | 2010-09-15T04:00:00Z | 2010-09-15T12:57:00Z | 2010-22921 | 0 | 0 | 0900006480b4f5d0 | |||
| MSPB-2010-0006-0001 | MSPB | Extension of Time in which to File Amicus Briefs: Hyginus U. Aguzie v. Office of Personnel Management | Notice | 2010-05-25T04:00:00Z | 2010 | 5 | 2010-05-25T04:00:00Z | 2010-05-25T13:17:58Z | 2010-12444 | 0 | 0 | 0900006480af3a7c | |||
| MSPB-2010-0005-0001 | MSPB | Opportunity to File Amicus Brief | Notice | 2010-05-10T04:00:00Z | 2010 | 5 | 2010-05-10T04:00:00Z | 2010-06-12T03:59:59Z | 2010-05-10T13:26:09Z | 2010-10988 | 0 | 0 | 0900006480aea2ad | ||
| MSPB-2010-0004-0001 | MSPB | Publication of Open Government Directive; Solicitation of Public Comment | Notice | 2010-04-27T04:00:00Z | 2010 | 4 | 2010-04-27T04:00:00Z | 2010-05-28T03:59:59Z | 2010-04-27T13:35:35Z | 2010-09706 | 0 | 0 | 0900006480ae1afd | ||
| MSPB-2010-0003-0001 | MSPB | Opportunity to File Amicus Briefs: Hyginus U. Aguzie v. Office of Personnel Management | Notice | 2010-04-16T04:00:00Z | 2010 | 4 | 2010-04-16T04:00:00Z | 2010-05-25T03:59:59Z | 2010-04-16T16:44:06Z | 2010-08682 | 0 | 0 | 0900006480ad91ae | ||
| MSPB-2010-0002-0001 | MSPB | Opportunity to File Amicus Briefs: Conyers v. Department of Defense and Northover v. Department of Defense | Notice | 2010-02-10T05:00:00Z | 2010 | 2 | 2010-02-10T05:00:00Z | 2010-03-02T04:59:59Z | 2010-02-10T15:03:38Z | 2010-02890 | 0 | 0 | 0900006480a90c12 | ||
| MSPB-2010-0001-0001 | MSPB | Merit Systems Protection Board (MSPB) Provides Notice of Opportunity To File Amicus Briefs | Notice | 2010-01-25T05:00:00Z | 2010 | 1 | 2010-01-25T05:00:00Z | 2010-02-17T04:59:59Z | 2010-01-25T14:41:16Z | 2010-01378 | 0 | 0 | 0900006480a830c0 |
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;