documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2008-N-0326" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_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-2008-N-0326-0348 | FDA | None FDA-2008-N-0326 | Reference 12 - New England Journal of Medicine, Mechanism of Disease The New B-Lactamases re New Animal Drugs; Cephalosporin Drugs; Extralabel Animal Drug Use; Order of Prohibition, FDA-2008-N-0326-0001 - Background | Supporting & Related Material | Background Material | 2012-07-04T04:00:00Z | 2012 | 7 | 2012-07-04T16:54:14Z | 0 | 0 | 090000648064e653 | |||
| FDA-2008-N-0326-0346 | FDA | None FDA-2008-N-0326 | References (Pfizer - Comment) re FDA-2008-N-0326-0165 - Background | Supporting & Related Material | Background Material | 2012-07-04T04:00:00Z | 2012 | 7 | 2012-07-04T15:15:48Z | 0 | 0 | 0900006480788190 | |||
| FDA-2008-N-0326-0345 | FDA | None FDA-2008-N-0326 | Office of the Executive Secretariat (OES) Response to Council of State Territorial Epidemiologists (CSTE) - Letter re FDA-2008-N-0326-0333 | Other | Letter(s) | 2012-07-03T04:00:00Z | 2012 | 7 | 2012-07-04T15:49:08Z | 0 | 0 | 09000064810121c1 | |||
| FDA-2008-N-0326-0338 | FDA | None FDA-2008-N-0326 | See FDA-2008-N-0326-0302 | Supporting & Related Material | Reference (external attachments) | 2012-04-18T04:00:00Z | 2012 | 4 | 2012-04-24T21:16:10Z | 0 | 0 | 0900006480fd8b41 | |||
| FDA-2008-N-0326-0333 | FDA | None FDA-2008-N-0326 | See FDA-2008-N-0326-0344 | Supporting & Related Material | Background Material | 2012-03-29T04:00:00Z | 2012 | 3 | 2012-07-04T15:53:44Z | 0 | 0 | 0900006480fe3bfb | |||
| FDA-2008-N-0326-0269 | FDA | None FDA-2008-N-0326 | American Academy of Pediatrics re FDA-2008-N-0326-0268 | Supporting & Related Material | Reference (external attachments) | 2012-03-06T05:00:00Z | 2012 | 3 | 2012-03-06T16:28:40Z | 0 | 0 | 0900006480fcb04e | |||
| FDA-2008-N-0326-0283 | FDA | None FDA-2008-N-0326 | The Veterinary Pharmacy (TVP), Inc. - Request for Extension | Other | Request for Extension | 2012-03-06T05:00:00Z | 2012 | 3 | 2012-01-06T05:00:00Z | 2012-03-07T04:59:59Z | 2012-03-08T20:13:45Z | 0 | 0 | 0900006480fcf456 | |
| FDA-2008-N-0326-0177 | FDA | None FDA-2008-N-0326 | New Animal Drugs; Orders of Prohibition: Cephalosporin Drugs; Extralabel Animal Drug Use | Rule | Final Rule | 2012-01-06T05:00:00Z | 2012 | 1 | 2012-01-06T05:00:00Z | 2012-03-07T04:59:59Z | 2012-07-05T02:01:56Z | 2012-00035 | 0 | 0 | 0900006480f8ecbc |
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;