documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "PBGC", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, withdrawn, 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-2016-0004-0001 | PBGC | Missing Participants PBGC-2016-0004 | Missing Participants | Proposed Rule | 2016-09-20T04:00:00Z | 2016 | 9 | 2016-09-20T04:00:00Z | 2016-11-22T04:59:59Z | 2016-11-23T02:01:25Z | 2016-22278 | 0 | 0 | 090000648222d388 | |
| PBGC_FRDOC_0001-0335 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Annual Information Return/Reports | Proposed Rule | 2016-07-21T04:00:00Z | 2016 | 7 | 2016-08-12T16:49:34Z | 2016-14893 | 0 | 0 | 09000064820db97f | |||
| PBGC-2016-0003-0002 | PBGC | Mergers and Transfers Between Multiemployer Plans PBGC-2016-0003 | Mergers and Transfers Between Multiemployer Plans | Proposed Rule | 2016-06-06T04:00:00Z | 2016 | 6 | 2016-06-06T04:00:00Z | 2016-08-06T03:59:59Z | 2016-08-09T01:00:20Z | 2016-13083 | 0 | 0 | 0900006482014534 | |
| PBGC-2016-0003-0001 | PBGC | Mergers and Transfers Between Multiemployer Plans PBGC-2016-0003 | Mergers and Transfers Between Multiemployer Plans | Proposed Rule | 2016-06-06T00:00:00Z | 2016 | 6 | 2016-07-28T15:52:40Z | 0 | 1 | 0900006482018943 | ||||
| PBGC-2016-0002-0001 | PBGC | Payment of Premiums; Late Payment Penalty Relief PBGC-2016-0002 | Payment of Premiums; Late Payment Penalty Relief | Proposed Rule | 2016-04-28T04:00:00Z | 2016 | 4 | 2016-04-28T04:00:00Z | 2016-06-28T03:59:59Z | 2016-06-28T01:00:36Z | 2016-09960 | 0 | 0 | 0900006481f94e7c |
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;