documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "FDA-2016-N-1487" 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 4
agency_id 1
- FDA 11
| 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-2016-N-1487-0024 | FDA | None FDA-2016-N-1487 | Electronic Import Entries; Technical Amendments | Rule | Final Rule | 2021-04-01T04:00:00Z | 2021 | 4 | 2021-04-01T04:00:00Z | 2021-04-01T17:01:37Z | 2021-06679 | 0 | 0 | 0900006484a92f39 | |
| FDA-2016-N-1487-0023 | FDA | None FDA-2016-N-1487 | Reference 1 Final Regulatory Flexibility Analysis, and Final Unfunded Mandates Reform Act Analysis for Submission of Food and Drug Administration Import Data in the Automated Commercial Environment | Supporting & Related Material | Background Material | 2016-11-29T05:00:00Z | 2016 | 11 | 2016-11-29T16:48:07Z | 0 | 0 | 09000064823c749b | |||
| FDA-2016-N-1487-0022 | FDA | None FDA-2016-N-1487 | Submission of Food and Drug Administration Import Data in the Automated Commercial Environment | Rule | Final Rule | 2016-11-29T05:00:00Z | 2016 | 11 | 2016-11-29T05:00:00Z | 2016-11-29T16:07:38Z | 2016-28582 | 0 | 0 | 09000064823c5ff3 | |
| FDA-2016-N-1487-0014 | FDA | None FDA-2016-N-1487 | FDA Response to Request for Extension from American Association of Exporters and Importers | Other | Response(s) | 2016-08-30T04:00:00Z | 2016 | 8 | 2016-08-30T04:00:00Z | 2016-08-30T20:32:16Z | 0 | 0 | 090000648218d4a4 | ||
| FDA-2016-N-1487-0008 | FDA | None FDA-2016-N-1487 | Request for Extension from American Association of Exporters and Importers | Other | Request for Extension | 2016-08-11T04:00:00Z | 2016 | 8 | 2016-08-11T04:00:00Z | 2016-09-03T20:44:52Z | 0 | 0 | 09000064821636fe | ||
| FDA-2016-N-1487-0005 | FDA | None FDA-2016-N-1487 | Reference 3 FDA Draft Guidance for Industry: Implementation of the "Deemed to be a License" Provision re Submission of FDA Import Data in the Automated Commercial Environment | Supporting & Related Material | Background Material | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T16:34:31Z | 0 | 0 | 09000064820816a5 | |||
| FDA-2016-N-1487-0002 | FDA | None FDA-2016-N-1487 | E.O. 13659 re Submission of FDA Import Data in the Automated Commercial Environment | Supporting & Related Material | Background Material | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T16:33:24Z | 0 | 0 | 09000064820816a2 | |||
| FDA-2016-N-1487-0003 | FDA | None FDA-2016-N-1487 | Reference 1 Automated Commercial System and ABI CATAIR re Submission of FDA Import Data in the Automated Commercial Environment | Supporting & Related Material | Background Material | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T16:33:46Z | 0 | 0 | 09000064820816a3 | |||
| FDA-2016-N-1487-0004 | FDA | None FDA-2016-N-1487 | Reference 2 FDA Guidance for Industry: Submitting Form FDA 2541 re Submission of FDA Import Data in the Automated Commercial Environment | Supporting & Related Material | Background Material | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T16:34:08Z | 0 | 0 | 09000064820816a4 | |||
| FDA-2016-N-1487-0006 | FDA | None FDA-2016-N-1487 | Reference 4 re Submission of FDA Import Data in the Automated Commercial Environment | Supporting & Related Material | Background Material | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T16:35:05Z | 0 | 0 | 090000648208ccb9 | |||
| FDA-2016-N-1487-0001 | FDA | None FDA-2016-N-1487 | Submission of Food and Drug Administration Import Data in the Automated Commercial Environment | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2016-07-01T04:00:00Z | 2016 | 7 | 2016-07-01T04:00:00Z | 2016-08-31T03:59:59Z | 2016-09-01T01:00:41Z | 2016-15684 | 0 | 0 | 0900006482080496 |
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;