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 = "Rule" and posted_year = 2009 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), 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-2007-0066-0008 | SSA | Revised Medical Criteria for Evaluating Malignant Neoplastic Diseases SSA-2007-0066 | Revised Medical Criteria for Evaluating Malignant Neoplastic Diseases | Rule | 2009-10-22T04:00:00Z | 2009 | 10 | 2009-10-22T04:00:00Z | 2012-04-18T21:13:25Z | E9-25424 | 0 | 0 | 0900006480a47d12 | ||
| SSA-2007-0066-0007 | SSA | Revised Medical Criteria for Evaluating Malignant Neoplastic Diseases SSA-2007-0066 | Revised Medical Criteria for Evaluating Malignant Neoplastic Diseases | Rule | 2009-10-06T04:00:00Z | 2009 | 10 | 2009-10-06T04:00:00Z | 2012-04-18T21:13:25Z | E9-23896 | 0 | 0 | 0900006480a3c065 | ||
| SSA-2008-0047-0001 | SSA | Payment of Benefits to Aliens Residing Outside the United States SSA-2008-0047 | Payments to Beneficiaries Residing in Vietnam and Cambodia and Other Conforming Changes | Rule | 2009-09-25T04:00:00Z | 2009 | 9 | 2009-09-25T04:00:00Z | 2012-04-18T21:13:25Z | E9-22883 | 0 | 0 | 0900006480a2c1cc | ||
| SSA-2008-0030-0007 | SSA | Authorization of Representative Fees SSA-2008-0030 | Authorization of Representative Fees | Rule | 2009-09-23T04:00:00Z | 2009 | 9 | 2009-09-23T04:00:00Z | 2011-06-11T18:01:08Z | E9-22842 | 0 | 0 | 0900006480a29b71 | ||
| SSA-2009-0023-0001 | SSA | Attorney Advisor Program Sunset Date Extension SSA-2009-0023 | Attorney Advisor Program Sunset Date Extension | Rule | 2009-07-13T04:00:00Z | 2009 | 7 | 2009-07-13T04:00:00Z | 2011-06-11T18:01:14Z | E9-16510 | 0 | 0 | 09000064809f010f | ||
| SSA-2009-0015-0001 | SSA | Testimony by Employees and the Production of Records and Information in Legal Proceedings; Claims Against the Government Under the Federal Tort Claims Act and Claims Under the Military Personnel and Civilian Employees' Claims Act of 1964 SSA-2009-0015 | Testimony by Employees and the Production of Records and Information in Legal Proceedings, etc.; Change of Address for Requests | Rule | 2009-04-10T04:00:00Z | 2009 | 4 | 2009-04-10T04:00:00Z | 2012-04-18T21:14:45Z | E9-08213 | 0 | 0 | 090000648094e18e | ||
| SSA-2008-0070-0001 | SSA | Expiration Date Extension for Musculoskeletal Body System Listing SSA-2008-0070 | Expiration Date Extension for Musculoskeletal Body System Listings, | Rule | 2009-02-02T05:00:00Z | 2009 | 2 | 2009-02-02T05:00:00Z | 2014-01-18T19:13:55Z | E9-02109 | 0 | 0 | 090000648084296b |
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;