documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2005-P-0259" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2005-P-0259-0008 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Tab 1 - Pyridoxamine 100mg 60 Tablets Product Information | Supporting & Related Material | Background Material | 2009-01-22T05:00:00Z | 2009 | 1 | 2025-03-24T18:17:21Z | 0 | 0 | 09000064804444d9 | |||
| FDA-2005-P-0259-0006 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Memorandum from Council for Responsible Nutrition (CRN) to FDA DMB | Other | Memorandum | 2009-01-22T05:00:00Z | 2009 | 1 | 2009-01-22T05:00:00Z | 2025-03-24T17:55:53Z | 0 | 0 | 09000064804444f5 | ||
| FDA-2005-P-0259-0004 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Letter from FDA Acting Associate Commissioner for Regulatory Affairs to Morgan, Lewis & Bockius LLP | Other | Letter(s) | 2009-01-22T05:00:00Z | 2009 | 1 | 2009-01-22T05:00:00Z | 2025-03-24T17:40:09Z | 0 | 0 | 090000648082ab57 | ||
| FDA-2005-P-0259-0011 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Attachment 2 - Letter Requesting to Review "Grandfathered" List and Make Additions/Suggestions as Appropriate | Supporting & Related Material | Background Material | 2009-01-22T05:00:00Z | 2009 | 1 | 2025-03-24T18:34:34Z | 0 | 0 | 09000064804444f8 | |||
| FDA-2005-P-0259-0009 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Tab 2 - Brain Products | Supporting & Related Material | Background Material | 2009-01-22T05:00:00Z | 2009 | 1 | 2025-03-24T18:22:42Z | 0 | 0 | 09000064804444da | |||
| FDA-2005-P-0259-0007 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Letter of Correction from Council for Responsible Nutrition (CRN) to FDA DMB | Other | Correction(s) | 2009-01-22T05:00:00Z | 2009 | 1 | 2009-01-22T05:00:00Z | 2025-03-24T17:58:47Z | 0 | 0 | 09000064804444f9 | ||
| FDA-2005-P-0259-0012 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Attachment 3 - NNFA List of Dietary Supplement Ingredients in Use Before October 15, 1994 | Supporting & Related Material | Background Material | 2009-01-22T05:00:00Z | 2009 | 1 | 2025-03-24T18:36:39Z | 0 | 0 | 09000064804444fb | |||
| FDA-2005-P-0259-0005 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Citizen Petition from BioStratum, Inc. | Other | Citizen Petition | 2009-01-22T05:00:00Z | 2009 | 1 | 2009-01-22T05:00:00Z | 2025-03-24T17:52:26Z | 0 | 0 | 09000064804444d8 | ||
| FDA-2005-P-0259-0010 | FDA | Legal, Scientific and Public Health Issues on Dietary Supplements that Contain the Drug Pyridoxamine are considered adulterated - CLOSED FDA-2005-P-0259 | Attachment 1 - CRN List of Dietary Ingredients 'Grandfathered' Under DSHEA | Supporting & Related Material | Background Material | 2009-01-22T05:00:00Z | 2009 | 1 | 2025-03-24T18:24:38Z | 0 | 0 | 09000064804444f7 |
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;