documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "PBGC-2023-0009" and document_type = "Rule" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2023-0009-0008 | PBGC | 2024 Non-comment Rules PBGC-2023-0009 | Allocation of Assets in Single-Employer Plans: Interest Assumptions for Valuing Benefits | Rule | 2024-12-23T05:00:00Z | 2024 | 12 | 2024-12-23T05:00:00Z | 2024-12-23T14:45:06Z | 2024-30459 | 0 | 0 | 09000064868869e5 | ||
| PBGC-2023-0009-0006 | PBGC | 2024 Non-comment Rules PBGC-2023-0009 | Allocation of Assets in Single-Employer Plans: Valuation of Benefits and Assets; Expected Retirement Age; Missing Participants Mortality Assumption | Rule | 2024-12-20T05:00:00Z | 2024 | 12 | 2024-12-20T05:00:00Z | 2024-12-20T16:09:35Z | 2024-29105 | 0 | 0 | 0900006486881518 | ||
| PBGC-2023-0009-0005 | PBGC | 2024 Non-comment Rules PBGC-2023-0009 | Allocation of Assets in Single-Employer Plans: Interest Assumptions for Valuing Benefits | Rule | 2024-09-19T04:00:00Z | 2024 | 9 | 2024-09-19T04:00:00Z | 2024-09-23T13:39:21Z | 2024-21359 | 0 | 0 | 090000648674cc6e | ||
| PBGC-2023-0009-0004 | PBGC | 2024 Non-comment Rules PBGC-2023-0009 | Allocation of Assets in Single-Employer Plans; Interest Assumptions for Valuing Benefits | Rule | 2024-07-01T04:00:00Z | 2024 | 7 | 2024-07-01T04:00:00Z | 2024-07-18T14:57:12Z | 2024-14401 | 0 | 0 | 09000064865d5259 | ||
| PBGC-2023-0009-0003 | PBGC | 2024 Non-comment Rules PBGC-2023-0009 | Allocation of Assets in Single-Employer Plans; Interest Assumptions for Valuing Benefits | Rule | 2024-06-14T04:00:00Z | 2024 | 6 | 2024-06-14T04:00:00Z | 2024-06-18T13:16:26Z | 2024-13047 | 0 | 0 | 09000064865b607f | ||
| PBGC-2023-0009-0002 | PBGC | 2024 Non-comment Rules PBGC-2023-0009 | Allocation of Assets in Single-Employer Plans; Interest Assumptions for Valuing Benefits | Rule | 2024-03-13T04:00:00Z | 2024 | 3 | 2024-03-13T04:00:00Z | 2024-03-15T13:32:45Z | 2024-05249 | 0 | 0 | 09000064864781b4 | ||
| PBGC-2023-0009-0001 | PBGC | 2024 Non-comment Rules PBGC-2023-0009 | Civil Monetary Penalty Inflation Adjustment | Rule | 2024-01-12T05:00:00Z | 2024 | 1 | 2024-01-12T05:00:00Z | 2024-01-23T19:29:53Z | 2024-00488 | 0 | 0 | 0900006486394a44 |
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;