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 = "Notice" and posted_year = 2026 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_date, open_for_comment, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| SSA-2026-0034-0001 | SSA | Agency Information Collection Activities: Proposed Request SSA-2026-0034 | Agency Information Collection Activities: Proposed Request | Notice | 2026-02-26T05:00:00Z | 2026 | 2 | 2026-02-26T05:00:00Z | 2026-04-28T03:59:59Z | 2026-02-26T21:41:56Z | 2026-03843 | 1 | 0 | 09000064b91da69d | |
| SSA-2025-0023-0001 | SSA | Privacy Act of 1974; Matching Program SSA-2025-0023 | Privacy Act; Matching Program | Notice | 2026-02-13T05:00:00Z | 2026 | 2 | 2026-02-13T05:00:00Z | 2026-03-17T03:59:59Z | 2026-03-10T09:00:11Z | 2026-02950 | 1 | 0 | 09000064b91aa666 | |
| SSA-2026-0002-0001 | SSA | Agency Information Collection Activities: Comment Request SSA-2026-0002 | Agency Information Collection Activities: Comment Request | Notice | 2026-02-02T05:00:00Z | 2026 | 2 | 2026-02-02T05:00:00Z | 2026-03-05T04:59:59Z | 2026-03-05T10:00:24Z | 2026-01932 | 0 | 0 | 09000064b918c733 | |
| SSA-2024-0020-0001 | SSA | Social Security Ruling, SSR 24-Xp: Title XVI: Determining Continuing Disability at Step 2 of the Medical Improvement Review Standard Sequential Evaluation Process for Children Under Age 18 – Functional Equivalence SSA-2024-0020 | Social Security Ruling: Title XVI: Determining Continuing Disability at Steps 2 and 3 of the Medical Improvement Review Standard Sequential Evaluation Process for Children under Age 18—Functional Equivalence | Notice | 2026-01-22T05:00:00Z | 2026 | 1 | 2026-01-22T20:31:54Z | 2026-01154 | 0 | 0 | 09000064b9178157 | |||
| SSA-2025-0038-0001 | SSA | Notice of Rescission of Social Security Ruling (SSR). SSA-2025-0038 | Rescission of Social Security Ruling | Notice | 2026-01-21T05:00:00Z | 2026 | 1 | 2026-01-21T20:39:21Z | 2026-01006 | 0 | 0 | 09000064b917565d | |||
| SSA-2024-0017-0003 | SSA | Privacy Act of 1974; Matching Program SSA-2024-0017 | Privacy Act; Matching Program; Correction | Notice | 2026-01-16T05:00:00Z | 2026 | 1 | 2026-01-16T05:00:00Z | 2026-01-16T17:50:22Z | 2026-00814 | 0 | 0 | 09000064b915b2ad | ||
| SSA-2025-0035-0001 | SSA | Privacy Act of 1974; System of Records SSA-2025-0035 | Privacy Act; Systems of Records | Notice | 2026-01-16T05:00:00Z | 2026 | 1 | 2026-01-16T05:00:00Z | 2026-02-18T04:59:59Z | 2026-02-14T13:18:42Z | 2026-00816 | 0 | 0 | 09000064b915b260 | |
| SSA-2025-0156-0001 | SSA | Privacy Act of 1974; System of Records SSA-2025-0156 | Privacy Act; Systems of Records | Notice | 2026-01-09T05:00:00Z | 2026 | 1 | 2026-01-09T05:00:00Z | 2026-02-10T04:59:59Z | 2026-02-14T13:18:19Z | 2026-00220 | 0 | 0 | 09000064b9120318 | |
| SSA-2025-0006-0001 | SSA | Privacy Act of 1974; System of Records SSA-2025-0006 | Privacy Act; Systems of Records | Notice | 2026-01-08T05:00:00Z | 2026 | 1 | 2026-01-08T05:00:00Z | 2026-02-10T04:59:59Z | 2026-02-14T13:18:17Z | 2026-00132 | 0 | 0 | 09000064b911f108 |
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;