documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2020-D-1140" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-1140-0014 | FDA | None FDA-2020-D-1140 | 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:33:21Z | 2023-05094 | 0 | 0 | 090000648579bdbb | |
| FDA-2020-D-1140-0013 | FDA | None FDA-2020-D-1140 | Enforcement Policy Regarding Federal Veterinarian-Client-Patient Relationship Requirements To Facilitate Veterinary Telemedicine During the COVID–19 Outbreak; Withdrawal of Guidance | Notice | Withdrawal | 2022-12-21T05:00:00Z | 2022 | 12 | 2022-12-21T05:00:00Z | 2022-12-21T20:38:42Z | 2022-27673 | 0 | 0 | 09000064855488d5 | |
| FDA-2020-D-1140-0008 | FDA | None FDA-2020-D-1140 | Guidance Documents Related to Coronavirus Disease 2019; Availability | Notice | Notice of Availability | 2020-08-03T04:00:00Z | 2020 | 8 | 2020-08-03T04:00:00Z | 2020-08-03T15:35:20Z | 2020-16852 | 0 | 0 | 09000064847ccc0b | |
| FDA-2020-D-1140-0007 | FDA | None FDA-2020-D-1140 | Guidance Documents Related to Coronavirus Disease 2019 (COVID–19); Availability | Notice | Notice of Availability | 2020-06-26T04:00:00Z | 2020 | 6 | 2020-06-26T04:00:00Z | 2020-06-26T13:36:13Z | 2020-13829 | 0 | 0 | 090000648470f198 | |
| FDA-2020-D-1140-0005 | FDA | None FDA-2020-D-1140 | Guidance Documents Related to Coronavirus Disease 2019 (COVID–19); Availability | Notice | Notice of Availability | 2020-05-12T04:00:00Z | 2020 | 5 | 2020-05-12T04:00:00Z | 2020-05-12T13:21:38Z | 2020-10146 | 0 | 0 | 09000064845cd30d | |
| FDA-2020-D-1140-0004 | FDA | None FDA-2020-D-1140 | Reporting and Mitigating Animal Drug Shortages during the COVID-19 Public Health Emergency Guidance for Industry | Other | Guidance | 2020-05-07T04:00:00Z | 2020 | 5 | 2020-05-07T04:00:00Z | 2024-11-12T23:19:34Z | 1 | 0 | 0900006484574cc1 | ||
| FDA-2020-D-1140-0003 | FDA | None FDA-2020-D-1140 | Guidance on the Conduct and Review of Studies to Support New Animal Drug Development during the COVID-19 Public Health Emergency Guidance for Industry | Other | Guidance | 2020-04-03T04:00:00Z | 2020 | 4 | 2020-04-03T04:00:00Z | 2024-11-06T23:34:31Z | 1 | 0 | 0900006484485689 | ||
| FDA-2020-D-1140-0002 | FDA | None FDA-2020-D-1140 | Process for Making Available Guidance Documents Related to Coronavirus Disease 2019 | Notice | Announcement | 2020-03-25T04:00:00Z | 2020 | 3 | 2020-03-25T04:00:00Z | 2020-03-26T13:41:41Z | 2020-06222 | 0 | 0 | 090000648446b6e0 | |
| FDA-2020-D-1140-0001 | FDA | None FDA-2020-D-1140 | Enforcement Policy Regarding Federal VCPR Requirements to Facilitate Veterinary Telemedicine During the COVID-19 Outbreak Guidance for Industry | Other | Guidance | 2020-03-24T04:00:00Z | 2020 | 3 | 2020-03-24T04:00:00Z | 2024-11-12T23:18:54Z | 1 | 0 | 0900006484463e4f |
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;