documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2017-N-0002" 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-2017-N-0002-0008 | FDA | None FDA-2017-N-0002 | New Animal Drugs: Approval of New Animal Drug Applications | Rule | Final Rule | 2017-12-13T05:00:00Z | 2017 | 12 | 2017-12-13T05:00:00Z | 2017-12-13T17:06:49Z | 2017-26753 | 0 | 0 | 0900006482d01ebd | |
| FDA-2017-N-0002-0007 | FDA | None FDA-2017-N-0002 | New Animal Drugs; Approval of New Animal Drug Applications; Change of Sponsor's Address | Rule | Correction | 2017-09-18T04:00:00Z | 2017 | 9 | 2017-09-18T04:00:00Z | 2017-09-18T15:16:11Z | 2017-19602 | 0 | 0 | 0900006482b47445 | |
| FDA-2017-N-0002-0006 | FDA | None FDA-2017-N-0002 | Upsher-Smith Laboratories, Inc.; Withdrawal of Approval of an Abbreviated New Drug Application for PROPRANOLOL HYDROCHLORIDE | Notice | Withdrawal | 2017-08-30T04:00:00Z | 2017 | 8 | 2017-08-30T04:00:00Z | 2017-08-30T13:51:31Z | 2017-18375 | 0 | 0 | 0900006482af3ed3 | |
| FDA-2017-N-0002-0005 | FDA | None FDA-2017-N-0002 | B. Braun Medical, Inc.; Withdrawal of Approval of Three New Drug Applications and One Abbreviated New Drug Application | Notice | Withdrawal | 2017-08-03T04:00:00Z | 2017 | 8 | 2017-08-03T04:00:00Z | 2017-08-03T13:26:47Z | 2017-16377 | 0 | 0 | 09000064829997eb | |
| FDA-2017-N-0002-0004 | FDA | None FDA-2017-N-0002 | New Animal Drugs; Withdrawal of Approval of a New Animal Drug Application | Notice | Withdrawal | 2017-07-12T04:00:00Z | 2017 | 7 | 2017-07-12T04:00:00Z | 2017-07-12T13:24:20Z | 2017-14566 | 0 | 0 | 0900006482910b37 | |
| FDA-2017-N-0002-0002 | FDA | None FDA-2017-N-0002 | New Animal Drugs; Approval of New Animal Drug Applications; Withdrawal of Approval of New Animal Drug Applications; Changes of Sponsorship | Rule | Final Rule | 2017-05-10T04:00:00Z | 2017 | 5 | 2017-05-10T04:00:00Z | 2017-05-10T13:27:17Z | 2017-09364 | 0 | 0 | 090000648259fb1d | |
| FDA-2017-N-0002-0003 | FDA | None FDA-2017-N-0002 | New Animal Drugs; Withdrawal of Approval of a New Animal Drug Application | Rule | Withdrawal | 2017-05-10T04:00:00Z | 2017 | 5 | 2017-05-10T04:00:00Z | 2017-05-10T13:44:12Z | 2017-09365 | 0 | 0 | 090000648259fb5e | |
| FDA-2017-N-0002-0001 | FDA | None FDA-2017-N-0002 | New Animal Drugs: Withdrawal of Approval of New Animal Drug Application | Rule | Withdrawal | 2017-03-01T05:00:00Z | 2017 | 3 | 2017-03-01T05:00:00Z | 2017-03-01T14:51:09Z | 2017-03931 | 0 | 0 | 09000064824e3768 |
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;