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-1301" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, 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-1301-0006 | FDA | None FDA-2020-D-1301 | Q3C(R8) Impurities: Guidance for Residual Solvents; International Council for Harmonisation; Guidance for Industry; Availability | Notice | Notice of Availability | 2021-12-13T05:00:00Z | 2021 | 12 | 2021-12-13T05:00:00Z | 2021-12-13T14:32:26Z | 2021-26889 | 0 | 0 | 0900006484ec09b9 | |
| FDA-2020-D-1301-0007 | FDA | None FDA-2020-D-1301 | Q3C(R8) Impurities: Guidance for Residual Solvents; Guidance for Industry | Other | Guidance | 2021-12-13T05:00:00Z | 2021 | 12 | 2021-12-13T05:00:00Z | 2024-11-12T23:35:03Z | 1 | 0 | 0900006484ec1498 | ||
| FDA-2020-D-1301-0004 | FDA | None FDA-2020-D-1301 | Q3C(R8) Recommendations for the Permitted Daily Exposures for Three Solvents—2-Methyltetrahydrofuran Cyclopentyl Methyl Ether, and Tert- Butyl Alcohol—According to the Maintenance Procedures for the Guidance Q3C Impurities: Solvents; International Council for Harmonisation; Draft Guidance for Industry; Availability | Notice | Correction | 2020-06-05T04:00:00Z | 2020 | 6 | 2020-06-05T04:00:00Z | 2020-06-05T13:26:42Z | C1-2020-11280 | 0 | 0 | 09000064846cd7b2 | |
| FDA-2020-D-1301-0001 | FDA | None FDA-2020-D-1301 | Q3C(R8) Recommendations for the Permitted Daily Exposures for Three Solvents--2-Methyltetrahydrofuran, Cyclopentyl Methyl Ether, and Tert- Butyl Alcohol--According to the Maintenance Procedures for the Guidance Q3C Impurities: Residual Solvents; International Council for Harmonisation; Draft Guidance for Industry; Availability | Notice | Notice of Availability | 2020-05-27T04:00:00Z | 2020 | 5 | 2020-05-27T04:00:00Z | 2024-07-27T03:59:59Z | 2020-06-08T16:22:41Z | 2020-11280 | 0 | 0 | 09000064846b1ae5 |
| FDA-2020-D-1301-0002 | FDA | None FDA-2020-D-1301 | Q3C R8 Recommendations for the Permitted Daily Exposures for Three Solvents-2-Methyltetrahydrofuran, Cyclopentyl Methyl Ether, and Tert- Butyl Alcohol-According to the Maintenance Procedures for the Guidance Q3C Impurities: Residual Solvents; International Council for Harmonisation; Draft Guidance for Industry | Other | Guidance | 2020-05-27T04:00:00Z | 2020 | 5 | 2020-05-27T04:00:00Z | 2020-07-27T03:59:59Z | 2024-11-12T23:20:21Z | 1 | 0 | 09000064846b1d51 |
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;