documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "SSA-2007-0082" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
- Proposed Rule 3
- Notice 1
- Rule 1
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-0082-0034 | SSA | Revised Medical Criteria for Evaluating HIV Infection SSA-2007-0082 | Rulings: Rescission of Policy Interpretation Ruling; Titles II and XVI: Evaluation of Human Immunodeficiency Virus Infection | Notice | 2017-03-15T04:00:00Z | 2017 | 3 | 2017-03-15T04:00:00Z | 2017-03-17T13:23:49Z | 2017-05111 | 0 | 0 | 090000648250871c | ||
| SSA-2007-0082-0033 | SSA | Revised Medical Criteria for Evaluating HIV Infection SSA-2007-0082 | Revised Medical Criteria: Evaluating Human Immunodeficiency Virus Infection and for Evaluating Functional Limitations in Immune System Disorders | Rule | 2016-12-02T05:00:00Z | 2016 | 12 | 2016-12-02T05:00:00Z | 2016-12-02T13:20:12Z | 2016-28843 | 0 | 0 | 09000064823da074 | ||
| SSA-2007-0082-0012 | SSA | Revised Medical Criteria for Evaluating HIV Infection SSA-2007-0082 | Revised Medical Criteria: Evaluation of Human Immunodeficiency Virus Infection and Functional Limitations in Immune System Disorders | Proposed Rule | 2014-03-25T04:00:00Z | 2014 | 3 | 2014-03-25T04:00:00Z | 2014-05-28T03:59:59Z | 2014-05-28T01:05:05Z | 2014-06524 | 0 | 0 | 090000648167c94c | |
| SSA-2007-0082-0009 | SSA | Revised Medical Criteria for Evaluating HIV Infection SSA-2007-0082 | Revised Medical Criteria for Evaluating Human Immunodeficiency Virus (HIV) Infection and for Evaluating Functional Limitations in Immune System Disorders | Proposed Rule | 2014-02-26T05:00:00Z | 2014 | 2 | 2014-02-26T05:00:00Z | 2014-04-29T03:59:59Z | 2014-05-23T01:04:12Z | 2014-04124 | 0 | 0 | 09000064815c34b3 | |
| SSA-2007-0082-0001 | SSA | Revised Medical Criteria for Evaluating HIV Infection SSA-2007-0082 | Revised Medical Criteria for Evaluating HIV Infection | Proposed Rule | 2008-03-18T04:00:00Z | 2008 | 3 | 2008-03-18T04:00:00Z | 2008-05-20T03:59:59Z | 2014-02-26T19:02:41Z | E8-05022 | 0 | 0 | 09000064803fc3cc |
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;