documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2015-N-3534" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-3534-0015 | FDA | None FDA-2015-N-3534 | Testimony from National Community Pharmacists Association | Other | Testimony | 2017-11-24T05:00:00Z | 2017 | 11 | 2017-11-24T05:00:00Z | 2017-11-24T15:38:10Z | 0 | 0 | 0900006482c93748 | ||
| FDA-2015-N-3534-0013 | FDA | None FDA-2015-N-3534 | Nomination from Fagron Inc. | Other | Nomination | 2017-10-04T04:00:00Z | 2017 | 10 | 2017-10-04T04:00:00Z | 2017-10-04T20:49:30Z | 0 | 0 | 0900006482b94c91 | ||
| FDA-2015-N-3534-0014 | FDA | None FDA-2015-N-3534 | Nomination from National Community Pharmacists Association (NCPA) | Other | Nomination | 2017-10-04T04:00:00Z | 2017 | 10 | 2017-10-04T04:00:00Z | 2017-10-04T20:55:47Z | 0 | 0 | 0900006482b9c2d5 | ||
| FDA-2015-N-3534-0012 | FDA | None FDA-2015-N-3534 | Nomination from PCCA | Other | Nomination | 2017-09-21T04:00:00Z | 2017 | 9 | 2017-09-21T04:00:00Z | 2017-09-21T14:44:04Z | 0 | 0 | 0900006482b6343a | ||
| FDA-2015-N-3534-0011 | FDA | None FDA-2015-N-3534 | Amendment from PCCA, NCPA, IACP, Fagron | Other | Amendment | 2017-09-20T04:00:00Z | 2017 | 9 | 2017-09-20T04:00:00Z | 2017-09-20T14:11:08Z | 0 | 0 | 0900006482b5c535 | ||
| FDA-2015-N-3534-0010 | FDA | None FDA-2015-N-3534 | Nomination from Technology and Business Law Advisors, LLC (TBLA) | Other | Nomination | 2017-09-19T04:00:00Z | 2017 | 9 | 2017-09-19T04:00:00Z | 2017-09-19T15:34:50Z | 0 | 0 | 0900006482b4575e | ||
| FDA-2015-N-3534-0007 | FDA | None FDA-2015-N-3534 | Nomination from Technology and Business Law Advisors, LLC (TBLA) | Other | Nomination | 2017-08-04T04:00:00Z | 2017 | 8 | 2017-08-04T04:00:00Z | 2017-08-04T13:52:55Z | 0 | 0 | 09000064829a2f60 | ||
| FDA-2015-N-3534-0006 | FDA | None FDA-2015-N-3534 | Nomination from PCCA | Other | Nomination | 2017-05-24T04:00:00Z | 2017 | 5 | 2017-05-24T04:00:00Z | 2017-05-24T18:52:36Z | 0 | 0 | 0900006482607d2a |
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;