documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "SSA", document_type = "Proposed Rule" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_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-2018-0017-0001 | SSA | Consideration of Pain in the Adult Disability Determination Process SSA-2018-0017 | Consideration of Pain in the Disability Determination Process | Proposed Rule | 2018-12-17T05:00:00Z | 2018 | 12 | 2018-12-17T05:00:00Z | 2019-02-16T04:59:59Z | 2019-02-17T02:01:17Z | 2018-27169 | 0 | 0 | 090000648399cdce | |
| SSA-2017-0015-0001 | SSA | Setting the Manner for the Appearance of Parties and Witnesses at a Hearing SSA-2017-0015 | Setting the Manner for the Appearance of Parties and Witnesses at a Hearing | Proposed Rule | 2018-11-15T05:00:00Z | 2018 | 11 | 2018-11-15T05:00:00Z | 2019-01-15T04:59:59Z | 2019-04-17T01:03:32Z | 2018-24711 | 0 | 0 | 09000064838d984a | |
| SSA-2018-0004-0001 | SSA | Security and Suitability Files SSA-2018-0004 | Security and Suitability Files | Proposed Rule | 2018-11-15T05:00:00Z | 2018 | 11 | 2018-11-15T05:00:00Z | 2018-12-18T04:59:59Z | 2018-11-15T13:52:56Z | 2018-24851 | 0 | 0 | 09000064838d9846 | |
| SSA-2015-0006-0001 | SSA | Prohibiting Persons with Certain Criminal Convictions from Serving as Representative Payees SSA-2015-0006 | Prohibiting Persons with Certain Criminal Convictions from Serving as Representative Payees | Proposed Rule | 2018-10-11T04:00:00Z | 2018 | 10 | 2018-10-11T04:00:00Z | 2018-11-14T04:59:59Z | 2018-11-14T02:05:58Z | 2018-22168 | 0 | 0 | 09000064837bde9d | |
| SSA-2015-0003-0002 | SSA | Proposed New System of Records Notice- Social Security Administration Violence Evaluation and Reporting System (SSAvers) SSA-2015-0003 | Social Security Administration Violence Evaluation and Reporting System (RIN 0960-AI08) | Proposed Rule | 2018-06-14T04:00:00Z | 2018 | 6 | 2018-06-14T04:00:00Z | 2018-07-17T03:59:59Z | 2018-07-11T01:03:57Z | 2018-12819 | 0 | 0 | 090000648340f8ba | |
| SSA-2006-0112-0010 | SSA | Revised Medical Criteria for Determination of Disability, Musculoskeletal system and Related Criteria SSA-2006-0112 | Revised Medical Criteria for Evaluating Musculoskeletal Disorders | Proposed Rule | 2018-05-07T04:00:00Z | 2018 | 5 | 2018-05-07T04:00:00Z | 2018-07-07T03:59:59Z | 2018-07-11T01:05:25Z | 2018-08889 | 0 | 0 | 0900006483236183 | |
| SSA-2015-0064-0005 | SSA | Federal Policy for the Protection of Human Subjects SSA-2015-0064 | Federal Policy for the Protection of Human Subjects: Proposed Six Month Delay of the General Compliance Date While Allowing the Use of Three Burden-Reducing Provisions During the Delay Period | Proposed Rule | 2018-04-20T04:00:00Z | 2018 | 4 | 2018-04-20T04:00:00Z | 2018-04-25T13:09:22Z | 2018-08231 | 0 | 0 | 090000648319a0b3 |
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;