documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "SSA", document_type = "Proposed Rule" and posted_year = 2013 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, 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-2011-0098-0001 | SSA | Revised Medical Criteria for Evaluating Cancer (Malignant Neoplastic Diseases) SSA-2011-0098 | Revised Medical Criteria for Evaluating Cancer (Malignant Neoplastic Diseases) | Proposed Rule | 2013-12-17T05:00:00Z | 2013 | 12 | 2013-12-17T05:00:00Z | 2014-02-19T04:59:59Z | 2014-02-27T02:02:25Z | 2013-30088 | 0 | 0 | 09000064814c4dd1 | |
| SSA-2011-0104-0001 | SSA | Electronic Interim Assistance Reimbursement Program SSA-2011-0104 | Electronic Interim Assistance Reimbursement Program | Proposed Rule | 2013-11-25T05:00:00Z | 2013 | 11 | 2013-11-25T05:00:00Z | 2014-01-25T04:59:59Z | 2013-12-03T19:49:17Z | 2013-28034 | 0 | 0 | 0900006481495aee | |
| SSA-2010-0055-0001 | SSA | Revised Medical Criteria for Evaluating Hematological Disorders SSA-2010-0055 | Revised Medical Criteria for Evaluating Hematological Disorders | Proposed Rule | 2013-11-19T05:00:00Z | 2013 | 11 | 2013-11-19T05:00:00Z | 2014-01-22T04:59:59Z | 2014-01-24T02:02:19Z | 2013-27514 | 0 | 0 | 0900006481489586 | |
| SSA-2012-0075-0001 | SSA | Revised Medical Criteria for Evaluating Hearing Loss and Disturbances of Labyrinthine-Vestibular Function SSA-2012-0075 | Revised Medical Criteria for Evaluating Hearing Loss and Disturbances of Labyrinthine-Vestibular Function | Proposed Rule | 2013-08-30T04:00:00Z | 2013 | 8 | 2013-08-30T04:00:00Z | 2013-10-30T03:59:59Z | 2013-11-02T22:23:26Z | 2013-21143 | 0 | 0 | 09000064813d22ee | |
| SSA-2013-0011-0001 | SSA | Changing the Rules of Administrative Finality SSA-2013-0011 | Rules of Administrative Finality | Proposed Rule | 2013-07-31T04:00:00Z | 2013 | 7 | 2013-07-31T04:00:00Z | 2013-10-01T03:59:59Z | 2013-10-23T01:03:24Z | 2013-18360 | 0 | 0 | 09000064813874f9 | |
| SSA-2011-0056-0001 | SSA | Changes to Scheduling and appearing at Hearings SSA-2011-0056 | Changes to Scheduling and Appearing at Hearings | Proposed Rule | 2013-06-27T04:00:00Z | 2013 | 6 | 2013-06-27T04:00:00Z | 2013-08-27T03:59:59Z | 2013-08-27T01:03:15Z | 2013-14894 | 0 | 0 | 09000064813445bd | |
| SSA-2011-0081-0001 | SSA | Revised Listings for Growth Disorders and Weight Loss in Children SSA-2011-0081 | Revised Listings for Growth Disorders and Weight Loss in Children | Proposed Rule | 2013-05-22T04:00:00Z | 2013 | 5 | 2013-05-22T04:00:00Z | 2013-07-23T03:59:59Z | 2013-07-25T01:01:28Z | 2013-11601 | 0 | 0 | 09000064812f2108 | |
| SSA-2009-0038-0005 | SSA | Revised medical Criteria for Evaluating Genitourinary Disorders SSA-2009-0038 | Revised Medical Criteria for Evaluating Genitourinary Disorders | Proposed Rule | 2013-02-04T05:00:00Z | 2013 | 2 | 2013-02-04T05:00:00Z | 2013-04-06T03:59:59Z | 2013-04-13T01:02:36Z | 2013-02166 | 0 | 0 | 09000064811e4f2b | |
| SSA-2006-0149-0024 | SSA | Revised Medical Criteria for Evaluating Respiratory System Disorders SSA-2006-0149 | Revised Medical Criteria for Evaluating Respiratory System Disorders | Proposed Rule | 2013-02-04T05:00:00Z | 2013 | 2 | 2013-02-04T05:00:00Z | 2013-04-06T03:59:59Z | 2016-09-19T11:50:46Z | 2013-02165 | 0 | 0 | 09000064811e4e0c | |
| SSA-2012-0066-0001 | SSA | Change in Terminology: “Mental Retardation” to “Intellectual Disability” SSA-2012-0066 | Changes in Terminology: Mental Retardation to Intellectual Disability | Proposed Rule | 2013-01-28T05:00:00Z | 2013 | 1 | 2013-01-28T05:00:00Z | 2013-02-28T04:59:59Z | 2013-03-01T03:02:06Z | 2013-01522 | 0 | 0 | 09000064811daacf |
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;