documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FDA" and docket_id = "FDA-2008-P-0358" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, 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-2008-P-0358-0007 | FDA | None FDA-2008-P-0358 | Interim Response Letter from FDA/CDER to James P. Reichmann | Other | Letter(s) | 2008-12-30T05:00:00Z | 2008 | 12 | 2008-12-30T05:00:00Z | 2015-10-08T13:03:39Z | 0 | 0 | 09000064807e37ba | ||
| FDA-2008-P-0358-0006 | FDA | None FDA-2008-P-0358 | Reference 5 - PubMed - "Developmental Exposure to Terbutaline and Chlorpyrifos: Pharmacotherapy of Preterm Labor..." [James P. Reichmann- Citizen Petition re FDA-2008-P-0358] | Supporting & Related Material | Background Material | 2008-11-13T05:00:00Z | 2008 | 11 | 2015-10-08T13:12:19Z | 0 | 0 | 0900006480631ffd | |||
| FDA-2008-P-0358-0002 | FDA | None FDA-2008-P-0358 | Reference 3 - PubMed - "Regulation of Postanatal Beta-Adrenergic Recptor/Adenylate Cyclase Development by Prenatal Agonist Stimulation and Steroids: Alterations in rat Kidney and Lung After Exposure to Terbutaline or Dexamethasone" [JamesP. Reichmann - [Citizen Petition re FDA-2008-P-0458-0001] | Supporting & Related Material | Background Material | 2008-06-26T04:00:00Z | 2008 | 6 | 2015-10-08T13:09:56Z | 0 | 0 | 0900006480631f8b | |||
| FDA-2008-P-0358-0003 | FDA | None FDA-2008-P-0358 | Reference 4 - "Critical Periods for the Role of Oxidative Stress in the Developmental Neurotoxicity of Chlorpyrifos and Terbutaline, Alone or in Combination" [James P. Reichmann- Citizen Petition re FDA-2008-P-0358] | Supporting & Related Material | Background Material | 2008-06-26T04:00:00Z | 2008 | 6 | 2015-10-08T13:11:48Z | 0 | 0 | 0900006480631fc7 | |||
| FDA-2008-P-0358-0005 | FDA | None FDA-2008-P-0358 | Acknowledgment Letter from FDA DDM to James P. Reichmann | Other | Acknowledgement Letter/Receipt | 2008-06-26T04:00:00Z | 2008 | 6 | 2008-06-26T04:00:00Z | 2024-11-12T04:15:59Z | 1 | 0 | 0900006480637575 | ||
| FDA-2008-P-0358-0001 | FDA | None FDA-2008-P-0358 | Reference 2 - Consumer Magazine May- June 2001 | Supporting & Related Material | Background Material | 2008-06-26T04:00:00Z | 2008 | 6 | 2015-10-08T13:09:16Z | 0 | 0 | 0900006480642386 | |||
| FDA-2008-P-0358-0004 | FDA | None FDA-2008-P-0358 | James P. Reichmann - Citizen Petition | Other | Citizen Petition | 2008-06-26T04:00:00Z | 2008 | 6 | 2008-06-26T04:00:00Z | 2015-10-09T01:30:35Z | 0 | 0 | 0900006480631de0 |
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;