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 = "Proposed Rule" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-ASPE-2008-0001-0001 | HHS | Procedures for the Departmental Appeals Board and Other Departmental Hearings HHS-ASPE-2008-0001 | Revisions to Procedures for the Departmental Appeals Board and Other Departmental Hearings | Proposed Rule | 2007-12-28T05:00:00Z | 2007 | 12 | 2007-12-28T05:00:00Z | 2008-01-29T04:59:59Z | 2011-06-11T17:28:24Z | 07-06221 | 0 | 0 | 090000648037f9c9 | |
| HHS-2007-0220-0001 | HHS | Possession, Use, and Transfer of Select Agents and Toxins HHS-2007-0220 | Possession, Use, and Transfer of Select Agents and Toxins | Proposed Rule | 2007-08-28T04:00:00Z | 2007 | 8 | 2007-08-28T04:00:00Z | 2007-10-30T03:59:59Z | 2007-10-29T11:11:08Z | 07-04233 | 0 | 0 | 090000648027b740 | |
| HHS-2007-0192-0001 | HHS | Foreign Quarantine Regulations, Proposed Revision of HHS/CDC Animal-Importation Regulations HHS-2007-0192 | Foreign Quarantine Regulations, Proposed Revision of HHS/CDC Animal-Importation Regulations | Proposed Rule | 2007-07-31T04:00:00Z | 2007 | 7 | 2007-07-31T04:00:00Z | 2007-10-02T03:59:59Z | 2011-06-11T17:28:23Z | E7-14623 | 0 | 0 | 0900006480270154 | |
| HHS-2007-0139-0001 | HHS | Exemption of Certain Systems of Records Under the Privacy Act HHS-2007-0139 | Exemption of Certain Systems of Records Under the Privacy Act | Proposed Rule | 2007-05-25T04:00:00Z | 2007 | 5 | 2007-05-25T04:00:00Z | 2007-07-25T03:59:59Z | 2011-06-11T17:28:22Z | E7-10143 | 0 | 0 | 09000064802432aa | |
| HHS-2007-0114-0001 | HHS | Semi-annual agenda HHS-2007-0114 | Semi-annual agenda | Proposed Rule | 2007-04-30T04:00:00Z | 2007 | 4 | 2007-04-30T04:00:00Z | 2007-06-06T19:58:03Z | 07-01618 | 0 | 0 | 0900006480231bbf | ||
| HHS-2007-0001-0001 | HHS | Interstate Shipment of Etiologic Agents HHS-2007-0001 | Interstate Shipment of Etiologic Agents | Proposed Rule | 2007-01-03T05:00:00Z | 2007 | 1 | 2007-01-03T05:00:00Z | 2007-03-06T04:59:59Z | 2011-06-11T17:28:21Z | E6-21723 | 0 | 0 | 09000064801f1cc2 |
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;