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 = 2006 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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-2006-0070-0015 | SSA | Revised Medical Criteria for Evaluating Immune System Disorders SSA-2006-0070 | Revised Medical Criteria for Evaluating Immune System Disorders | Proposed Rule | 2006-09-26T14:14:57Z | 2006 | 9 | 2006-09-26T14:14:57Z | 2012-04-18T21:13:35Z | 06-06655 | 0 | 0 | 09000064801aec92 | ||
| SSA-2006-0074-0001 | SSA | Privacy and Disclosure of Official Records and Information SSA-2006-0074 | Privacy and Disclosure of Official Records and Information | Proposed Rule | 2006-09-13T04:00:00Z | 2006 | 9 | 2006-09-13T04:00:00Z | 2006-11-14T04:59:59Z | 2012-04-18T21:13:35Z | E6-15101 | 0 | 0 | 09000064801ca279 | |
| SSA-2006-0070-0001 | SSA | Revised Medical Criteria for Evaluating Immune System Disorders SSA-2006-0070 | Revised Medical Criteria for Evaluating Immune System Disorders | Proposed Rule | 2006-08-15T14:27:32Z | 2006 | 8 | 2006-08-15T14:27:32Z | 2006-10-04T03:59:59Z | 2012-04-18T21:13:35Z | C6-06655 | 0 | 0 | 09000064801b7148 | |
| SSA-2006-0049-0001 | SSA | Privacy and Disclosure of Official Records and Information SSA-2006-0049 | Privacy and Disclosure of Official Records and Information | Proposed Rule | 2006-06-06T04:00:00Z | 2006 | 6 | 2006-06-06T04:00:00Z | 2006-08-08T03:59:59Z | 2011-06-11T18:00:16Z | E6-08697 | 0 | 0 | 0900006480181f51 | |
| SSA-2006-0024-0001 | SSA | Federal Old-Age, Survivors, and Disability Insurance and Supplemental Security Income; Collection of Overdue Program and Administrative Debts Using Federal Salary Offset SSA-2006-0024 | Federal Old-Age, Survivors, and Disability Insurance andSupplemental Security Income; Collection of Overdue Program and Administrative Debts Using Federal Salary Offset | Proposed Rule | 2006-03-13T05:00:00Z | 2006 | 3 | 2006-03-13T05:00:00Z | 2006-05-13T03:59:59Z | 2011-06-11T18:00:15Z | E6-03509 | 0 | 0 | 09000064801442cc | |
| SSA-2006-0022-0001 | SSA | Medicare Part B Income-Related Monthly Adjustment Amount SSA-2006-0022 | Medicare Part B Income-Related Monthly Adjustment Amount | Proposed Rule | 2006-03-03T05:00:00Z | 2006 | 3 | 2006-03-03T05:00:00Z | 2006-05-03T03:59:59Z | 2011-06-11T18:00:14Z | 06-02075 | 0 | 0 | 090000648013d886 | |
| SSA-2006-0020-0001 | SSA | Optometrists as Acceptable Medical Sources to Establish a Medically Determinable Impairment SSA-2006-0020 | Optometrists as Acceptable Medical Sources to Establish a Medically Determinable Impairment | Proposed Rule | 2006-03-01T05:00:00Z | 2006 | 3 | 2006-03-01T05:00:00Z | 2006-05-02T03:59:59Z | 2011-06-11T18:00:14Z | E6-02852 | 0 | 0 | 090000648013bbd8 |
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;