documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2018-N-0002" 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-2018-N-0002-0006 | FDA | None FDA-2018-N-0002 | New Animal Drugs: Approval of New Animal Drug Applications; Changes of Sponsorship | Rule | Final Rule | 2019-04-02T04:00:00Z | 2019 | 4 | 2019-04-02T04:00:00Z | 2019-04-02T13:09:20Z | 2019-06136 | 0 | 0 | 0900006483b571a1 | |
| FDA-2018-N-0002-0004 | FDA | None FDA-2018-N-0002 | New Animal Drugs; Withdrawal of Approval of New Animal Drug Application | Rule | Withdrawal | 2019-03-13T04:00:00Z | 2019 | 3 | 2019-03-13T04:00:00Z | 2019-03-13T13:19:26Z | 2019-04222 | 0 | 0 | 0900006483adaeb9 | |
| FDA-2018-N-0002-0005 | FDA | None FDA-2018-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 | 2019-03-13T04:00:00Z | 2019 | 3 | 2019-03-13T04:00:00Z | 2019-03-13T13:22:43Z | 2019-04226 | 0 | 0 | 0900006483adaeba | |
| FDA-2018-N-0002-0003 | FDA | None FDA-2018-N-0002 | New Animal Drugs; Approval of New Animal Drug Applications; Changes of Sponsorship; Change of a Sponsor’s Name and Address | Rule | Final Rule | 2018-12-18T05:00:00Z | 2018 | 12 | 2018-12-18T05:00:00Z | 2018-12-18T13:42:56Z | 2018-27238 | 0 | 0 | 09000064839a9063 | |
| FDA-2018-N-0002-0001 | FDA | None FDA-2018-N-0002 | New Animal Drugs; Withdrawal of Approval of New Animal Drug Applications | Rule | Withdrawal | 2018-09-28T04:00:00Z | 2018 | 9 | 2018-09-28T04:00:00Z | 2018-09-28T13:01:12Z | 2018-21147 | 0 | 0 | 090000648377f03a | |
| FDA-2018-N-0002-0002 | FDA | None FDA-2018-N-0002 | New Animal Drugs; Approval of New Animal Drug Applications; Withdrawal of Approval of New Animal Drug Applications; Changes of Sponsorship; Change of a Sponsor’s Name | Rule | Final Rule | 2018-09-28T04:00:00Z | 2018 | 9 | 2018-09-28T04:00:00Z | 2018-10-23T15:00:00Z | 2018-21146 | 0 | 0 | 090000648377f627 |
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;