documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "SSA-2014-0052" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, last_modified, 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-2014-0052-0155 | SSA | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process SSA-2014-0052 | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process | Rule | 2016-12-16T05:00:00Z | 2016 | 12 | 2017-01-20T14:31:00Z | 2016-30103 | 0 | 0 | 0900006482414483 | |||
| SSA-2014-0052-0154 | SSA | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process SSA-2014-0052 | Pending Regs presentation october 28 | Supporting & Related Material | 2016-12-16T05:00:00Z | 2016 | 12 | 2016-12-19T13:04:58Z | 0 | 0 | 0900006482410d3f | ||||
| SSA-2014-0052-0152 | SSA | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process SSA-2014-0052 | SSA Staff Notes from 10/17/2016 Listening Session with Disability Advocacy Groups | Supporting & Related Material | 2016-11-22T05:00:00Z | 2016 | 11 | 2016-11-22T15:27:21Z | 0 | 0 | 0900006482348294 | ||||
| SSA-2014-0052-0153 | SSA | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process SSA-2014-0052 | Congressional ltr on SSA Disability Regs - Levin-Brown-Murray-Wyden-Becerra-Doggett-DeLauro. | Supporting & Related Material | 2016-11-22T05:00:00Z | 2016 | 11 | 2016-11-22T15:27:21Z | 0 | 0 | 0900006482386446 | ||||
| SSA-2014-0052-0019 | SSA | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process SSA-2014-0052 | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process | Proposed Rule | 2016-08-04T04:00:00Z | 2016 | 8 | 2016-08-04T04:00:00Z | 2016-08-27T03:59:59Z | 2016-10-06T13:01:32Z | 2016-18367 | 0 | 0 | 0900006482155254 | |
| SSA-2014-0052-0001 | SSA | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process SSA-2014-0052 | Ensuring Program Uniformity at the Hearing and Appeals Council Levels of the Administrative Review Process | Proposed Rule | 2016-07-12T04:00:00Z | 2016 | 7 | 2016-07-12T04:00:00Z | 2016-08-12T03:59:59Z | 2016-08-12T13:00:23Z | 2016-16265 | 0 | 0 | 09000064820a0beb |
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;