documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FDA" and docket_id = "FDA-2016-N-2836" 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-2016-N-2836-0016 | FDA | None FDA-2016-N-2836 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2020-09-15T04:00:00Z | 2020 | 9 | 2020-09-15T04:00:00Z | 2020-09-15T13:25:54Z | 2020-20332 | 0 | 0 | 09000064848599d4 | |
| FDA-2016-N-2836-0014 | FDA | None FDA-2016-N-2836 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Donor Risk Assessment Questionnaire for the Food and Drug Administration/National Heart, Lung, and Blood Institute- Sponsored Transfusion-Transmissible Infections Monitoring System—Risk Factor Elicitation | Notice | 30 Day Proposed Information Collection | 2020-07-13T04:00:00Z | 2020 | 7 | 2020-07-13T04:00:00Z | 2020-08-13T03:59:59Z | 2020-08-13T01:01:05Z | 2020-15009 | 0 | 0 | 0900006484745b75 |
| FDA-2016-N-2836-0011 | FDA | None FDA-2016-N-2836 | Agency Information Collection Activities; Proposed Collection; Comment Request; Donor Risk Assessment Questionnaire for the Food and Drug Administration/National Heart, Lung, and Blood Institute Sponsored Transfusion-Transmissible Infections Monitoring System—Risk Factor Elicitation | Notice | 60 Day Proposed Information Collection | 2020-01-08T05:00:00Z | 2020 | 1 | 2020-01-08T05:00:00Z | 2020-03-10T03:59:59Z | 2020-02-12T02:02:51Z | 2020-00047 | 0 | 0 | 090000648427be19 |
| FDA-2016-N-2836-0010 | FDA | None FDA-2016-N-2836 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2017-11-07T05:00:00Z | 2017 | 11 | 2017-11-07T05:00:00Z | 2017-11-07T15:52:52Z | 2017-24189 | 0 | 0 | 0900006482c53edb | |
| FDA-2016-N-2836-0008 | FDA | None FDA-2016-N-2836 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Donor Risk Assessment Questionnaire for the Food and Drug Administration/National Heart, Lung, and Blood Institute-Sponsored Transfusion-Transmissible Infections Monitoring System—Risk Factor Elicitation | Notice | 30 Day Proposed Information Collection | 2016-12-13T05:00:00Z | 2016 | 12 | 2016-12-13T05:00:00Z | 2017-01-13T04:59:59Z | 2019-12-27T18:27:32Z | 2016-29814 | 0 | 0 | 09000064823fed94 |
| FDA-2016-N-2836-0001 | FDA | None FDA-2016-N-2836 | Agency Information Collection Activities; Proposed Collection; Comment Request; Donor Risk Assessment Questionnaire for the Food and Drug Administration/National Heart, Lung, and Blood Institute-Sponsored Transfusion-Transmissible Infections Monitoring System—Risk Factor Elicitation | Notice | 60 Day Proposed Information Collection | 2016-09-30T04:00:00Z | 2016 | 9 | 2016-09-30T04:00:00Z | 2016-11-30T04:59:59Z | 2016-11-30T02:00:46Z | 2016-23622 | 0 | 0 | 0900006482284b1c |
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;