documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "PBGC", document_type = "Notice" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, comment_end_date, last_modified, 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-0067 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | PBGC Flat Premium Rates | Notice | 2008-12-01T05:00:00Z | 2008 | 12 | 2008-12-01T05:00:00Z | 2008-12-20T23:36:36Z | E8-28411 | 0 | 0 | 09000064807c709b | ||
| PBGC-2008-0010-0001 | PBGC | Survey of Nonparticpating Single Premium Group Annuity Rates PBGC-2008-0010 | Proposed Submission of Information Collection for OMB Review; Comment Request; Survey of Nonparticipating Single Premium Group Annuity Rates | Notice | 2008-11-28T05:00:00Z | 2008 | 11 | 2008-11-28T05:00:00Z | 2009-01-28T04:59:59Z | 2014-01-18T15:24:32Z | E8-28333 | 0 | 0 | 09000064807c3ae0 | |
| PBGC-2008-0009-0001 | PBGC | Reportable Events PBGC-2008-0009 | Proposed Submission of Information Collection for OMB Review; Comment Request; Reportable Events | Notice | 2008-11-21T05:00:00Z | 2008 | 11 | 2008-11-21T05:00:00Z | 2009-01-21T04:59:59Z | 2014-01-18T19:01:14Z | E8-27768 | 0 | 0 | 09000064807b6e95 | |
| PBGC-2008-0008-0001 | PBGC | Notice of Failure To Make Required Contributions PBGC-2008-0008 | Proposed Submission of Information Collection for OMB Review; Comment Request; Notice of Failure To Make Required Contributions | Notice | 2008-11-21T05:00:00Z | 2008 | 11 | 2008-11-21T05:00:00Z | 2009-01-21T04:59:59Z | 2014-01-18T19:01:14Z | E8-27767 | 0 | 0 | 09000064807b6e78 | |
| PBGC-2008-0005-0001 | PBGC | Notice of New System of Records PBGC -- 16, Online Employee Directory -- PBGC PBGC-2008-0005 | Privacy Act of 1974; System of Records | Notice | 2008-08-29T04:00:00Z | 2008 | 8 | 2008-08-29T04:00:00Z | 2008-09-30T03:59:59Z | 2014-01-18T18:00:47Z | E8-20178 | 0 | 0 | 09000064806e5033 | |
| PBGC_FRDOC_0001-0057 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Submission of Information Collection for OMB Review; Comment Request; Locating and Paying Participants | Notice | 2008-07-30T04:00:00Z | 2008 | 7 | 2008-07-30T04:00:00Z | 2008-07-30T11:16:40Z | E8-17470 | 0 | 0 | 09000064806a0d2b | ||
| PBGC_FRDOC_0001-0046 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Approval of Variance From the Bond/Escrow Requirement Relating to the Sale of Assets by an Employer Who Contributes to a Multiemployer Plan: P&O Ports Florida, Inc. | Notice | 2008-03-03T05:00:00Z | 2008 | 3 | 2008-03-03T05:00:00Z | 2008-03-03T12:09:36Z | E8-03990 | 0 | 0 | 09000064803e4e4c | ||
| PBGC_FRDOC_0001-0045 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Submission of Information Collection for OMB Review; Comment Request; Multiemployer Plan Regulations | Notice | 2008-02-25T05:00:00Z | 2008 | 2 | 2008-02-25T05:00:00Z | 2008-02-25T12:07:58Z | E8-03410 | 0 | 0 | 09000064803c3323 | ||
| PBGC_FRDOC_0001-0042 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Submission of Information Collection for OMB Review; Comment Request; Liability for Termination of Single-Employer Plans | Notice | 2008-02-01T05:00:00Z | 2008 | 2 | 2008-02-01T05:00:00Z | 2008-02-01T12:09:13Z | E8-01874 | 0 | 0 | 09000064803a6547 | ||
| PBGC_FRDOC_0001-0041 | PBGC | Recently Posted PBGC Rules and Notices. PBGC_FRDOC_0001 | Interest Rates and Assumptions Under Parts 4006, 4007, 4062, 4219, and 4281 of PBGC Regulations | Notice | 2008-01-15T05:00:00Z | 2008 | 1 | 2008-01-15T05:00:00Z | 2008-01-15T12:07:19Z | E8-00568 | 0 | 0 | 090000648039ad0e |
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;