documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "SSA", document_type = "Rule" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, posted_month, 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-2021-0010-0003 | SSA | Flexibility in Evaluating “Close Proximity of Time” in the context of COVID-19 Related Barriers to Healthcare SSA-2021-0010 | Federal Old-Age, Survivors and Disability Insurance (1950- ); CFR Correction | Rule | 2023-12-07T05:00:00Z | 2023 | 12 | 2023-12-07T05:00:00Z | 2023-12-13T14:07:29Z | 2023-26983 | 0 | 0 | 09000064863099fd | ||
| SSA-2023-0023-0001 | SSA | Extension of the Flexibility in Evaluating "Close Proximity of Time" to Evaluate Changes in Healthcare Following the COVID-19 Public Health Emergency SSA-2023-0023 | Extension of the Flexibility in Evaluating Close Proximity of Time to Evaluate Changes in Healthcare Following the COVID–19 Public Health Emergency | Rule | 2023-09-29T04:00:00Z | 2023 | 9 | 2023-09-29T04:00:00Z | 2023-11-29T04:59:59Z | 2023-11-29T02:00:58Z | 2023-21671 | 0 | 0 | 090000648600f183 | |
| SSA-2017-0042-0018 | SSA | Revised Medical Criteria for Evaluating Digestive and Skin Disorders SSA-2017-0042 | Revised Medical Criteria for Evaluating Digestive Disorders and Skin Disorders: Correction | Rule | 2023-08-22T04:00:00Z | 2023 | 8 | 2023-08-22T13:27:19Z | C2-2023-11771 | 0 | 0 | 0900006485ed5323 | |||
| SSA-2017-0042-0017 | SSA | Revised Medical Criteria for Evaluating Digestive and Skin Disorders SSA-2017-0042 | Revised Medical Criteria for Evaluating Digestive Disorders and Skin Disorders: Correction | Rule | 2023-08-15T04:00:00Z | 2023 | 8 | 2023-08-15T04:00:00Z | 2023-08-22T13:30:31Z | C1-2023-11771 | 0 | 0 | 0900006485e3e171 | ||
| SSA-2017-0042-0016 | SSA | Revised Medical Criteria for Evaluating Digestive and Skin Disorders SSA-2017-0042 | Revised Medical Criteria for Evaluating Digestive Disorders and Skin Disorders | Rule | 2023-06-08T04:00:00Z | 2023 | 6 | 2023-08-22T13:26:36Z | 2023-11771 | 0 | 0 | 0900006485adea01 | |||
| SSA-2022-0051-0001 | SSA | Service of Process and Updated Addresses for Certain Communications with the Agency SSA-2022-0051 | Service of Process and Updated Addresses for Certain Communications with the Agency | Rule | 2023-01-10T05:00:00Z | 2023 | 1 | 2023-01-10T13:07:10Z | 2023-00081 | 0 | 0 | 09000064855d0c85 |
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;