documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where docket_id = "FDA-2011-N-0143" and posted_year = 2018 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, comment_start_date, open_for_comment, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
| 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-2011-N-0143-0403 | FDA | None FDA-2011-N-0143 | Agency Information Collection Activities; Proposed Collection; Comment Request; Foreign Supplier Verification Programs for Food Importers | Notice | 60 Day Proposed Information Collection | 2018-10-22T04:00:00Z | 2018 | 10 | 2018-10-22T04:00:00Z | 2018-12-22T04:59:59Z | 2018-10-22T14:08:16Z | 2018-22953 | 0 | 0 | 090000648383775c |
| FDA-2011-N-0143-0402 | FDA | None FDA-2011-N-0143 | Compliance with Providing an Acceptable Unique Facility Identifier for the Foreign Supplier Verification Programs Regulation: Guidance for Industry | Other | Guidance | 2018-03-13T04:00:00Z | 2018 | 3 | 2018-03-13T04:00:00Z | 2024-11-07T01:24:13Z | 1 | 0 | 0900006483007e46 | ||
| FDA-2011-N-0143-0401 | FDA | None FDA-2011-N-0143 | Foreign Supplier Verification Programs for Importers of Food for Humans and Animals: What You Need to Know About the FDA Regulation: Guidance for Industry Small Entity Compliance Guide | Other | Guidance | 2018-01-26T05:00:00Z | 2018 | 1 | 2018-01-26T05:00:00Z | 2024-11-07T01:20:22Z | 1 | 0 | 0900006482e6d39f | ||
| FDA-2011-N-0143-0400 | FDA | None FDA-2011-N-0143 | Foreign Supplier Verification Programs for Importers of Food for Humans and Animals: What You Need To Know About the Food and Drug Administration Regulation; Small Entity Compliance Guide; Availability | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2018-01-25T05:00:00Z | 2018 | 1 | 2018-01-25T05:00:00Z | 2018-01-26T17:52:44Z | 2018-01300 | 0 | 0 | 0900006482e6458d | |
| FDA-2011-N-0143-0399 | FDA | None FDA-2011-N-0143 | Foreign Supplier Verification Programs for Importers of Food for Humans and Animals; What You Need to Know About the FDA Regulation; Guidance for Industry; Small Entity Compliance Guide | Other | Guidance | 2018-01-25T05:00:00Z | 2018 | 1 | 2018-01-25T05:00:00Z | 2024-11-07T01:20:24Z | 1 | 0 | 0900006482e311d5 |
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;