documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2016-N-0736" 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-0736-0013 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals; Tracking Network for PETNet, LivestockNet, and SampleNet | Notice | Notice of Approval | 2023-06-30T04:00:00Z | 2023 | 6 | 2023-06-30T04:00:00Z | 2023-06-30T18:39:40Z | 2023-13936 | 0 | 0 | 0900006485c241aa | |
| FDA-2016-N-0736-0011 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Tracking Network for PETNet, LivestockNet, and SampleNet | Notice | 30 Day Proposed Information Collection | 2023-04-11T04:00:00Z | 2023 | 4 | 2023-04-11T04:00:00Z | 2023-05-12T03:59:59Z | 2023-07-17T20:00:20Z | 2023-07510 | 0 | 0 | 090000648592bf4d |
| FDA-2016-N-0736-0009 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Proposed Collection; Comment Request; Tracking Network for PETNet, LivestockNet, and SampleNet | Notice | 60 Day Proposed Information Collection | 2022-12-22T05:00:00Z | 2022 | 12 | 2022-12-22T05:00:00Z | 2023-02-22T04:59:59Z | 2022-12-24T02:00:59Z | 2022-27825 | 0 | 0 | 090000648554d5c4 |
| FDA-2016-N-0736-0008 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Proposals, Submissions, and Approvals | Notice | Notice of Approval | 2020-07-10T04:00:00Z | 2020 | 7 | 2020-07-10T04:00:00Z | 2020-07-10T14:40:11Z | 2020-14875 | 0 | 0 | 090000648473b776 | |
| FDA-2016-N-0736-0007 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Tracking Network for PETNet, LivestockNet, and SampleNet | Notice | 30 Day Proposed Information Collection | 2020-03-30T04:00:00Z | 2020 | 3 | 2020-03-30T04:00:00Z | 2020-04-30T03:59:59Z | 2020-03-30T13:33:55Z | 2020-06537 | 0 | 0 | 09000064844770af |
| FDA-2016-N-0736-0005 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Proposed Collection; Comment Request; Tracking Network for PETNet, LivestockNet, and SampleNet | Notice | 60 Day Proposed Information Collection | 2019-11-22T05:00:00Z | 2019 | 11 | 2019-11-22T05:00:00Z | 2020-01-22T04:59:59Z | 2019-11-24T02:01:32Z | 2019-25327 | 0 | 0 | 0900006484197f45 |
| FDA-2016-N-0736-0004 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2017-07-03T04:00:00Z | 2017 | 7 | 2017-07-03T04:00:00Z | 2017-07-03T15:55:35Z | 2017-13890 | 0 | 0 | 09000064827deed7 | |
| FDA-2016-N-0736-0002 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Tracking Network for PETNet, LivestockNet, and SampleNet | Notice | 30 Day Proposed Information Collection | 2017-04-18T04:00:00Z | 2017 | 4 | 2017-04-18T04:00:00Z | 2017-05-19T03:59:59Z | 2017-05-18T01:01:57Z | 2017-07769 | 0 | 0 | 090000648255c297 |
| FDA-2016-N-0736-0001 | FDA | None FDA-2016-N-0736 | Agency Information Collection Activities; Proposed Collection; Comment Request; Tracking Network for PETNet, LivestockNet, and SampleNet | Notice | 60 Day Proposed Information Collection | 2016-03-15T04:00:00Z | 2016 | 3 | 2016-03-15T04:00:00Z | 2016-05-17T03:59:59Z | 2016-03-15T13:05:12Z | 2016-05757 | 0 | 0 | 0900006481ec3a38 |
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;