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 = "Notice" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-OS-2020-0016-0001 | HHS | Regulatory Relief to Support Economic Recovery; Request for Information (RFI) HHS-OS-2020-0016 | Regulatory Relief To Support Economic Recovery; Request for Information (RFI) | Notice | 2020-11-30T05:00:00Z | 2020 | 11 | 2020-11-30T05:00:00Z | 2020-12-29T04:59:59Z | 2020-12-30T02:02:26Z | 2020-25812 | 0 | 0 | 090000648497de6e | |
| HHS-OS-2020-0017-0001 | HHS | Effective and Innovative Approaches/Best Practices in Health Care in Response to the COVID-19 Pandemic HHS-OS-2020-0017 | Effective and Innovative Approaches/Best Practices in Health Care in Response to the COVID-19 Pandemic; Request for Information | Notice | 2020-11-24T05:00:00Z | 2020 | 11 | 2020-11-24T05:00:00Z | 2020-12-25T04:59:59Z | 2020-12-26T02:01:09Z | 2020-25795 | 0 | 0 | 09000064849739cc | |
| HHS-OPHS-2020-0005-0001 | HHS | Secretary's Advisory Committee on Human Research Protections (SACHRP) October 20, 2020 Meeting HHS-OPHS-2020-0005 | Meeting of the Secretary's Advisory Committee (SACHRP) on Human Research Protections | Notice | 2020-09-25T04:00:00Z | 2020 | 9 | 2020-10-15T04:00:00Z | 2020-10-15T14:45:11Z | 2020-21232 | 0 | 0 | 090000648490b1e6 | ||
| HHS-OPHS-2020-0004-0001 | HHS | Meeting of the Secretary's Advisory Committee on Human Research Protections (SACHRP) July 22-23, 2020 HHS-OPHS-2020-0004 | Meeting of the Secretary's Advisory Committee on Human Research Protections | Notice | 2020-07-06T04:00:00Z | 2020 | 7 | 2020-07-06T04:00:00Z | 2020-07-06T17:39:29Z | 2020-14431 | 0 | 0 | 0900006484728d9a | ||
| HHS-OPHS-2020-0003-0001 | HHS | Meeting of the Secretary's Advisory Committee on Human Research Protections HHS-OPHS-2020-0003 | Meeting of the Secretary's Advisory Committee on Human Research Protections | Notice | 2020-02-25T05:00:00Z | 2020 | 2 | 2020-07-06T04:00:00Z | 2020-07-06T16:37:55Z | 2020-03695 | 0 | 0 | 090000648470f51f | ||
| HHS-OS-2019-0015-0001 | HHS | Solicitation for Public Comments on Questions from the National Clinical Care Commission HHS-OS-2019-0015 | Solicitation for Public Comments on Questions From the National Clinical Care Commission | Notice | 2020-01-15T05:00:00Z | 2020 | 1 | 2020-01-15T05:00:00Z | 2020-04-01T03:59:59Z | 2020-04-01T01:00:42Z | 2020-00505 | 0 | 0 | 09000064842ab739 |
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;