documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "HHS-OS-2020-0012" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- HHS 8
| 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-0012-0595 | HHS | Securing Updated and Necessary Statutory Evaluations Timely HHS-OS-2020-0012 | Securing Updated and Necessary Statutory Evaluations Timely; Withdrawal | Rule | 2022-05-27T04:00:00Z | 2022 | 5 | 2022-05-27T04:00:00Z | 2022-05-27T18:23:55Z | 2022-11477 | 0 | 0 | 09000064850fd897 | ||
| HHS-OS-2020-0012-0594 | HHS | Securing Updated and Necessary Statutory Evaluations Timely HHS-OS-2020-0012 | Securing Updated and Necessary Statutory Evaluations Timely; Administrative Delay of Effective Date | Rule | 2022-03-04T05:00:00Z | 2022 | 3 | 2022-03-04T05:00:00Z | 2022-03-04T15:11:02Z | 2022-04524 | 0 | 0 | 0900006484fb9f02 | ||
| HHS-OS-2020-0012-0541 | HHS | Securing Updated and Necessary Statutory Evaluations Timely HHS-OS-2020-0012 | Securing Updated and Necessary Statutory Evaluations Timely; Proposal to Withdraw or Repeal | Proposed Rule | 2021-10-29T04:00:00Z | 2021 | 10 | 2021-10-29T04:00:00Z | 2021-12-29T04:59:59Z | 2022-01-13T15:17:54Z | 2021-23472 | 0 | 0 | 0900006484dffa3c | |
| HHS-OS-2020-0012-0535 | HHS | Securing Updated and Necessary Statutory Evaluations Timely HHS-OS-2020-0012 | Securing Updated and Necessary Statutory Evaluations Timely | Rule | 2021-01-19T05:00:00Z | 2021 | 1 | 2021-01-19T05:00:00Z | 2022-03-04T15:11:45Z | 2021-00597 | 0 | 0 | 09000064849f8500 | ||
| HHS-OS-2020-0012-0518 | HHS | Securing Updated and Necessary Statutory Evaluations Timely HHS-OS-2020-0012 | Review NPRM Public Hearing Recording-20201123 1504-1 | Supporting & Related Material | 2020-12-28T05:00:00Z | 2020 | 12 | 2020-12-28T17:33:54Z | 0 | 0 | 09000064849ccb41 | ||||
| HHS-OS-2020-0012-0501 | HHS | Securing Updated and Necessary Statutory Evaluations Timely HHS-OS-2020-0012 | Public Hearing - November 23, 2020 | Supporting & Related Material | 2020-12-09T05:00:00Z | 2020 | 12 | 2020-12-09T16:17:54Z | 0 | 0 | 0900006484990645 | ||||
| HHS-OS-2020-0012-0003 | HHS | Securing Updated and Necessary Statutory Evaluations Timely HHS-OS-2020-0012 | HHS Regulatory Streamlining Analysis | Supporting & Related Material | 2020-11-05T05:00:00Z | 2020 | 11 | 2020-11-05T17:32:59Z | 0 | 0 | 090000648494d333 | ||||
| HHS-OS-2020-0012-0001 | HHS | Securing Updated and Necessary Statutory Evaluations Timely HHS-OS-2020-0012 | Securing Updated and Necessary Statutory Evaluations Timely | Proposed Rule | 2020-11-04T05:00:00Z | 2020 | 11 | 2020-11-04T05:00:00Z | 2021-01-05T04:59:59Z | 2022-01-08T02:00:27Z | 2020-23888 | 0 | 0 | 090000648494a9db |
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;