documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FDA-2020-D-1136" and posted_year = 2023 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, open_for_comment, posted_date (date), comment_start_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-1136-0085 | FDA | None FDA-2020-D-1136 | Development of Monoclonal Antibody Products Targeting SARS-CoV-2 for Emergency Use Authorization | Other | Guidance | 2023-12-22T05:00:00Z | 2023 | 12 | 2023-12-22T05:00:00Z | 2024-11-12T06:25:32Z | 1 | 0 | 090000648634e5c5 | ||
| FDA-2020-D-1136-0084 | FDA | None FDA-2020-D-1136 | Development of Monoclonal Antibody Products Targeting SARS–CoV–2 for Emergency Use Authorization; Guidance for Industry; Availability | Notice | Notice of Availability | 2023-12-21T05:00:00Z | 2023 | 12 | 2023-12-21T16:06:18Z | 2023-28092 | 0 | 0 | 090000648634e184 | ||
| FDA-2020-D-1136-0083 | FDA | None FDA-2020-D-1136 | Food and Drug Administration; Center of Drug Evaluation and Research Guidance Documents Related to Coronavirus Disease 2019, Expiration | Notice | Withdrawal | 2023-10-19T04:00:00Z | 2023 | 10 | 2023-10-19T04:00:00Z | 2023-10-19T13:20:17Z | 2023-23071 | 0 | 0 | 090000648610bf60 | |
| FDA-2020-D-1136-0082 | FDA | None FDA-2020-D-1136 | Guidance Documents Related to Coronavirus Disease 2019 (COVID–19) | Notice | General Notice | 2023-03-13T04:00:00Z | 2023 | 3 | 2023-03-13T04:00:00Z | 2023-03-13T14:28:59Z | 2023-05094 | 0 | 0 | 090000648579bdb9 | |
| FDA-2020-D-1136-0081 | FDA | None FDA-2020-D-1136 | Temporary Policy on Repackaging or Combining Propofol Drug Products During the COVID–19 Public Health Emergency; Withdrawal of Guidance | Notice | Withdrawal | 2023-02-10T05:00:00Z | 2023 | 2 | 2023-02-10T05:00:00Z | 2023-02-10T15:41:04Z | 2023-02809 | 0 | 0 | 0900006485653eb7 |
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;