documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "SSA", document_type = "Rule" and posted_year = 2024 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, posted_date (date), comment_start_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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| SSA-2016-0039-0063 | SSA | Use of Electronic Payroll Data to Improve Program Administration SSA-2016-0039 | Use of Electronic Payroll Data To Improve Program Administration | Rule | 2024-12-31T05:00:00Z | 2024 | 12 | 2024-12-31T05:00:00Z | 2024-12-31T13:48:20Z | 2024-30593 | 0 | 0 | 0900006486896dbb | ||
| SSA-2021-0049-0007 | SSA | Availability of Information and Records to the Public SSA-2021-0049 | Availability of Information and Records to the Public | Rule | 2024-12-18T05:00:00Z | 2024 | 12 | 2024-12-18T13:40:53Z | 2024-29647 | 0 | 0 | 090000648687b816 | |||
| SSA-2022-0013-0045 | SSA | Manner of Appearance at Hearings SSA-2022-0013 | Setting the Manner of Appearance of Parties and Witnesses at Hearings | Rule | 2024-08-26T04:00:00Z | 2024 | 8 | 2024-08-26T04:00:00Z | 2024-08-26T13:13:43Z | 2024-18591 | 0 | 0 | 0900006486697b01 | ||
| SSA-2023-0018-0013 | SSA | Changes to the Administrative Rules for Claimant Representation and Provisions for Direct Payment to Entities SSA-2023-0018 | Changes to the Administrative Rules for Claimant Representation and Provisions for Direct Payment to Entities | Rule | 2024-08-21T04:00:00Z | 2024 | 8 | 2024-08-21T12:19:28Z | 2024-18497 | 0 | 0 | 09000064866595e4 | |||
| SSA-2023-0024-0094 | SSA | Intermediate Improvement to the Disability Adjudication Process: Including How We Consider Past Work SSA-2023-0024 | Intermediate Improvement to the Disability Adjudication Process, Including How We Consider Past Work; Deferral of Effective Date | Rule | 2024-06-05T04:00:00Z | 2024 | 6 | 2024-06-05T14:43:20Z | 2024-12285 | 0 | 0 | 0900006486596eab | |||
| SSA-2023-0015-0222 | SSA | Expand the Definition of a Public Assistance Household SSA-2023-0015 | Expand the Definition of a Public Assistance Household | Rule | 2024-04-19T04:00:00Z | 2024 | 4 | 2024-04-19T13:24:01Z | 2024-08364 | 0 | 0 | 09000064864e17f3 | |||
| SSA-2023-0024-0092 | SSA | Intermediate Improvement to the Disability Adjudication Process: Including How We Consider Past Work SSA-2023-0024 | Intermediate Improvement to the Disability Adjudication Process, Including How We Consider Past Work | Rule | 2024-04-18T04:00:00Z | 2024 | 4 | 2024-04-18T04:00:00Z | 2024-04-18T17:23:29Z | 2024-08150 | 0 | 0 | 09000064864de278 | ||
| SSA-2023-0010-0182 | SSA | Expansion of the Rental Subsidy Policy for Supplemental Security Income (SSI) Applicants and Recipients SSA-2023-0010 | Expansion of the Rental Subsidy Policy for Supplemental Security Income Applicants and Recipients | Rule | 2024-04-11T04:00:00Z | 2024 | 4 | 2024-04-11T15:31:22Z | 2024-07675 | 0 | 0 | 09000064864cda14 | |||
| SSA-2021-0014-4327 | SSA | Omitting Food From In-Kind Support and Maintenance Calculations SSA-2021-0014 | Omitting Food From In-Kind Support and Maintenance Calculations | Rule | 2024-03-27T04:00:00Z | 2024 | 3 | 2024-03-27T14:33:36Z | 2024-06464 | 0 | 0 | 090000648649b559 |
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;