documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "SSA", document_type = "Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, title, 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-2010-0060-0005 | SSA | Expedited Vocational Assessment Under the Sequential Evaluation Process SSA-2010-0060 | Expedited Vocational Assessment Under the Sequential Evaluation Process | Rule | 2012-07-25T04:00:00Z | 2012 | 7 | 2012-07-25T04:00:00Z | 2012-07-25T17:43:39Z | 2012-17934 | 0 | 0 | 09000064810aef6e | ||
| SSA-2010-0029-0005 | SSA | Regulations Regarding Income-Related Monthly Adjustment Amounts to Medicare Part D Premiums SSA-2010-0029 | Regulations Regarding Income-Related Monthly Adjustment Amounts to Medicare Beneficiaries' Prescription Drug Coverage Premiums | Rule | 2012-07-25T04:00:00Z | 2012 | 7 | 2012-07-25T04:00:00Z | 2010-12-08T04:59:59Z | 2012-07-25T19:19:36Z | 2012-17935 | 0 | 0 | 09000064810aeef3 | |
| SSA-2012-0024-0001 | SSA | Extension of Expiration Dates for Several Body System Listings SSA-2012-0024 | Extension of Expiration Dates for Several Body System Listings | Rule | 2012-06-13T04:00:00Z | 2012 | 6 | 2012-06-13T04:00:00Z | 2012-06-14T15:08:25Z | 2012-14407 | 0 | 0 | 0900006481046fb7 | ||
| SSA-2012-0012-0001 | SSA | Removing Regulations on Black Lung Part B SSA-2012-0012 | Removal of Regulations on Black Lung Benefits | Rule | 2012-03-30T04:00:00Z | 2012 | 3 | 2012-03-30T04:00:00Z | 2012-04-03T20:34:37Z | 2012-07672 | 0 | 0 | 0900006480fe4e24 | ||
| SSA-2011-0094-0002 | SSA | Requiring Electronic Filing of Appeals by Certain Claimant Representatives SSA-2011-0094 | Requiring Electronic Filing of Select Appeals by Certain Claimant Representatives | Rule | 2012-03-08T05:00:00Z | 2012 | 3 | 2012-03-08T05:00:00Z | 2012-03-14T15:12:26Z | 2012-05673 | 0 | 0 | 0900006480fd1c5e | ||
| SSA-2010-0044-0062 | SSA | How We Collect and Consider Evidence of Disability SSA-2010-0044 | How We Collect and Consider of Evidence of Disability | Rule | 2012-02-23T05:00:00Z | 2012 | 2 | 2012-02-23T05:00:00Z | 2012-03-06T16:26:02Z | 2012-04177 | 0 | 0 | 0900006480fbeb32 | ||
| SSA-2011-0008-0005 | SSA | Protecting the Public and our Employees in our Hearing Process SSA-2011-0008 | Protecting Public and Employees in Hearing Processes | Rule | 2012-02-23T05:00:00Z | 2012 | 2 | 2012-02-23T05:00:00Z | 2012-03-06T16:29:56Z | 2012-04178 | 0 | 0 | 0900006480fbeb63 | ||
| SSA-2011-0094-0001 | SSA | Requiring Electronic Filing of Appeals by Certain Claimant Representatives SSA-2011-0094 | Requiring Electronic Filing of Select Appeals by Certain Claimant Representatives | Rule | 2012-01-31T05:00:00Z | 2012 | 1 | 2012-01-31T05:00:00Z | 2012-02-01T19:04:40Z | 2012-01597 | 0 | 0 | 0900006480fa9847 | ||
| SSA-2010-0033-0003 | SSA | Amendments to Regulations Regarding Eligibility for a Medicare Prescription Drug Subsidy SSA-2010-0033 | Amendments to Regulations Regarding Eligibility for a Medicare Prescription Drug Subsidy | Rule | 2012-01-18T05:00:00Z | 2012 | 1 | 2012-01-18T05:00:00Z | 2012-01-25T20:37:46Z | 2012-00827 | 0 | 0 | 0900006480f99402 | ||
| SSA-2011-0034-0001 | SSA | Modification to Regulation Regarding Mailing of Tickets Under the Ticket to Work Program SSA-2011-0034 | Mailing of Tickets under the Ticket to Work Program | Rule | 2012-01-12T05:00:00Z | 2012 | 1 | 2012-01-12T05:00:00Z | 2012-03-13T03:59:59Z | 2012-02-27T18:59:40Z | 2012-00405 | 0 | 0 | 0900006480f93e65 |
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;