documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2010-N-0588" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_month, 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-2010-N-0588-0010 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2021-02-22T05:00:00Z | 2021 | 2 | 2021-02-22T05:00:00Z | 2021-02-22T21:48:43Z | 2021-03254 | 0 | 0 | 0900006484a45952 | |
| FDA-2010-N-0588-0009 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Exceptions or Alternatives to Labeling Requirements for Products Held by the Strategic National Stockpile | Notice | 30 Day Proposed Information Collection | 2020-11-04T05:00:00Z | 2020 | 11 | 2020-11-04T05:00:00Z | 2020-12-05T04:59:59Z | 2020-11-04T13:12:06Z | 2020-24427 | 0 | 0 | 0900006484949ff3 |
| FDA-2010-N-0588-0007 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Proposed Collection; Comment Request; Exceptions or Alternatives To Labeling Requirements for Products Held by the Strategic National Stockpile | Notice | 60 Day Proposed Information Collection | 2020-07-02T04:00:00Z | 2020 | 7 | 2020-07-02T04:00:00Z | 2020-09-01T03:59:59Z | 2020-08-30T01:01:00Z | 2020-14267 | 0 | 0 | 0900006484721986 |
| FDA-2010-N-0588-0006 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2018-02-15T05:00:00Z | 2018 | 2 | 2018-02-15T05:00:00Z | 2018-02-15T17:58:58Z | 2018-03128 | 0 | 0 | 0900006482f35a7a | |
| FDA-2010-N-0588-0005 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Exceptions or Alternatives to Labeling Requirements for Products Held by the Strategic National Stockpile | Notice | 30 Day Proposed Information Collection | 2017-08-08T04:00:00Z | 2017 | 8 | 2017-08-08T04:00:00Z | 2017-09-08T03:59:59Z | 2017-08-08T13:50:53Z | 2017-16648 | 0 | 0 | 09000064829d682b |
| FDA-2010-N-0588-0004 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Proposed Collection; Comment Request; Exceptions or Alternatives to Labeling Requirements for Products Held by the Strategic National Stockpile | Notice | 60 Day Proposed Information Collection | 2017-05-23T04:00:00Z | 2017 | 5 | 2017-05-23T04:00:00Z | 2017-07-25T03:59:59Z | 2017-05-23T13:53:32Z | 2017-10535 | 0 | 0 | 09000064826004bd |
| FDA-2010-N-0588-0003 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Proposed Collection; Comment Request; Exceptions or Alternatives to Labeling Requirements for Products Held by the Strategic National Stockpile | Notice | General Notice | 2014-02-18T05:00:00Z | 2014 | 2 | 2014-02-18T05:00:00Z | 2014-04-22T03:59:59Z | 2014-03-02T02:02:26Z | 2014-03382 | 0 | 0 | 0900006481576915 |
| FDA-2010-N-0588-0002 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Exceptions or Alternatives to Labeling Requirement for Products Held by the Strategic National Stockpile | Notice | N-Notice | 2011-04-28T04:00:00Z | 2011 | 4 | 2011-04-28T04:00:00Z | 2011-06-01T03:59:59Z | 2011-04-28T14:52:33Z | 2011-10254 | 0 | 0 | 0900006480c3b5d2 |
| FDA-2010-N-0588-0001 | FDA | None FDA-2010-N-0588 | Agency Information Collection Activities; Proposals, Submissions, and Approvals: Exceptions or Alternatives to Labeling Requirements for Products Held by Strategic National Stockpile | Notice | N-Notice | 2010-11-30T05:00:00Z | 2010 | 11 | 2010-11-30T05:00:00Z | 2011-02-01T04:59:59Z | 2020-10-06T19:47:38Z | 2010-30036 | 0 | 0 | 0900006480ba953f |
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;