documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2011-D-0889" and posted_year = 2012 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), 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-2011-D-0889-0130 | FDA | None FDA-2011-D-0889 | Tufts University, Cummings School of Veterinary Medicine - Comment re FDA-2011-D-0889-0129 | Supporting & Related Material | Background Material | 2012-07-21T04:00:00Z | 2012 | 7 | 2012-07-21T20:00:58Z | 0 | 0 | 090000648108a417 | |||
| FDA-2011-D-0889-0125 | FDA | None FDA-2011-D-0889 | Appendix A - Antimicrobials Used in Livestock Production re Center for Food Safety (CFS) - Comment re FDA-2011-D-0889-0124 | Supporting & Related Material | Background Material | 2012-07-21T04:00:00Z | 2012 | 7 | 2012-07-21T19:27:42Z | 0 | 0 | 0900006481089e0b | |||
| FDA-2011-D-0889-0126 | FDA | None FDA-2011-D-0889 | Additional Documents re Center for Food Safety (CFS) - Comment FDA-2011-D-0889-0124 | Supporting & Related Material | Background Material | 2012-07-21T04:00:00Z | 2012 | 7 | 2012-07-21T19:43:35Z | 0 | 0 | 0900006481089e10 | |||
| FDA-2011-D-0889-0061 | FDA | None FDA-2011-D-0889 | Natural Resources Defense Council (NRDC) to FDA (re July 10 2012 Write-In Campaign Multiple Submitters=12,976) - Letter | Other | Letter(s) | 2012-07-18T04:00:00Z | 2012 | 7 | 2012-07-18T04:00:00Z | 2012-07-18T23:49:06Z | 0 | 0 | 09000064810a2bbe | ||
| FDA-2011-D-0889-0033 | FDA | None FDA-2011-D-0889 | The PEW Charitable Trusts to the Food and Drug Administration (FDA), July 12, 2012 - (re Write-In Campaign Multiple Submitters=55,020) - Memorandum | Other | Memorandum | 2012-07-12T04:00:00Z | 2012 | 7 | 2012-07-12T04:00:00Z | 2012-07-13T21:13:14Z | 0 | 0 | 090000648108aaba | ||
| FDA-2011-D-0889-0001 | FDA | None FDA-2011-D-0889 | Draft Guidance for Industry on New Animal Drugs and New Animal Drug Combination Products Administered in or on Medicated Feed or Drinking Water of Food-Producing Animals: Recommendations for Drug Sponsors for Voluntarily Aligning Product Use Conditions With GFI #209 | Notice | Notice of Availability | 2012-04-13T04:00:00Z | 2012 | 4 | 2012-04-13T04:00:00Z | 2012-07-13T03:59:59Z | 2012-08-02T02:01:10Z | 2012-08845 | 0 | 0 | 0900006480feef86 |
| FDA-2011-D-0889-0002 | FDA | None FDA-2011-D-0889 | Draft Guidance for Industry on New Animal Drugs and New Animal Drug Combination Products Administered in or on Medicated Feed or Drinking Water of Food-Producing Animals: Recommendations for Drug Sponsors for Voluntarily Aligning Product Use Conditions With GFI #209 | Other | Guidance | 2012-04-13T04:00:00Z | 2012 | 4 | 2012-04-13T04:00:00Z | 2012-07-13T03:59:59Z | 2012-10-03T02:01:01Z | 0 | 0 | 0900006480fefdc6 |
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;