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 = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-0043-0001 | SSA | Extension of Expiration Dates for Four Body System Listings SSA-2021-0043 | Extension of Expiration Dates for Four Body System Listings | Rule | 2021-12-13T05:00:00Z | 2021 | 12 | 2021-12-13T05:00:00Z | 2021-12-13T13:36:33Z | 2021-26884 | 0 | 0 | 0900006484ec081c | ||
| SSA-2021-0035-0001 | SSA | Extension of Expiration Dates for Three Body System Listings SSA-2021-0035 | Extension of Expiration Dates for Three Body System Listings | Rule | 2021-11-17T05:00:00Z | 2021 | 11 | 2021-11-17T13:15:09Z | 2021-25026 | 0 | 0 | 0900006484e56f7a | |||
| SSA-2021-0017-0001 | SSA | Removing the Waiting Period for Entitlement to Social Security Disability Insurance Benefits for Individuals with Amyotrophic Lateral Sclerosis (ALS) SSA-2021-0017 | Removing the Waiting Period for Entitlement to Social Security Disability Insurance Benefits for Individuals with Amyotrophic Lateral Sclerosis | Rule | 2021-08-27T04:00:00Z | 2021 | 8 | 2021-12-13T13:44:13Z | 2021-18435 | 0 | 0 | 0900006484cabd51 | |||
| SSA-2021-0019-0001 | SSA | Extension of Expiration Date for Neurological Disorders Body System Listings SSA-2021-0019 | Neurological Disorders Body System Listings; Extension of Expiration Date | Rule | 2021-08-02T04:00:00Z | 2021 | 8 | 2021-08-02T04:00:00Z | 2021-12-13T13:42:18Z | 2021-16417 | 0 | 0 | 0900006484c20304 | ||
| SSA-2021-0010-0001 | SSA | Flexibility in Evaluating “Close Proximity of Time” in the context of COVID-19 Related Barriers to Healthcare SSA-2021-0010 | Flexibility in Evaluating Close Proximity of Time due to COVID 19-Related Barriers to Healthcare | Rule | 2021-07-23T04:00:00Z | 2021 | 7 | 2021-07-23T04:00:00Z | 2021-09-22T03:59:59Z | 2021-08-13T01:00:22Z | 2021-15423 | 0 | 0 | 0900006484c0a245 | |
| SSA-2020-0002-0003 | SSA | Improved Agency Guidance Documents SSA-2020-0002 | Rescission of Rules on Improved Agency Guidance Documents | Rule | 2021-04-21T04:00:00Z | 2021 | 4 | 2021-04-21T04:00:00Z | 2021-04-21T12:25:02Z | 2021-08113 | 0 | 0 | 0900006484ab04fe |
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;