documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FDA-2005-N-0453" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_month, 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-2005-N-0453-0051 | FDA | Over-the-Counter Drug Products; Safety and Efficacy Review; Additional Sunscreen Ingredients FDA-2005-N-0453 | MEMORANDUM OF MEETING MINUTES - BASF Bemotrizinol and Bisoctrizole October 12, 2017 | Other | Memorandum | 2017-11-15T05:00:00Z | 2017 | 11 | 2017-11-15T05:00:00Z | 2017-11-15T17:48:04Z | 0 | 0 | 0900006482c7b23a | ||
| FDA-2005-N-0453-0050 | FDA | Over-the-Counter Drug Products; Safety and Efficacy Review; Additional Sunscreen Ingredients FDA-2005-N-0453 | Revision from BASF (Morgan, Lewis & Bockius LLP) | Other | Correction(s) | 2017-09-29T04:00:00Z | 2017 | 9 | 2017-09-29T04:00:00Z | 2017-09-29T20:24:09Z | 0 | 0 | 0900006482b8cb9f | ||
| FDA-2005-N-0453-0049 | FDA | Over-the-Counter Drug Products; Safety and Efficacy Review; Additional Sunscreen Ingredients FDA-2005-N-0453 | Meeting Granted Letter BASF August 28 2017 Meeting Request | Other | Memorandum | 2017-09-19T04:00:00Z | 2017 | 9 | 2017-09-19T04:00:00Z | 2017-09-19T18:12:14Z | 0 | 0 | 0900006482b4f4e1 | ||
| FDA-2005-N-0453-0048 | FDA | Over-the-Counter Drug Products; Safety and Efficacy Review; Additional Sunscreen Ingredients FDA-2005-N-0453 | Meeting Materials from BASF (Morgan, Lewis & Bockius LLP) | Other | Meeting Exhibits | 2017-09-12T04:00:00Z | 2017 | 9 | 2017-09-12T04:00:00Z | 2017-09-29T20:24:44Z | 0 | 0 | 0900006482b2bf58 | ||
| FDA-2005-N-0453-0047 | FDA | Over-the-Counter Drug Products; Safety and Efficacy Review; Additional Sunscreen Ingredients FDA-2005-N-0453 | Request for Meeting from BASF (Morgan, Lewis & Bockius LLP) | Other | Request | 2017-09-01T04:00:00Z | 2017 | 9 | 2017-09-01T04:00:00Z | 2017-09-01T18:56:18Z | 0 | 0 | 0900006482b03dc4 |
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;