documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "HHS", document_type = "Other" 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, 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-ASAM-2009-0022-0002 | HHS | Semiannual Regulatory Agenda - Fall 2009 HHS-ASAM-2009-0022 | Regulatory Plan - Fall 2009 | Other | 2009-12-07T11:31:47Z | 2009 | 12 | 2009-12-08T22:46:33Z | 0 | 0 | 0900006480a64dba | ||||
| HHS-ASAM-2009-0022-0001 | HHS | Semiannual Regulatory Agenda - Fall 2009 HHS-ASAM-2009-0022 | Semiannual Regulatory Agenda - Fall 2009 | Other | 2009-12-07T11:31:42Z | 2009 | 12 | 2009-12-08T22:45:41Z | 0 | 0 | 0900006480a64db9 | ||||
| HHS-OS-2009-0007-0002 | HHS | Proposed Rule on Buprenorpine Dispensing In Opioid Treatment Programs HHS-OS-2009-0007 | Interim Final Rule - Buprenorphine In Certified Opioid Treatment Programs - May 2003 | Other | 2009-07-08T04:00:00Z | 2009 | 7 | 2009-07-08T04:00:00Z | 2009-07-08T12:57:53Z | 0 | 0 | 09000064809ebdfa | |||
| HHS-OS-2009-0006-0014 | 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 | NASPER Analysis of Comments | Other | 2009-07-06T04:00:00Z | 2009 | 7 | 2009-07-06T04:00:00Z | 2009-07-06T16:13:06Z | 0 | 0 | 09000064809e9757 | |||
| HHS-OS-2009-0006-0013 | 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 | NAPSER RFA | Other | 2009-07-06T04:00:00Z | 2009 | 7 | 2009-07-06T04:00:00Z | 2009-07-06T16:13:05Z | 0 | 0 | 09000064809e9755 | |||
| HHS-ASAM-2009-0005-0001 | HHS | Semiannual Regulatory Agenda - Spring 2009 HHS-ASAM-2009-0005 | Semiannual Regulatory Agenda - Spring 2009 | Other | 2009-05-10T16:42:45Z | 2009 | 5 | 2009-05-10T23:29:48Z | 0 | 0 | 090000648098492d | ||||
| HHS-OCR-2009-0004-0001 | HHS | Guidance Specifying the Technologies and Methodologies That Render Protected Health Information Unusable, Unreadable, or Indecipherable to Unauthorized Individuals for Purposes of the Breach Notification Requirements Under Section 13402 of the HITECH Act; Request for Information HHS-OCR-2009-0004 | American Recovery and Reinvestment Act of 2009: Guidance Specifying Technologies and Methodologies that Render Protected Health Information Unusable, etc., | Other | 2009-04-27T04:00:00Z | 2009 | 4 | 2009-04-27T04:00:00Z | 2009-05-22T03:59:59Z | 2009-04-27T15:25:11Z | 0 | 0 | 090000648096d1fb |
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;