documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FDA-1998-C-0056" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 3
agency_id 1
- FDA 5
| 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-1998-C-0056-0004 | FDA | Amendment of Safe Use of Haematococcus algae Meal as a Color Additive in Salmonid Fish Feeds - CLOSED FDA-1998-C-0056 | Cyanotech Corp.; Filing of Color Additive Petition | Notice | Notice of Filing | 2017-04-19T04:00:00Z | 2017 | 4 | 1998-04-16T04:00:00Z | 2017-04-19T16:38:56Z | 98–10031 | 0 | 0 | 0900006480571ab9 | |
| FDA-1998-C-0056-0005 | FDA | Amendment of Safe Use of Haematococcus algae Meal as a Color Additive in Salmonid Fish Feeds - CLOSED FDA-1998-C-0056 | Listing of Color Additives Exempt From Certification; Haematococcus Algae Meal; Confirmation of Effective Date | Rule | Confirmation of Effective Date | 2017-04-19T04:00:00Z | 2017 | 4 | 2017-04-19T04:00:00Z | 2000-08-09T03:59:59Z | 2017-04-19T16:55:52Z | 00–25703 | 0 | 0 | 0900006480571ac0 |
| FDA-1998-C-0056-0003 | FDA | Amendment of Safe Use of Haematococcus algae Meal as a Color Additive in Salmonid Fish Feeds - CLOSED FDA-1998-C-0056 | List of References | Supporting & Related Material | Background Material | 2017-04-19T04:00:00Z | 2017 | 4 | 2017-04-19T16:30:02Z | 0 | 0 | 0900006480571abe | |||
| FDA-1998-C-0056-0002 | FDA | Amendment of Safe Use of Haematococcus algae Meal as a Color Additive in Salmonid Fish Feeds - CLOSED FDA-1998-C-0056 | Reference 5 Johnson, C. B., Memorandum entitled ‘‘Haematococcus pluvialis Algae Meal for Use in Feed for Salmonids: Final Toxicology Review’’ from the Division of Health Effects Evaluation (HFS–225) to the Division of Petition Control (HFS–215), FDA CFSAN, August 12, 1999. re: Listing of Color Additives Exempt From Certification; Haematococcus Algae Meal | Supporting & Related Material | Reference (internal unless indicated) | 2017-04-19T04:00:00Z | 2017 | 4 | 2017-04-19T16:26:51Z | 0 | 0 | 0900006480571abd | |||
| FDA-1998-C-0056-0001 | FDA | Amendment of Safe Use of Haematococcus algae Meal as a Color Additive in Salmonid Fish Feeds - CLOSED FDA-1998-C-0056 | Listing of Color Additives Exempt From Certification; Haematococcus Algae Meal | Rule | Final Rule | 2000-07-07T04:00:00Z | 2000 | 7 | 2000-07-06T04:00:00Z | 2017-04-19T15:59:50Z | 00-17018 | 0 | 0 | 0900006480571aaf |
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;