documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2008-D-0128" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, open_for_comment, 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-D-0128-0009 | FDA | None FDA-2008-D-0128 | How Should Liver Injury and Dysfunction Caused by Drugs Be Measured, Evaluated, and Acted Upon in Clinical Trials? | Notice | Public Meetings | 2016-01-15T05:00:00Z | 2016 | 1 | 2016-01-15T05:00:00Z | 2016-01-15T15:37:50Z | 2016-00690 | 0 | 0 | 0900006481e11cc8 | |
| FDA-2008-D-0128-0008 | FDA | None FDA-2008-D-0128 | Serious Drug-Induced Liver Injury The Importance of Getting It Right How To Measure and Interpret Drug-Induced Liver Injury Information and Make Correct Diagnoses Public Conference Request for Comments | Notice | Notice of Conference | 2014-12-19T05:00:00Z | 2014 | 12 | 2014-12-19T05:00:00Z | 2016-01-06T18:58:08Z | 2014-29720 | 0 | 0 | 0900006481985fad | |
| FDA-2008-D-0128-0007 | FDA | None FDA-2008-D-0128 | Serious Drug-Induced Liver Injury: Who Gets It? Who Doesn’t? Why?; Public Conference; Request for Comments | Notice | Notice of Conference | 2014-02-10T05:00:00Z | 2014 | 2 | 2014-02-10T05:00:00Z | 2016-01-06T18:57:06Z | 2014-02755 | 0 | 0 | 09000064815564b9 | |
| FDA-2008-D-0128-0006 | FDA | None FDA-2008-D-0128 | Detecting and Evaluating Drug-Induced Liver Injury; What's Normal, What's Not, and What Should We Do About It | Notice | Notice of Conference | 2013-01-28T05:00:00Z | 2013 | 1 | 2013-01-28T05:00:00Z | 2024-11-12T05:13:20Z | 2013-01640 | 1 | 0 | 09000064811dab16 | |
| FDA-2008-D-0128-0004 | FDA | None FDA-2008-D-0128 | Guidance for Industry on Drug-Induced Liver Injury: Premarketing Clinical Evaluation; Availability | Notice | Notice of Availability | 2009-07-30T04:00:00Z | 2009 | 7 | 2009-07-30T04:00:00Z | 2016-01-06T18:52:41Z | E9-18135 | 0 | 0 | 09000064809fe4c8 | |
| FDA-2008-D-0128-0005 | FDA | None FDA-2008-D-0128 | Drug-Induced Liver Injury: Premarketing Clinical Evaluation; Guidance for Industry | Other | Guidance | 2009-07-29T04:00:00Z | 2009 | 7 | 2009-07-29T04:00:00Z | 2024-11-12T04:35:42Z | 1 | 0 | 09000064809fe510 | ||
| FDA-2008-D-0128-0001 | FDA | None FDA-2008-D-0128 | Draft Guidance for Industry on Drug-Induced Liver Injury: Premarketing Clinical Evaluation; Reopening of Comment Period; Public Conference | Notice | NEC-Notice of Extension | 2008-03-06T05:00:00Z | 2008 | 3 | 2008-03-06T05:00:00Z | 2008-07-01T03:59:59Z | 2008-07-02T01:22:26Z | E8-04361 | 0 | 0 | 09000064803e9744 |
| FDA-2008-D-0128-0002 | FDA | None FDA-2008-D-0128 | Draft Guidance for Industry - Drug-Induced Liver Injury: Premarketing Clinical Evaluation | Other | Guidance | 2008-03-06T05:00:00Z | 2008 | 3 | 2008-03-06T23:35:27Z | 2008-07-01T03:59:59Z | 2016-01-06T18:51:41Z | 0 | 0 | 09000064803ea4f0 |
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;