documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "SSA", document_type = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2005-0040-0001 | SSA | Medicare Part D Subsidies SSA-2005-0040 | Medicare Part D Subsidies | Rule | 2005-12-30T05:00:00Z | 2005 | 12 | 2005-12-30T05:00:00Z | 2011-06-11T18:00:12Z | 05-24633 | 0 | 0 | 09000064801035d9 | ||
| SSA-2005-0035-0001 | SSA | Social Security Number (SSN) Cards; Limiting Replacement Cards SSA-2005-0035 | Social Security Number (SSN) Cards; Limiting Replacement Cards | Rule | 2005-12-16T05:00:00Z | 2005 | 12 | 2005-12-16T05:00:00Z | 2006-02-15T04:59:59Z | 2011-06-11T18:00:12Z | 05-23962 | 0 | 0 | 09000064800f88fd | |
| SSA-2005-0032-0001 | SSA | Service of Process SSA-2005-0032 | Service of Process | Rule | 2005-12-09T05:00:00Z | 2005 | 12 | 2005-12-09T05:00:00Z | 2011-06-11T18:00:12Z | 05-23836 | 0 | 0 | 09000064800f1b4f | ||
| SSA-2005-0019-0001 | SSA | Deemed Duration of Marriage for Widows/Widowers and Removal of Restriction on Benefits to Children of Military Parents Overseas SSA-2005-0019 | Deemed Duration of Marriage for Widows/Widowers and Removal of Restriction on Benefits to Children of Military Parents Overseas | Rule | 2005-10-24T04:00:00Z | 2005 | 10 | 2005-10-24T04:00:00Z | 2011-06-11T18:00:11Z | 05-21117 | 0 | 0 | 090000648009623f | ||
| SSA-2005-0009-0001 | SSA | Reinstatement of Entitlement to Disability Benefits SSA-2005-0009 | Reinstatement of Entitlement to Disability Benefits | Rule | 2005-09-30T04:00:00Z | 2005 | 9 | 2005-09-30T04:00:00Z | 2011-06-11T18:00:09Z | 05-19529 | 0 | 0 | 090000648008d35a |
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;