documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "SSA-2017-0073" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- SSA 6
| 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-0073-0210 | SSA | Hearings Held by Administrative Appeals Judges of the Appeals Council SSA-2017-0073 | Hearing Office Workload Data FY 2020 | Supporting & Related Material | 2020-11-16T05:00:00Z | 2020 | 11 | 2020-11-16T13:38:44Z | 0 | 0 | 090000648496081a | ||||
| 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-2017-0073-0208 | SSA | Hearings Held by Administrative Appeals Judges of the Appeals Council SSA-2017-0073 | Association of Administrative Law Judges 9-30-20 Listening Session Notes | Supporting & Related Material | 2020-10-06T04:00:00Z | 2020 | 10 | 2020-10-06T13:48:09Z | 0 | 0 | 09000064848dd81c | ||||
| SSA-2017-0073-0207 | SSA | Hearings Held by Administrative Appeals Judges of the Appeals Council SSA-2017-0073 | Appeals Council FR Listening Session 9-8-20 Notes (Final) | Supporting & Related Material | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-09-11T10:46:42Z | 0 | 0 | 0900006484851165 | ||||
| SSA-2017-0073-0001 | SSA | Hearings Held by Administrative Appeals Judges of the Appeals Council SSA-2017-0073 | Hearings Held by Administrative Appeals Judges of the Appeals Council | Proposed Rule | 2019-12-20T05:00:00Z | 2019 | 12 | 2019-12-20T05:00:00Z | 2020-02-19T04:59:59Z | 2020-02-29T02:02:43Z | 2019-27019 | 0 | 0 | 09000064842400b7 | |
| SSA-2017-0073-0002 | SSA | Hearings Held by Administrative Appeals Judges of the Appeals Council SSA-2017-0073 | SSA- Office of Hearing Operations pending cases (11-30-18) (NPRM FN 2) | Supporting & Related Material | 2019-12-20T05:00:00Z | 2019 | 12 | 2019-12-20T14:53:18Z | 0 | 0 | 090000648422a44e |
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;