documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "FDA-2013-N-0797" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, comment_start_date, comment_end_date, fr_doc_num, 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-N-0797-0014 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Approval | 2020-03-17T04:00:00Z | 2020 | 3 | 2020-03-17T04:00:00Z | 2020-03-17T14:23:23Z | 2020-05354 | 0 | 0 | 090000648444cc6f | |
| FDA-2013-N-0797-0013 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Human Tissue Intended for Transplantation | Notice | 30 Day Proposed Information Collection | 2020-01-09T05:00:00Z | 2020 | 1 | 2020-01-09T05:00:00Z | 2020-02-11T04:59:59Z | 2020-01-09T14:49:31Z | 2020-00144 | 0 | 0 | 090000648428173c |
| FDA-2013-N-0797-0009 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Proposed Collection; Comment Request; Human Tissue Intended for Transplantation | Notice | 60 Day Proposed Information Collection | 2019-09-24T04:00:00Z | 2019 | 9 | 2019-09-24T04:00:00Z | 2019-11-26T04:59:59Z | 2019-11-24T02:01:01Z | 2019-20669 | 0 | 0 | 0900006483fbd667 |
| FDA-2013-N-0797-0010 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Proposed Collection; Comment Request; Human Tissue Intended for Transplantation | Notice | 60 Day Proposed Information Collection | 2019-09-24T04:00:00Z | 2019 | 9 | 2019-09-24T04:00:00Z | 2019-11-26T04:59:59Z | 2019-11-24T02:02:37Z | 2019-20669 | 0 | 0 | 0900006483fbc8df |
| FDA-2013-N-0797-0008 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approvals | Notice | Notice of Publication | 2017-05-25T04:00:00Z | 2017 | 5 | 2017-05-25T04:00:00Z | 2017-05-25T15:28:10Z | 2017-10736 | 0 | 0 | 0900006482611ef1 | |
| FDA-2013-N-0797-0007 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Proposed Collection; Comment Request; Human Tissue Intended for Transplantation | Notice | 30 Day Proposed Information Collection | 2016-11-02T04:00:00Z | 2016 | 11 | 2016-11-02T04:00:00Z | 2016-12-03T04:59:59Z | 2016-11-02T13:52:33Z | 2016-26398 | 0 | 0 | 0900006482369308 |
| FDA-2013-N-0797-0006 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Proposed Collection; Comment Request; Human Tissue Intended for Transplantation | Notice | 60 Day Proposed Information Collection | 2016-06-06T04:00:00Z | 2016 | 6 | 2016-06-06T04:00:00Z | 2016-08-06T03:59:59Z | 2016-06-06T15:09:13Z | 2016-13224 | 0 | 0 | 09000064820144e3 |
| FDA-2013-N-0797-0004 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval; Human Tissue Intended for Transplantation | Notice | Notice of Approval | 2014-02-19T05:00:00Z | 2014 | 2 | 2014-02-19T05:00:00Z | 2014-12-13T20:37:52Z | 2014-03502 | 0 | 0 | 0900006481581c6d | |
| FDA-2013-N-0797-0003 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Human Tissue Intended for Transplantation | Notice | 30 Day Proposed Information Collection | 2013-12-04T05:00:00Z | 2013 | 12 | 2013-12-04T05:00:00Z | 2014-01-04T04:59:59Z | 2014-01-05T02:56:10Z | 2013-28989 | 0 | 0 | 09000064814a6316 |
| FDA-2013-N-0797-0001 | FDA | None FDA-2013-N-0797 | Agency Information Collection Activities; Proposed Collection; Comment Request; Human Tissue Intended for Transplantation | Notice | General Notice | 2013-07-10T04:00:00Z | 2013 | 7 | 2013-07-10T04:00:00Z | 2013-09-10T03:59:59Z | 2014-01-14T13:46:58Z | 2013-16556 | 0 | 0 | 090000648135ef43 |
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;