documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-2020-C-2131" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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 7
| 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-2131-0008 | FDA | None FDA-2020-C-2131 | Listing of Color Additives Exempt From Certification; Jagua (Genipin-Glycine) Blue; Confirmation of Effective Date | Rule | Final Rule | 2024-01-23T05:00:00Z | 2024 | 1 | 2024-01-23T05:00:00Z | 2024-01-23T17:33:50Z | 2024-01106 | 0 | 0 | 09000064863b8838 | |
| FDA-2020-C-2131-0006 | FDA | None FDA-2020-C-2131 | Listing of Color Additives Exempt From Certification; Jagua (Genipin-Glycine) Blue | Rule | Direct Final Rule | 2023-11-03T04:00:00Z | 2023 | 11 | 2023-11-03T04:00:00Z | 2023-12-05T04:59:59Z | 2023-12-02T02:01:28Z | 2023-24352 | 0 | 0 | 09000064861dfb35 |
| FDA-2020-C-2131-0004 | FDA | None FDA-2020-C-2131 | Memorandum from N. Belai to FDA CFSAN | Supporting & Related Material | Memorandum | 2023-08-24T04:00:00Z | 2023 | 8 | 2023-08-24T15:54:23Z | 0 | 0 | 0900006485ee294d | |||
| FDA-2020-C-2131-0003 | FDA | None FDA-2020-C-2131 | Memorandum from Abu T. Khan to FDA CFSAN | Supporting & Related Material | Memorandum | 2023-08-24T04:00:00Z | 2023 | 8 | 2023-08-24T15:54:19Z | 0 | 0 | 0900006485ee294c | |||
| FDA-2020-C-2131-0002 | FDA | None FDA-2020-C-2131 | Reference List | Supporting & Related Material | List | 2023-08-24T04:00:00Z | 2023 | 8 | 2023-08-24T15:54:14Z | 0 | 0 | 0900006485ee294b | |||
| FDA-2020-C-2131-0005 | FDA | None FDA-2020-C-2131 | Memorandum from R. Kolanos to FDA CFSAN | Supporting & Related Material | Memorandum | 2023-08-24T04:00:00Z | 2023 | 8 | 2023-08-24T15:54:27Z | 0 | 0 | 0900006485ee294e | |||
| FDA-2020-C-2131-0001 | FDA | None FDA-2020-C-2131 | Ecoflora SAS; Filing of Color Additive Petition | Proposed Rule | Petition | 2020-11-20T05:00:00Z | 2020 | 11 | 2020-11-20T05:00:00Z | 2020-11-20T15:24:57Z | 2020-25600 | 0 | 0 | 090000648496ac55 |
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;