documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "MSPB" and posted_year = 2007 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-2007-0005-0001 | MSPB | Interim Regulatory Changes Regarding Department of Homeland Security Personnel System | Rule | 2007-10-05T04:00:00Z | 2007 | 10 | 2007-10-05T04:00:00Z | 2007-11-06T04:59:59Z | 2007-11-05T12:10:21Z | E7-19574 | 0 | 0 | 09000064802f8b36 | ||
| MSPB-2007-0004-0001 | MSPB | Membership of the Merit Systems Protection Boards Senior Executive Service; Performance Review Board | Notice | 2007-10-02T04:00:00Z | 2007 | 10 | 2007-10-02T04:00:00Z | 2007-10-02T11:33:56Z | E7-19347 | 0 | 0 | 09000064802f29e2 | |||
| MSPB-2007-0003-0001 | MSPB | Practices and Procedures | Rule | 2007-07-24T04:00:00Z | 2007 | 7 | 2007-07-24T04:00:00Z | 2007-07-24T11:15:50Z | E7-14293 | 0 | 0 | 090000648026d170 | |||
| MSPB-2007-0002-0001 | MSPB | Supplemental Standards of Ethical Conduct for Employees of the Merit Systems Protection Board | Rule | 2007-05-10T04:00:00Z | 2007 | 5 | 2007-05-10T04:00:00Z | 2007-07-10T03:59:59Z | 2011-06-11T17:46:45Z | E7-09035 | 0 | 0 | 090000648023981f | ||
| MSPB-2007-0001-0001 | MSPB | Agency Information Collection Activities; Proposed Collection | Notice | 2007-03-13T04:00:00Z | 2007 | 3 | 2007-03-13T04:00:00Z | 2007-03-13T11:14:40Z | E7-04465 | 0 | 0 | 0900006480213415 |
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;