documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2017-N-5569" 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-2017-N-5569-0012 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2024-02-08T05:00:00Z | 2024 | 2 | 2024-02-08T14:40:26Z | 2024-02579 | 0 | 0 | 09000064863f244e | ||
| FDA-2017-N-5569-0010 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Medical Devices; Device Tracking | Notice | 30 Day Proposed Information Collection | 2023-12-05T05:00:00Z | 2023 | 12 | 2023-12-05T05:00:00Z | 2024-01-05T04:59:59Z | 2024-01-04T02:00:34Z | 2023-26653 | 0 | 0 | 09000064862f4412 |
| FDA-2017-N-5569-0009 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Proposed Collection; Comment Request; Medical Devices; Device Tracking | Notice | 60 Day Proposed Information Collection | 2023-08-08T04:00:00Z | 2023 | 8 | 2023-08-08T04:00:00Z | 2023-10-11T03:59:59Z | 2023-08-08T14:38:32Z | 2023-16933 | 0 | 0 | 0900006485dfb717 |
| FDA-2017-N-5569-0008 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2021-05-10T04:00:00Z | 2021 | 5 | 2021-05-10T04:00:00Z | 2023-08-08T14:38:21Z | 2021-09811 | 0 | 0 | 0900006484ae21f3 | |
| FDA-2017-N-5569-0007 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Medical Devices; Device Tracking | Notice | 30 Day Proposed Information Collection | 2021-02-16T05:00:00Z | 2021 | 2 | 2021-02-16T05:00:00Z | 2021-03-19T03:59:59Z | 2023-08-08T14:38:09Z | 2021-03017 | 0 | 0 | 0900006484a37db5 |
| FDA-2017-N-5569-0006 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Proposed Collection; Comment Request; Medical Devices; Device Tracking | Notice | 60 Day Proposed Information Collection | 2020-11-05T05:00:00Z | 2020 | 11 | 2020-11-05T05:00:00Z | 2021-01-05T04:59:59Z | 2023-08-08T14:37:52Z | 2020-24541 | 0 | 0 | 090000648494c7a1 |
| FDA-2017-N-5569-0005 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2018-05-15T04:00:00Z | 2018 | 5 | 2018-05-15T04:00:00Z | 2018-05-15T15:19:14Z | 2018-10281 | 0 | 0 | 090000648326a14f | |
| FDA-2017-N-5569-0003 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Medical Devices; Device Tracking | Notice | 30 Day Proposed Information Collection | 2018-01-16T05:00:00Z | 2018 | 1 | 2018-01-16T05:00:00Z | 2018-02-16T04:59:59Z | 2018-01-24T02:02:04Z | 2018-00568 | 0 | 0 | 0900006482e0b378 |
| FDA-2017-N-5569-0001 | FDA | None FDA-2017-N-5569 | Agency Information Collection Activities; Proposed Collection; Comment Request; Medical Devices; Device Tracking | Notice | 60 Day Proposed Information Collection | 2017-10-18T04:00:00Z | 2017 | 10 | 2017-10-18T04:00:00Z | 2017-12-19T04:59:59Z | 2017-12-19T02:01:25Z | 2017-22550 | 0 | 0 | 0900006482bdde2f |
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;