documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "SSA", document_type = "Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2006-0112-0049 | SSA | Revised Medical Criteria for Determination of Disability, Musculoskeletal system and Related Criteria SSA-2006-0112 | Revised Medical Criteria for Evaluating Musculoskeletal Disorders | Rule | 2020-12-03T05:00:00Z | 2020 | 12 | 2020-12-03T16:04:37Z | 2020-25250 | 0 | 0 | 09000064849840e1 | |||
| SSA-2017-0073-0209 | SSA | Hearings Held by Administrative Appeals Judges of the Appeals Council SSA-2017-0073 | Hearings Held by Administrative Appeals Judges of the Appeals Council | Rule | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T05:00:00Z | 2020-11-16T13:29:19Z | 2020-23856 | 0 | 0 | 090000648496044e | ||
| SSA-2020-0045-0001 | SSA | Waiver of recovery of certain overpayment debts accruing during the COVID-19 pandemic period. SSA-2020-0045 | Waiver of Recovery of Certain Overpayment Debts Accruing during the COVID-19 Pandemic Period | Rule | 2020-08-27T04:00:00Z | 2020 | 8 | 2020-08-27T04:00:00Z | 2020-10-27T03:59:59Z | 2020-11-05T02:02:00Z | 2020-18834 | 0 | 0 | 0900006484823bfa | |
| SSA-2020-0002-0002 | SSA | Improved Agency Guidance Documents SSA-2020-0002 | Improved Agency Guidance Documents. | Rule | 2020-08-20T04:00:00Z | 2020 | 8 | 2020-08-20T04:00:00Z | 2020-08-20T15:19:51Z | 2020-17878 | 0 | 0 | 0900006484813f01 | ||
| SSA-2020-0016-0001 | SSA | Extension of Expiration Dates for Three Body System Listings SSA-2020-0016 | Extension of Expiration Dates for Three Body System Listings | Rule | 2020-05-21T04:00:00Z | 2020 | 5 | 2020-05-21T04:00:00Z | 2020-05-21T12:25:11Z | 2020-10506 | 0 | 0 | 090000648465b698 | ||
| SSA-2017-0046-0220 | SSA | Removing Inability to Communicate in English as an Education Category. SSA-2017-0046 | Removing Inability to Communicate in English as an Education Category | Rule | 2020-02-25T05:00:00Z | 2020 | 2 | 2020-02-25T05:00:00Z | 2020-02-25T15:32:59Z | 2020-03199 | 0 | 0 | 09000064843ad4c4 | ||
| SSA-2020-0001-0001 | SSA | Extension of Expiration Dates for Three Body System Listings SSA-2020-0001 | Extension of Expiration Dates for Three Body System Listings | Rule | 2020-02-24T05:00:00Z | 2020 | 2 | 2020-02-24T05:00:00Z | 2020-02-26T11:38:01Z | 2020-03243 | 0 | 0 | 09000064843a3231 | ||
| SSA-2018-0028-0007 | SSA | Advance Designation of Representative Payees SSA-2018-0028 | Advance Designation of Representative Payees for Social Security Beneficiaries | Rule | 2020-02-11T05:00:00Z | 2020 | 2 | 2020-02-11T05:00:00Z | 2020-02-11T13:11:32Z | 2020-02409 | 0 | 0 | 090000648434e0a9 |
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;