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 = "Proposed Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, posted_month, 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-OS-2022-0008-0516 | HHS | HHS 2022 Publications HHS-OS-2022-0008 | Patient Protection and Affordable Care Act: Benefit and Payment Parameters for 2019 | Proposed Rule | 2017-11-02T04:00:00Z | 2017 | 11 | 2017-11-02T04:00:00Z | 2017-11-28T04:59:59Z | 2022-05-27T16:46:08Z | 2017-23599 | 0 | 0 | 0900006482c3799c | |
| HHS-OS-2017-0002-0001 | HHS | Removing Barriers for Religious and Faith-Based Organizations To Participate in HHS Programs and Receive Public Funding HHS-OS-2017-0002 | Removing Barriers for Religious and Faith-Based Organizations to Participate in HHS Programs and Receive Public Funding | Proposed Rule | 2017-10-25T04:00:00Z | 2017 | 10 | 2017-10-25T04:00:00Z | 2017-11-25T04:59:59Z | 2017-12-21T02:07:10Z | 2017-23257 | 0 | 0 | 0900006482c021f3 | |
| HHS-OS-2022-0008-0515 | HHS | HHS 2022 Publications HHS-OS-2022-0008 | Administrative Simplification: Certification of Compliance for Health Plans; Withdrawal | Proposed Rule | 2017-10-04T04:00:00Z | 2017 | 10 | 2017-10-04T04:00:00Z | 2022-05-27T16:46:07Z | 2017-21424 | 0 | 0 | 0900006482b9885c | ||
| HHS-OS-2022-0008-0513 | HHS | HHS 2022 Publications HHS-OS-2022-0008 | 340B Drug Pricing Program Ceiling Price and Manufacturer Civil Monetary Penalties Regulation | Proposed Rule | 2017-08-21T04:00:00Z | 2017 | 8 | 2017-08-21T04:00:00Z | 2022-05-27T16:46:05Z | 2017-17633 | 0 | 0 | 0900006482a8b921 | ||
| HHS-OS-2022-0008-0512 | HHS | HHS 2022 Publications HHS-OS-2022-0008 | Patient Protection and Affordable Care Act: Reducing Regulatory Burdens and Improving Health Care Choices To Empower Patients | Proposed Rule | 2017-06-12T04:00:00Z | 2017 | 6 | 2017-06-12T04:00:00Z | 2022-05-27T16:46:04Z | 0 | 0 | 09000064826c4c8d | |||
| HHS-OS-2022-0008-0505 | HHS | HHS 2022 Publications HHS-OS-2022-0008 | Patient Protection and Affordable Care Act; Market Stabilization | Proposed Rule | 2017-02-17T05:00:00Z | 2017 | 2 | 2017-02-17T05:00:00Z | 2022-05-27T16:45:57Z | 2017-03027 | 0 | 0 | 09000064824ca4ff | ||
| HHS-OS-2016-0005-0378 | HHS | Confidentiality of Substance Use Disorder Patient Records HHS-OS-2016-0005 | Confidentiality of Substance Use Disorder Patient Records | Proposed Rule | 2017-01-18T05:00:00Z | 2017 | 1 | 2017-01-18T05:00:00Z | 2017-02-18T04:59:59Z | 2018-01-09T13:53:47Z | 2017-00742 | 0 | 0 | 0900006482481d50 |
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;