documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "HHS", document_type = "Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| HHS-2007-0187-0001 | HHS | High Risk Pools HHS-2007-0187 | High Risk Pools | Rule | 2007-07-27T04:00:00Z | 2007 | 7 | 2007-07-27T04:00:00Z | 2007-08-28T03:59:59Z | 2011-06-11T17:28:23Z | E7-14361 | 0 | 0 | 090000648026eb21 | |
| HHS-2007-0174-0001 | HHS | Procedures for Designating Classes of Employees as Members of the Special Exposure Cohort Under the Energy Employees Occupational Illness Compensation Program Act of 2000; Amendments HHS-2007-0174 | Procedures for Designating Classes of Employees as Members of the Special Exposure Cohort Under the Energy Employees Occupational Illness Compensation Program Act of 2000; Amendments | Rule | 2007-07-10T04:00:00Z | 2007 | 7 | 2007-07-10T04:00:00Z | 2011-06-11T17:28:23Z | E7-13233 | 0 | 0 | 0900006480265390 | ||
| HHS-2007-0169-0001 | HHS | Implementation of the Office of OMB Guidance on Nonprocurement Debarment and Suspension HHS-2007-0169 | Implementation of the Office of OMB Guidance on Nonprocurement Debarment and Suspension | Rule | 2007-06-28T04:00:00Z | 2007 | 6 | 2007-06-28T04:00:00Z | 2007-06-28T11:14:32Z | E7-12225 | 0 | 0 | 090000648025a529 | ||
| HHS-2007-0059-0001 | HHS | Salary Offset HHS-2007-0059 | Salary Offset | Rule | 2007-03-08T05:00:00Z | 2007 | 3 | 2007-03-08T05:00:00Z | 2011-06-11T17:28:22Z | E7-04005 | 0 | 0 | 090000648020fa69 | ||
| HHS-2007-0060-0001 | HHS | Claims Collection HHS-2007-0060 | Claims Collection | Rule | 2007-03-08T05:00:00Z | 2007 | 3 | 2007-03-08T05:00:00Z | 2011-06-11T17:28:22Z | E7-04002 | 0 | 0 | 090000648020fbd2 | ||
| HHS-2007-0048-0001 | HHS | Department of Health and Human Services Implementation of OMB Guidance on Nonprocurement Debarment and Suspension HHS-2007-0048 | Department of Health and Human Services Implementation of OMB Guidance on Nonprocurement Debarment and Suspension | Rule | 2007-03-01T05:00:00Z | 2007 | 3 | 2007-03-01T05:00:00Z | 2007-04-03T03:59:59Z | 2007-04-02T11:10:04Z | 07-00946 | 0 | 0 | 090000648020c8d6 |
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;