documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "PBGC", document_type = "Notice" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| PBGC_FRDOC_0001-0345 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2016-11-22T05:00:00Z | 2016 | 11 | 2016-11-22T05:00:00Z | 2017-01-24T04:59:59Z | 2016-11-22T12:20:43Z | 2016-27866 | 0 | 0 | 09000064823ad43c | |
| PBGC_FRDOC_0001-0338 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Privacy Act; Systems of Records | Notice | 2016-09-14T04:00:00Z | 2016 | 9 | 2016-09-14T04:00:00Z | 2016-10-15T03:59:59Z | 2016-09-14T11:49:36Z | 2016-21975 | 0 | 0 | 090000648220a199 | |
| PBGC_FRDOC_0001-0334 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | 2016-07-19T04:00:00Z | 2016 | 7 | 2016-07-19T04:00:00Z | 2016-08-19T03:59:59Z | 2016-07-19T12:01:46Z | 2016-16950 | 0 | 0 | 09000064820c9e3c | |
| PBGC_FRDOC_0001-0328 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Administrative Appeals | Notice | 2016-05-09T04:00:00Z | 2016 | 5 | 2016-05-09T04:00:00Z | 2016-06-09T03:59:59Z | 2016-05-09T12:56:04Z | 2016-10813 | 0 | 0 | 0900006481fb6f2d | |
| PBGC_FRDOC_0001-0325 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Filings for Reconsideration | Notice | 2016-03-31T04:00:00Z | 2016 | 3 | 2016-03-31T04:00:00Z | 2016-06-01T03:59:59Z | 2016-03-31T12:23:11Z | 2016-07285 | 0 | 0 | 0900006481eed88a | |
| PBGC-2016-0001-0001 | PBGC | Pendency of Request for Approval of Alternative Arbitration Procedure; American Arbitration Association PBGC-2016-0001 | Pendency of Request for Approval of Alternative Arbitration Procedure; American Arbitration Association | Notice | 2016-03-23T04:00:00Z | 2016 | 3 | 2016-03-23T04:00:00Z | 2016-05-24T03:59:59Z | 2016-05-24T04:00:11Z | 2016-06565 | 0 | 0 | 0900006481ed9893 | |
| PBGC_FRDOC_0001-0321 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Administrative Appeals | Notice | 2016-02-29T05:00:00Z | 2016 | 2 | 2016-02-29T05:00:00Z | 2016-04-30T03:59:59Z | 2016-02-29T15:22:49Z | 2016-04268 | 0 | 0 | 0900006481e8f471 | |
| PBGC_FRDOC_0001-0318 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Privacy Act; Systems of Records | Notice | 2016-01-06T05:00:00Z | 2016 | 1 | 2016-01-06T05:00:00Z | 2016-02-06T04:59:59Z | 2016-01-06T13:22:07Z | 2015-33294 | 0 | 0 | 0900006481dec86c |
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;