documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "HHS", document_type = "Notice" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_date, posted_month, comment_start_date, comment_end_date, withdrawn, 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-OPHS-2009-0016-0001 | HHS | OHRP Draft Guidance on IRB Continuing Review of Research HHS-OPHS-2009-0016 | OHRP Draft Guidance on Continuing Review of Research | Notice | 2009-11-10T05:00:00Z | 2009 | 11 | 2009-11-10T05:00:00Z | 2010-01-06T04:59:59Z | 2009-11-10T20:56:05Z | E9-26828 | 0 | 0 | 0900006480a55367 | |
| HHS-OPHS-2009-0017-0001 | HHS | OHRP Draft Guidance on Conditional IRB Approval HHS-OPHS-2009-0017 | Guidance on Institutional Review Board Approval of Research with Conditions | Notice | 2009-11-10T05:00:00Z | 2009 | 11 | 2009-11-10T05:00:00Z | 2010-01-06T04:59:59Z | 2009-11-10T21:24:41Z | E9-26830 | 0 | 0 | 0900006480a5536a | |
| HHS-OS-2009-0015-0001 | HHS | Interim Final Rules for Sections 101 through 103 of the Genetic Information Nondiscrimination Act of 2008 HHS-OS-2009-0015 | Interim Final Rules for Sections 101 through 103 of the Genetic Information Nondiscrimination Act of 2008 | Notice | 2009-10-14T00:00:00Z | 2009 | 10 | 2009-12-01T19:48:24Z | 0 | 1 | 0900006480a41b9e | ||||
| HHS-OS-2009-0013-0001 | HHS | Requirements Documents for Standards Harmonizations HHS-OS-2009-0013 | Federal Register Notice for Public Comment | Notice | 2009-10-01T04:00:00Z | 2009 | 10 | 2009-10-01T04:00:00Z | 2009-10-20T03:59:59Z | 2009-10-01T20:22:33Z | 0 | 0 | 0900006480a36918 | ||
| HHS-OS-2009-0009-0001 | HHS | Regional Extension Program HHS-OS-2009-0009 | Notice for public comment on Regional Extension Centers | Notice | 2009-08-11T04:00:00Z | 2009 | 8 | 2009-05-28T19:07:02Z | 2009-06-12T03:59:59Z | 2009-08-12T19:07:05Z | 101 | 0 | 0 | 09000064809fea73 | |
| HHS-OS-2009-0008-0001 | HHS | Meaningful use of Healthcare Information Technology HHS-OS-2009-0008 | Notice for public comment of initial Meaningful Use Definition | Notice | 2009-07-20T04:00:00Z | 2009 | 7 | 2009-06-18T23:59:45Z | 2009-06-27T03:59:59Z | 2009-07-26T04:56:56Z | 116 | 0 | 0 | 09000064809f11ac | |
| HHS-OS-2022-0008-0001 | HHS | HHS 2022 Publications HHS-OS-2022-0008 | Decision To Evaluate a Petition To Designate a Class of Employees for the Lake Ontario Ordnance Works, Niagara Falls, New York, To Be Included in the Special ExposureCohort | Notice | 2009-06-18T04:00:00Z | 2009 | 6 | 2024-01-17T20:30:18Z | E9-14306 | 0 | 0 | 09000064809d24be | |||
| HHS-OS-2009-0006-0011 | HHS | Request for Comment on Minimum Requirements for Criteria in Grant Applications Under the National All Schedules Prescription Electronic Reporting Act of 2005 (NASPER HHS-OS-2009-0006 | ASAP Comment On Proposed Minimum Requirments | Notice | 2009-06-05T04:00:00Z | 2009 | 6 | 2009-06-05T04:00:00Z | 2009-06-05T16:35:55Z | 0 | 0 | 09000064809c604a | |||
| HHS-OS-2009-0006-0012 | HHS | Request for Comment on Minimum Requirements for Criteria in Grant Applications Under the National All Schedules Prescription Electronic Reporting Act of 2005 (NASPER HHS-OS-2009-0006 | Comment on Minimun Standards - DE- Maine | Notice | 2009-06-05T04:00:00Z | 2009 | 6 | 2009-06-05T04:00:00Z | 2009-06-05T17:46:58Z | 0 | 0 | 09000064809c6acc | |||
| HHS-OS-2009-0006-0001 | HHS | Request for Comment on Minimum Requirements for Criteria in Grant Applications Under the National All Schedules Prescription Electronic Reporting Act of 2005 (NASPER HHS-OS-2009-0006 | Request for Comment on Minimum Standards for the National All Schedules Prescription Electronic Reporting Act | Notice | 2009-05-27T04:00:00Z | 2009 | 5 | 2009-05-27T04:00:00Z | 2009-05-30T03:59:59Z | 2009-05-27T19:46:13Z | 81 | 0 | 0 | 09000064809b6a1e |
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;