documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2015-N-0101" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, 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-2015-N-0101-1497 | FDA | None FDA-2015-N-0101 | Meeting Request and Briefing Document Benzethonium Chloride (BZT) - In Vivo Efficacy | Other | Brief | 2020-12-10T05:00:00Z | 2020 | 12 | 2020-12-10T05:00:00Z | 2020-12-10T17:39:34Z | 0 | 0 | 09000064849960ea | ||
| FDA-2015-N-0101-1496 | FDA | None FDA-2015-N-0101 | America Cleaning Institute Meeting Request Cover Letter - BZT Efficacy | Other | Letter(s) | 2020-12-10T05:00:00Z | 2020 | 12 | 2020-12-10T05:00:00Z | 2020-12-10T17:39:21Z | 0 | 0 | 09000064849960e8 | ||
| FDA-2015-N-0101-1495 | FDA | None FDA-2015-N-0101 | The American CIeaning Institute Progress Report | Other | Report | 2020-12-04T05:00:00Z | 2020 | 12 | 2020-12-04T05:00:00Z | 2020-12-04T16:06:56Z | 0 | 0 | 0900006484986dcc | ||
| FDA-2015-N-0101-1494 | FDA | None FDA-2015-N-0101 | FDA Updated Response to ACI July 2020 Progress Report (ethanol bzk pmcx bzec pi) | Other | Letter(s) | 2020-11-23T05:00:00Z | 2020 | 11 | 2020-11-23T05:00:00Z | 2020-11-23T13:06:06Z | 0 | 0 | 0900006484970494 | ||
| FDA-2015-N-0101-1493 | FDA | None FDA-2015-N-0101 | FDA Response to ACI July 2020 Progress Report (ethanol bzk pmcx bzec pi) | Other | Agency Response | 2020-11-20T05:00:00Z | 2020 | 11 | 2020-11-20T05:00:00Z | 2020-11-20T14:38:10Z | 0 | 0 | 090000648496ca60 | ||
| FDA-2015-N-0101-1492 | FDA | None FDA-2015-N-0101 | ACI Advice November 18 2020 | Other | Letter(s) | 2020-11-20T05:00:00Z | 2020 | 11 | 2020-11-20T05:00:00Z | 2020-11-20T14:33:15Z | 0 | 0 | 090000648496c580 | ||
| FDA-2015-N-0101-1490 | FDA | None FDA-2015-N-0101 | Request for Extension from Cardinal Health | Other | Request for Extension | 2020-10-19T04:00:00Z | 2020 | 10 | 2020-10-19T04:00:00Z | 2020-10-19T14:58:37Z | 0 | 0 | 09000064849112cd | ||
| FDA-2015-N-0101-1489 | FDA | None FDA-2015-N-0101 | ACI BZT Monograph Meeting Minutes Written Responses | Supporting & Related Material | Meeting Materials | 2020-10-06T04:00:00Z | 2020 | 10 | 2020-10-06T14:57:14Z | 0 | 0 | 09000064848de17f | |||
| FDA-2015-N-0101-1491 | FDA | None FDA-2015-N-0101 | Advice Letter from FDA CDER to ACI Advice Povidone-Iodine-SP | Other | Letter(s) | 2020-09-30T04:00:00Z | 2020 | 9 | 2020-05-27T04:00:00Z | 2020-10-19T21:03:50Z | 0 | 0 | 0900006484918e18 |
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;