documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where docket_id = "FDA-2013-D-1446" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2013-D-1446-0025 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2020-09-29T04:00:00Z | 2020 | 9 | 2020-09-29T04:00:00Z | 2024-11-06T23:40:03Z | 1 | 0 | 090000648489b535 | ||
| FDA-2013-D-1446-0024 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use; Guidance for Industry and Food and Drug Administration Staff; Availability | Notice | Notice of Availability | 2020-09-29T04:00:00Z | 2020 | 9 | 2020-09-29T04:00:00Z | 2020-09-29T18:51:52Z | 2020-21462 | 0 | 0 | 0900006484898821 | |
| FDA-2013-D-1446-0017 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use; Draft Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-11-30T05:00:00Z | 2024-11-12T22:50:08Z | 1 | 0 | 090000648391965f | ||
| FDA-2013-D-1446-0016 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use; Draft Guidance for Industry and Food and Drug Administration Staff; Availability | Notice | Notice of Availability | 2018-11-30T05:00:00Z | 2018 | 11 | 2018-11-30T05:00:00Z | 2019-03-01T04:59:59Z | 2024-11-12T22:50:38Z | 2018-26028 | 1 | 0 | 09000064839161bc |
| FDA-2013-D-1446-0015 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use; Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2024-11-11T21:32:40Z | 1 | 0 | 09000064822dd988 | ||
| FDA-2013-D-1446-0014 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use; Guidance for Industry and Food and Drug Administration Staff; Availability | Notice | Notice of Availability | 2016-10-11T04:00:00Z | 2016 | 10 | 2016-10-11T04:00:00Z | 2016-10-11T14:49:48Z | 2016-24431 | 0 | 0 | 09000064822d1b7d | |
| FDA-2013-D-1446-0003 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use; Draft Guidance for Industry and Food and Drug Administration Staff; Extension of Comment Period | Notice | Extension of Comment Period | 2014-04-09T04:00:00Z | 2014 | 4 | 2014-04-09T04:00:00Z | 2014-05-08T03:59:59Z | 2014-05-13T14:36:48Z | 2014-07899 | 0 | 0 | 09000064816aba2d |
| FDA-2013-D-1446-0002 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use; Draft Guidance for Industry and Food and Drug Administration Staff | Other | Guidance | 2014-01-08T05:00:00Z | 2014 | 1 | 2014-01-08T05:00:00Z | 2024-11-07T23:01:04Z | 1 | 0 | 09000064814f488e | ||
| FDA-2013-D-1446-0001 | FDA | None FDA-2013-D-1446 | Self-Monitoring Blood Glucose Test Systems for Over-the-Counter Use; Draft Guidance for Industry and Food and Drug Administration Staff; Availability | Notice | Notice of Availability | 2014-01-07T05:00:00Z | 2014 | 1 | 2014-01-07T05:00:00Z | 2014-04-08T03:59:59Z | 2014-04-08T01:02:00Z | 2014-00022 | 0 | 0 | 09000064814f12af |
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;