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 = "Proposed Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, last_modified, 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-2007-0023-0001 | PBGC | Disclosure of Termination Information PBGC-2007-0023 | Disclosure of Termination Information | Proposed Rule | 2007-12-05T05:00:00Z | 2007 | 12 | 2007-12-05T05:00:00Z | 2008-02-05T04:59:59Z | 2011-06-11T17:55:11Z | E7-23577 | 0 | 0 | 0900006480370465 | |
| PBGC-2007-0022-0001 | PBGC | Rules for Adminstrative Review of Agency Decisions PBGC-2007-0022 | Rules for Administrative Review of Agency Decisions | Proposed Rule | 2007-10-18T04:00:00Z | 2007 | 10 | 2007-10-18T04:00:00Z | 2007-12-18T04:59:59Z | 2014-01-18T17:26:42Z | E7-20538 | 0 | 0 | 0900006480321708 | |
| PBGC-2007-0015-0004 | PBGC | Monthly Interest Rates - Rule PBGC-2007-0015 | Monthly Interest Rate Update - June | Proposed Rule | 2007-07-10T04:00:00Z | 2007 | 7 | 2007-07-10T04:00:00Z | 2014-01-17T21:41:49Z | 0 | 0 | 0900006480265ced | |||
| PBGC-2007-0020-0001 | PBGC | Multiemployer Plans; Premium Payments; Variable Rate Premium PBGC-2007-0020 | Multiemployer plans: Premium payments; variable-rate premiums | Proposed Rule | 2007-06-18T04:00:00Z | 2007 | 6 | 2007-06-18T04:00:00Z | 2007-07-10T17:44:31Z | Z7-10412 | 0 | 0 | 090000648025337e | ||
| PBGC-2007-0018-0002 | PBGC | Premium Rates, Payment of Premium, Variable-Rate Premium; Pension Protection Act of 2006 PBGC-2007-0018 | Premium Rates; Payment of Premiums; Variable-Rate Premium; Pension Protection Act of 2006 | Proposed Rule | 2007-05-31T04:00:00Z | 2007 | 5 | 2007-05-31T04:00:00Z | 2007-07-31T03:59:59Z | 2011-06-11T17:55:10Z | E7-10412 | 0 | 0 | 0900006480246a16 | |
| PBGC-2007-0018-0001 | PBGC | Premium Rates, Payment of Premium, Variable-Rate Premium; Pension Protection Act of 2006 PBGC-2007-0018 | Premium Rates; Payment of Premiums; Variable-Rate Premium | Proposed Rule | 2007-05-31T00:00:00Z | 2007 | 5 | 2007-06-06T20:03:51Z | 0 | 1 | 0900006480246d2a | ||||
| PBGC-2007-0017-0001 | PBGC | Semi-Annual Agenda PBGC-2007-0017 | Semi-annual agenda | Proposed Rule | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T04:00:00Z | 2007-06-06T19:58:30Z | 07-01294 | 0 | 0 | 0900006480231a3d | ||
| PBGC-2007-0008-0001 | PBGC | Premium Rates; Payment of Premiums; Flat Premium Rates, Variable- Rate Premium Cap, and Termination Premium; Deficit Reduction Act of 2005; Pension Protection Act of 2006 PBGC-2007-0008 | Premium Rates; Payment of Premiums; Flat Premium Rates, Variable- Rate Premium Cap, and Termination Premium; Deficit Reduction Act of 2005; Pension Protection Act of 2006 | Proposed Rule | 2007-02-20T05:00:00Z | 2007 | 2 | 2007-02-20T05:00:00Z | 2007-04-24T03:59:59Z | 2011-06-11T17:55:10Z | E7-02812 | 0 | 0 | 09000064802096ac |
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;