documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2007-N-0465" 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 2
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-2007-N-0465-0028 | FDA | None FDA-2007-N-0465 | Label Requirement for Food That Has Been Refused Admission Into the United States | Proposed Rule | Withdrawal | 2018-09-28T04:00:00Z | 2018 | 9 | 2018-09-28T04:00:00Z | 2018-10-23T15:19:14Z | 2018-21145 | 0 | 0 | 090000648377f5a2 | |
| FDA-2007-N-0465-0017 | FDA | None FDA-2007-N-0465 | Reference 7 - "Memorandum to the Record From J. Bradley, FDA dated March 20, 2008' - Background | Supporting & Related Material | BKG-Background Material | 2008-10-27T04:00:00Z | 2008 | 10 | 2008-12-03T16:02:54Z | 0 | 0 | 090000648077d0c2 | |||
| FDA-2007-N-0465-0016 | FDA | None FDA-2007-N-0465 | Label Requirement for Food That Has Been Refused Admission Into the United States; Correction | Proposed Rule | NCR-Notice of Correction | 2008-10-27T04:00:00Z | 2008 | 10 | 2008-10-27T04:00:00Z | 2008-10-27T11:38:52Z | E8-25588 | 0 | 0 | 090000648077d006 | |
| FDA-2007-N-0465-0011 | FDA | None FDA-2007-N-0465 | Reference 1 - FDA Operational & Administrative System for Import Support (OASIS) [Project Description] - Background | Supporting & Related Material | BKG-Background Material | 2008-10-02T04:00:00Z | 2008 | 10 | 2008-10-02T21:17:28Z | 0 | 0 | 090000648072ce01 | |||
| FDA-2007-N-0465-0013 | FDA | None FDA-2007-N-0465 | Reference 6 - "Occupational & Wage Estimates" - Background | Supporting & Related Material | BKG-Background Material | 2008-10-02T04:00:00Z | 2008 | 10 | 2008-10-02T21:17:31Z | 0 | 0 | 090000648072ce7e | |||
| FDA-2007-N-0465-0012 | FDA | None FDA-2007-N-0465 | Reference 4 - "Estimating The Value of Consumers' Loss from From Foods Violating the FD&C Act" - Background | Supporting & Related Material | BKG-Background Material | 2008-10-02T04:00:00Z | 2008 | 10 | 2008-10-02T21:17:30Z | 0 | 0 | 090000648072ce33 | |||
| FDA-2007-N-0465-0008 | FDA | None FDA-2007-N-0465 | OMB Review [E.O. 12866] Label Requirement for Food That has Been Refused Admission Into the United States - Proposed Rule | Supporting & Related Material | REF-Reference (internal unless indicated) | 2008-10-01T04:00:00Z | 2008 | 10 | 2009-09-29T17:49:18Z | 0 | 0 | 0900006480728412 | |||
| FDA-2007-N-0465-0001 | FDA | None FDA-2007-N-0465 | Label Requirement for Food That Has Been Refused Admission into the United States | Proposed Rule | NPR-Notice of Proposed Rule-Making | 2008-09-18T04:00:00Z | 2008 | 9 | 2008-09-18T12:40:29Z | 2008-12-03T04:59:59Z | 2011-06-11T16:26:51Z | E8-21813 | 0 | 0 | 090000648070ccd1 |
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;