documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "CDC", document_type = "Rule" and posted_year = 2020 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, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| CDC-2020-0033-0221 | CDC | Control of Communicable Diseases; Foreign Quarantine: Suspension of Introduction of Persons into United States from Designated Foreign Countries or Places for Public Health Purposes CDC-2020-0033 | Control of Communicable Diseases; Foreign Quarantine: Suspension of the Right To Introduce and Prohibition of Introduction of Persons Into United States From Designated Foreign Countries or Places for Public Health Purposes | Rule | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-09-11T12:27:39Z | 2020–20036 | 0 | 0 | 0900006484851c47 | |||
| CDC_FRDOC_0001-0122 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Control of Communicable Diseases; Foreign Quarantine: Suspension of the Right to Introduce and Prohibition of Introduction of Persons into United States from Designated Foreign Countries or Places for Public Health Purposes | Rule | 2020-09-11T04:00:00Z | 2020 | 9 | 2020-09-11T04:00:00Z | 2020-09-11T11:47:59Z | 2020-20036 | 0 | 0 | 0900006484851fcf | ||
| CDC_FRDOC_0001-0121 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Control of Communicable Diseases: Importation of Human Remains | Rule | 2020-07-15T04:00:00Z | 2020 | 7 | 2020-07-15T04:00:00Z | 2020-08-15T03:59:59Z | 2020-07-15T11:56:50Z | 2020-12931 | 0 | 0 | 0900006484763917 | |
| CDC-2020-0036-0001 | CDC | Approval Tests and Standards for Air-Purifying Particulate Respirators CDC-2020-0036 | Approval Tests and Standards for Air-Purifying Particulate Respirators | Rule | 2020-04-14T04:00:00Z | 2020 | 4 | 2020-04-14T04:00:00Z | 2020-08-13T03:59:59Z | 2020-08-13T01:01:38Z | 2020-07804 | 0 | 0 | 09000064844a2609 | |
| CDC_FRDOC_0001-0118 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Order Suspending Introduction of Persons from a Country Where a Communicable Disease Exists | Rule | 2020-03-24T04:00:00Z | 2020 | 3 | 2020-03-24T04:00:00Z | 2020-03-24T12:00:19Z | 2020-06241 | 0 | 0 | 09000064844635f1 | ||
| CDC-2020-0033-0002 | CDC | Control of Communicable Diseases; Foreign Quarantine: Suspension of Introduction of Persons into United States from Designated Foreign Countries or Places for Public Health Purposes CDC-2020-0033 | Control of Communicable Diseases; Foreign Quarantine: Suspension of Introduction of Persons into United States from Designated Foreign Countries or Places for Public Health Purposes | Rule | 2020-03-24T04:00:00Z | 2020 | 3 | 2020-03-24T04:00:00Z | 2020-04-24T03:59:59Z | 2020-04-25T01:00:30Z | 2020-06238 | 0 | 0 | 09000064844635f9 | |
| CDC-2020-0013-0001 | CDC | Control of Communicable Diseases; Foreign Quarantine CDC-2020-0013 | Control of Communicable Diseases; Foreign Quarantine | Rule | 2020-02-12T05:00:00Z | 2020 | 2 | 2020-02-12T05:00:00Z | 2020-03-14T03:59:59Z | 2020-03-14T01:00:34Z | 2020–02731 | 0 | 0 | 0900006484358091 | |
| CDC_FRDOC_0001-0114 | CDC | Recently Posted CDC Rules and Notices. CDC_FRDOC_0001 | Control of Communicable Diseases; Foreign Quarantine | Rule | 2020-02-12T05:00:00Z | 2020 | 2 | 2020-02-12T05:00:00Z | 2020-03-14T03:59:59Z | 2020-03-14T01:01:30Z | 2020-02731 | 0 | 0 | 09000064843581e4 | |
| CDC-2019-0050-0004 | CDC | Guidelines for Determining the Probability of Causation under the Energy Employees Occupational Illness Compensation Program Act of 2000; Technical Amendments CDC-2019-0050 | Guidelines for Determining the Probability of Causation under the Energy Employees Occupational Illness Compensation Program Act of 2000; Technical Amendments | Rule | 2020-01-30T05:00:00Z | 2020 | 1 | 2020-01-30T05:00:00Z | 2020-01-30T14:02:06Z | 2020-00636 | 0 | 0 | 090000648430a9bb |
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;