documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2020-C-1309" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, 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 10
| 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-2020-C-1309-0013 | FDA | None FDA-2020-C-1309 | Listing of Color Additives Exempt From Certification; Spirulina Extract; Confirmation of Effective Date | Rule | Final Rule | 2023-03-16T04:00:00Z | 2023 | 3 | 2023-03-16T04:00:00Z | 2023-03-16T15:23:40Z | 2023-05361 | 0 | 0 | 09000064857b8ed7 | |
| FDA-2020-C-1309-0005 | FDA | None FDA-2020-C-1309 | Memorandum of Telephone Conversation Final With Attachment Redacted re Listing of Color Additives Exempt From Certification; Spirulina Extract | Supporting & Related Material | Background Material | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T14:23:07Z | 0 | 0 | 09000064854a27ac | |||
| FDA-2020-C-1309-0010 | FDA | None FDA-2020-C-1309 | Memorandum from D. DeGroot, Toxicology Review Branch (TRB), DFI, OFAS, CFSAN, FDA to S. Hice Redacted re Listing of Color Additives Exempt From Certification; Spirulina Extract | Supporting & Related Material | Background Material | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T14:23:43Z | 0 | 0 | 09000064854a27b1 | |||
| FDA-2020-C-1309-0003 | FDA | None FDA-2020-C-1309 | Listing of Color Additives Exempt From Certification; Spirulina Extract | Rule | Final Rule | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T05:00:00Z | 2022-12-13T04:59:59Z | 2022-12-06T02:00:58Z | 2022-24429 | 0 | 0 | 09000064854a299d |
| FDA-2020-C-1309-0004 | FDA | None FDA-2020-C-1309 | Letter from D. Keefe, OFAS, CFSAN, FDA to H. Newman, Desert Lake Technologies, LLC, Agency Response Letter GRAS Notice 000424, December 6, 2012 re Listing of Color Additives Exempt From Certification; Spirulina Extract | Supporting & Related Material | Background Material | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T14:23:03Z | 0 | 0 | 090000648549f2c2 | |||
| FDA-2020-C-1309-0008 | FDA | None FDA-2020-C-1309 | Memorandum from N. Belai, Color Technology Branch, Division of Color Certification and Technology, Office of Cosmetics and Colors (OCAC), CFSAN, FDA to S. Hice, Regulatory Review Branch Redacted re Listing of Color Additives Exempt From Certification; Spirulina Extract | Supporting & Related Material | Background Material | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T14:23:31Z | 0 | 0 | 09000064854a27af | |||
| FDA-2020-C-1309-0006 | FDA | None FDA-2020-C-1309 | Memorandum from M. Swain, Chemistry Review Branch, DFI, OFAS, CFSAN, FDA to S. Hice Memo Redacted re Listing of Color Additives Exempt From Certification; Spirulina Extract | Supporting & Related Material | Background Material | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T14:23:15Z | 0 | 0 | 09000064854a27ad | |||
| FDA-2020-C-1309-0007 | FDA | None FDA-2020-C-1309 | Memo from Leah Proffitt, Biologist, Environmental Review Team, Division of Science and Technology Redacted re Listing of Color Additives Exempt From Certification; Spirulina Extract | Supporting & Related Material | Background Material | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T14:23:26Z | 0 | 0 | 09000064854a27ae | |||
| FDA-2020-C-1309-0009 | FDA | None FDA-2020-C-1309 | Memorandum from D. DeGroot, Toxicology Review Branch (TRB), DFI, OFAS, CFSAN, FDA to S. Hice Redacted re Listing of Color Additives Exempt From Certification; Spirulina Extract | Supporting & Related Material | Background Material | 2022-11-10T05:00:00Z | 2022 | 11 | 2022-11-10T14:23:35Z | 0 | 0 | 09000064854a27b0 | |||
| FDA-2020-C-1309-0001 | FDA | None FDA-2020-C-1309 | GNT USA, Inc.; Filing of Color Additive Petition | Proposed Rule | Petition | 2020-05-08T04:00:00Z | 2020 | 5 | 2020-05-08T04:00:00Z | 2022-11-03T11:48:53Z | 2020-09311 | 0 | 0 | 0900006484585926 |
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;