documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2023-C-0544" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
agency_id 1
- FDA 8
| 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-2023-C-0544-0010 | FDA | None FDA-2023-C-0544 | Listing of Color Additives Exempt From Certification; Calcium Phosphate; Confirmation of Effective Date | Rule | Confirmation of Effective Date | 2025-08-21T04:00:00Z | 2025 | 8 | 2025-08-21T17:30:28Z | 2025-16047 | 0 | 0 | 09000064b8f0b2f5 | ||
| FDA-2023-C-0544-0004 | FDA | None FDA-2023-C-0544 | Reference List | Supporting & Related Material | Background Material | 2025-05-12T04:00:00Z | 2025 | 5 | 2025-05-21T22:27:44Z | 0 | 0 | 09000064b8d171f8 | |||
| FDA-2023-C-0544-0005 | FDA | None FDA-2023-C-0544 | Reference 1 - Memorandum from J. Barrows, Color Technology Branch, Office of Cosmetics and Colors, Office of the Chief Scientist, FDA to R. Morissette, Regulatory Management Branch (RMB), Division of Food Ingredients (DFI), Office of Pre-Market Additive Safety (OPMAS), Office of Food Chemical Safety, Dietary Supplements, and Innovation (OFCSDSI), Human Foods Program (HFP), FDA, April 23, 2025. | Supporting & Related Material | Background Material | 2025-05-12T04:00:00Z | 2025 | 5 | 2025-05-21T22:27:45Z | 0 | 0 | 09000064b8d171f9 | |||
| FDA-2023-C-0544-0007 | FDA | None FDA-2023-C-0544 | Reference 3 - Memorandum from T. Hubbard, Toxicology Review Branch, DFI, OPMAS, OFCSDSI, HFP, FDA to R. Morissette, RMB, DFI, OPMAS, OFCSDSI, HFP, FDA, April 22, 2025. | Supporting & Related Material | Background Material | 2025-05-12T04:00:00Z | 2025 | 5 | 2025-05-21T22:27:45Z | 0 | 0 | 09000064b8d171fb | |||
| FDA-2023-C-0544-0006 | FDA | None FDA-2023-C-0544 | Reference 2 - Memorandum from T. Todorov, Chemistry Review Branch, DFI, OPMAS, OFCSDSI, FDA to R. Morissette, RMB, DFI, OPMAS, OFCSDSI, HFP, FDA, April 22, 2025. | Supporting & Related Material | Background Material | 2025-05-12T04:00:00Z | 2025 | 5 | 2025-05-21T22:27:44Z | 0 | 0 | 09000064b8d171fa | |||
| FDA-2023-C-0544-0002 | FDA | None FDA-2023-C-0544 | Listing of Color Additives Exempt From Certification; Calcium Phosphate | Rule | Final Rule | 2025-05-12T04:00:00Z | 2025 | 5 | 2025-05-12T04:00:00Z | 2025-06-12T03:59:59Z | 2025-06-12T09:00:19Z | 2025-08249 | 0 | 0 | 09000064b8d3d374 |
| FDA-2023-C-0544-0003 | FDA | None FDA-2023-C-0544 | Memorandum - CAP 3C0324– Amending the color additive regulations to provide for the use of calcium phosphate as a color additive in a variety of foods | Other | Memorandum | 2025-05-12T04:00:00Z | 2025 | 5 | 2025-05-12T04:00:00Z | 2025-05-21T22:28:32Z | 0 | 0 | 09000064b8d125ca | ||
| FDA-2023-C-0544-0001 | FDA | None FDA-2023-C-0544 | Innophos, Inc.; Filing of Color Additive Petition | Proposed Rule | Petition | 2023-02-27T05:00:00Z | 2023 | 2 | 2023-02-27T05:00:00Z | 2023-02-27T19:06:34Z | 2023-03955 | 0 | 0 | 090000648571b8c0 |
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;