documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
4 rows where docket_id = "FDA-2020-D-1138" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FDA-2020-D-1138-0147 | FDA | None FDA-2020-D-1138 | Guidance Documents Related to Coronavirus Disease 2019; Availability | Notice | Notice of Availability | 2021-10-06T04:00:00Z | 2021 | 10 | 2021-10-06T04:00:00Z | 2021-10-06T15:29:16Z | 2021-21798 | 0 | 0 | 0900006484dbc9ed | |
| FDA-2020-D-1138-0144 | FDA | None FDA-2020-D-1138 | Enforcement Policy for Face Masks, Barrier Face Coverings, Face Shields, Surgical Masks, and Respirators During the Coronavirus Disease (COVID-19) Public Health Emergency (Revised); Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2021-09-15T04:00:00Z | 2021 | 9 | 2021-09-15T04:00:00Z | 2023-11-08T04:59:59Z | 2023-11-07T02:00:58Z | 0 | 0 | 0900006484d826cf | |
| FDA-2020-D-1138-0138 | FDA | None FDA-2020-D-1138 | Coagulation Systems for Measurement of Viscoelastic Properties: Enforcement Policy During the Coronavirus Disease 2019 (COVID-19) Public Health Emergency; Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2021-01-14T05:00:00Z | 2021 | 1 | 2021-01-14T05:00:00Z | 2023-11-08T04:59:59Z | 2023-05-24T21:12:03Z | 0 | 0 | 09000064849f2c09 | |
| FDA-2020-D-1138-0137 | FDA | None FDA-2020-D-1138 | Guidance Documents Related to Coronavirus Disease 2019; Availability | Notice | Notice of Availability | 2021-01-04T05:00:00Z | 2021 | 1 | 2021-01-04T05:00:00Z | 2021-01-04T14:21:13Z | 2020-29058 | 0 | 0 | 09000064849db7ae |
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;