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 = "Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, posted_date (date), comment_start_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-2017-0055-0001 | SSA | Extension of Expiration Dates for Four Body System Listings SSA-2017-0055 | Extension of Expiration Dates for Four Body System Listings | Rule | 2017-12-15T05:00:00Z | 2017 | 12 | 2017-12-15T05:00:00Z | 2017-12-15T14:07:04Z | 2017-27086 | 0 | 0 | 0900006482d1274a | ||
| SSA-2006-0140-3091 | SSA | Revised Medical Criteria for Evaluating Neurological Impairments SSA-2006-0140 | Revised Medical Criteria for Evaluating Neurological Disorders; Correction | Rule | 2017-08-22T04:00:00Z | 2017 | 8 | 2017-08-22T04:00:00Z | 2017-08-23T18:22:08Z | 2017-17724 | 0 | 0 | 0900006482a94184 | ||
| SSA-2017-0021-0001 | SSA | Extension of Sunset Date for Attorney Advisor Program SSA-2017-0021 | Extension of Sunset Date for Attorney Advisor Program | Rule | 2017-07-25T04:00:00Z | 2017 | 7 | 2017-07-25T04:00:00Z | 2017-07-25T12:53:20Z | 2017-15493 | 0 | 0 | 090000648296234b | ||
| SSA-2016-0011-4000 | SSA | Implementation of the NICS Improvement Amendments Act of 2007 SSA-2016-0011 | Implementation of the National Instant Criminal Background Check System Improvement Amendments Act of 2007 | Rule | 2017-05-18T04:00:00Z | 2017 | 5 | 2017-05-18T04:00:00Z | 2017-05-18T16:32:01Z | 2017-10084 | 0 | 0 | 09000064825dcb30 | ||
| SSA-2015-0014-0002 | SSA | Anti-Harassment & Hostile Work Environment Case Tracking and Records System SSA-2015-0014 | Anti-Harassment and Hostile Work Environment Case Tracking and Records System | Rule | 2017-04-05T04:00:00Z | 2017 | 4 | 2017-04-05T04:00:00Z | 2017-04-05T12:05:08Z | 2017-06719 | 0 | 0 | 090000648253c5a9 | ||
| SSA-2012-0035-0384 | SSA | Revisions to Rules Regarding the Evaluation of Medical Evidence SSA-2012-0035 | Evaluation of Medical Evidence; Correction | Rule | 2017-03-27T04:00:00Z | 2017 | 3 | 2017-03-27T04:00:00Z | 2017-03-28T12:10:50Z | 2017-06023 | 0 | 0 | 0900006482528606 | ||
| SSA-2014-0016-0012 | SSA | Amendments to Regulations Regarding Unsuccessful Work Attempts, Trial Work Periods, and Expedited Reinstatement Eligibility. SSA-2014-0016 | Unsuccessful Work Attempts and Expedited Reinstatement Eligibility; Correction | Rule | 2017-01-23T05:00:00Z | 2017 | 1 | 2017-01-23T05:00:00Z | 2017-01-23T14:39:11Z | 2017-00076 | 0 | 0 | 09000064824889f6 | ||
| SSA-2015-0064-0003 | SSA | Federal Policy for the Protection of Human Subjects SSA-2015-0064 | Federal Policy for Protection of Human Subjects | Rule | 2017-01-19T05:00:00Z | 2017 | 1 | 2017-01-20T14:29:05Z | 2017-01058 | 0 | 0 | 090000648248552f | |||
| SSA-2012-0035-0382 | SSA | Revisions to Rules Regarding the Evaluation of Medical Evidence SSA-2012-0035 | Revisions to Rules Regarding the Evaluation of Medical Evidence | Rule | 2017-01-18T05:00:00Z | 2017 | 1 | 2017-02-08T11:42:25Z | 2017-00455 | 0 | 0 | 09000064824806d4 |
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;