documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2011-P-0610" 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)
document_type 2
agency_id 1
- FDA 8
| 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-2011-P-0610-0010 | FDA | None FDA-2011-P-0610 | Petition Approval/Denial from FDA/CDER | Other | Citizen Petition | 2014-07-23T04:00:00Z | 2014 | 7 | 2014-07-23T04:00:00Z | 2014-07-23T19:35:50Z | 0 | 0 | 09000064817da617 | ||
| FDA-2011-P-0610-0009 | FDA | None FDA-2011-P-0610 | Attachments A through E Perrigo v. FDA Supplement from AbbVie Inc. Hogan Lovells US LLP | Supporting & Related Material | Background Material | 2014-06-12T04:00:00Z | 2014 | 6 | 2014-06-12T21:59:07Z | 0 | 0 | 09000064817202ba | |||
| FDA-2011-P-0610-0008 | FDA | None FDA-2011-P-0610 | Supplement from AbbVie Inc. Hogan Lovells US LLP | Other | Supplement (SUP) | 2014-06-12T04:00:00Z | 2014 | 6 | 2014-06-12T04:00:00Z | 2014-06-12T21:55:08Z | 0 | 0 | 090000648171fc35 | ||
| FDA-2011-P-0610-0005 | FDA | None FDA-2011-P-0610 | AbbVie Inc. (Hogan Lovells) - Supplement | Other | Supplement (SUP) | 2013-12-23T05:00:00Z | 2013 | 12 | 2013-12-23T05:00:00Z | 2013-12-23T17:55:57Z | 0 | 0 | 09000064814bb904 | ||
| FDA-2011-P-0610-0004 | FDA | None FDA-2011-P-0610 | Hogan Lovells LLP (behalf of AbbVie, Inc.) - Citizen Petition Supplement | Supporting & Related Material | Background Material | 2013-01-07T05:00:00Z | 2013 | 1 | 2013-01-07T16:35:55Z | 0 | 0 | 090000648119c7f7 | |||
| FDA-2011-P-0610-0003 | FDA | None FDA-2011-P-0610 | FDA/CDER Letter to Mayer Brown LLP, dated February 16, 2012 | Other | Letter(s) | 2012-04-05T04:00:00Z | 2012 | 4 | 2012-04-05T04:00:00Z | 2019-07-08T14:20:51Z | 0 | 0 | 0900006480fea041 | ||
| FDA-2011-P-0610-0002 | FDA | None FDA-2011-P-0610 | Acknowledgement Letter to Abbott Laboratories (Mayer Brown, LLP) | Other | Acknowledgement Letter/Receipt | 2011-09-01T04:00:00Z | 2011 | 9 | 2011-09-01T04:00:00Z | 2022-08-03T14:26:02Z | 0 | 0 | 0900006480ee6771 | ||
| FDA-2011-P-0610-0001 | FDA | None FDA-2011-P-0610 | Abbott Laboratories (Mayer Brown, LLP) - Citizen Petition | Other | Citizen Petition | 2011-09-01T04:00:00Z | 2011 | 9 | 2011-09-01T04:00:00Z | 2019-07-08T14:20:32Z | 0 | 0 | 0900006480ee676f |
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;