documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "SSA-2007-0044" 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)
document_type 3
agency_id 1
- SSA 5
| 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-0044-0562 | SSA | Amendments to the Administrative Law Judge, Appeals Council, and Decision Review Board Appeals Levels SSA-2007-0044 | Rules on Determining Hearing Appearances | Rule | 2013-05-21T04:00:00Z | 2013 | 5 | 2013-06-18T13:48:35Z | 2013-11932 | 0 | 0 | 09000064812efbc9 | |||
| SSA-2007-0044-0560 | SSA | Amendments to the Administrative Law Judge, Appeals Council, and Decision Review Board Appeals Levels SSA-2007-0044 | Notes from 2-7-08 NOSSCR-CCD Meeting | Supporting & Related Material | 2008-07-28T04:00:00Z | 2008 | 7 | 2013-05-28T15:15:46Z | 0 | 0 | 090000648069c791 | ||||
| SSA-2007-0044-0559 | SSA | Amendments to the Administrative Law Judge, Appeals Council, and Decision Review Board Appeals Levels SSA-2007-0044 | Meeting Notes--1-17 NOSSCR final 3-12-08.doc | Supporting & Related Material | 2008-03-12T04:00:00Z | 2008 | 3 | 2013-05-28T15:15:46Z | 0 | 0 | 09000064803f344d | ||||
| SSA-2007-0044-0558 | SSA | Amendments to the Administrative Law Judge, Appeals Council, and Decision Review Board Appeals Levels SSA-2007-0044 | Notes on 1/11/08 Commissioner’s Meeting with Consortium for Citizens with Disabilities | Supporting & Related Material | 2008-03-03T05:00:00Z | 2008 | 3 | 2013-05-28T15:15:46Z | 0 | 0 | 09000064803e5168 | ||||
| SSA-2007-0044-0001 | SSA | Amendments to the Administrative Law Judge, Appeals Council, and Decision Review Board Appeals Levels SSA-2007-0044 | Amendments to the Administrative Law Judge, Appeals Council, and Decision Review Board Appeals Levels | Proposed Rule | 2007-10-29T04:00:00Z | 2007 | 10 | 2007-10-29T04:00:00Z | 2007-12-29T04:59:59Z | 2013-05-28T15:15:23Z | E7-20690 | 0 | 0 | 0900006480357756 |
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;