documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2005-N-0161" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, last_modified, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 2
agency_id 1
- FDA 8
| 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-2005-N-0161-0008 | FDA | Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and Lookback FDA-2005-N-0161 | Agency Information Collection Activities; Announcement of Office of Management and Budget Approval; Current Good Manufacturing Practices for Blood and Related Regulations for and Blood Components; and Requirements for Donor Testing, Donor Notification, and ‘‘Lookback’’ | Notice | Notice of Approval | 2015-06-01T04:00:00Z | 2015 | 6 | 2015-06-01T04:00:00Z | 2025-07-02T17:22:29Z | 2015-13064 | 0 | 0 | 0900006481b11cc9 | |
| FDA-2005-N-0161-0007 | FDA | Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and Lookback FDA-2005-N-0161 | Agency Information Collection Activities; Submission for Office of Management and Budget Review; Comment Request; Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and ‘‘Lookback’’ | Notice | 30 Day Proposed Information Collection | 2015-03-03T05:00:00Z | 2015 | 3 | 2015-03-03T05:00:00Z | 2015-04-03T03:59:59Z | 2025-07-02T17:20:41Z | 2015-04381 | 0 | 0 | 0900006481a26cb7 |
| FDA-2005-N-0161-0006 | FDA | Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and Lookback FDA-2005-N-0161 | Agency Information Collection Activities; Proposed Collection; Comment Request; Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and ‘‘Lookback’’ | Notice | 60 Day Proposed Information Collection | 2014-10-20T04:00:00Z | 2014 | 10 | 2014-10-20T04:00:00Z | 2014-12-20T04:59:59Z | 2025-07-02T17:18:24Z | 2014-24797 | 0 | 0 | 09000064818dcd67 |
| FDA-2005-N-0161-0003 | FDA | Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and Lookback FDA-2005-N-0161 | Supporing Statement | Supporting & Related Material | SS-Supporting Statement | 2006-01-06T05:00:00Z | 2006 | 1 | 2008-04-11T23:50:21Z | 0 | 0 | 09000064804403fe | |||
| FDA-2005-N-0161-0005 | FDA | Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and Lookback FDA-2005-N-0161 | FDA | Notice | NAL-Notice of Approval | 2006-01-06T05:00:00Z | 2006 | 1 | 2005-12-30T05:00:00Z | 2008-04-11T23:50:21Z | 0 | 0 | 0900006480440400 | ||
| FDA-2005-N-0161-0004 | FDA | Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and Lookback FDA-2005-N-0161 | Supporing Statement | Supporting & Related Material | SS-Supporting Statement | 2006-01-06T05:00:00Z | 2006 | 1 | 2008-04-11T23:50:21Z | 0 | 0 | 09000064804403ff | |||
| FDA-2005-N-0161-0002 | FDA | Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and Lookback FDA-2005-N-0161 | FDA | Notice | N-Notice | 2005-10-25T04:00:00Z | 2005 | 10 | 2005-10-21T04:00:00Z | 2008-04-11T23:50:21Z | 0 | 0 | 09000064804403fc | ||
| FDA-2005-N-0161-0001 | FDA | Current Good Manufacturing Practices and Related Regulations for Blood and Blood Components; and Requirements for Donor Testing, Donor Notification, and Lookback FDA-2005-N-0161 | FDA | Notice | N-Notice | 2005-06-22T04:00:00Z | 2005 | 6 | 2005-06-20T04:00:00Z | 2005-08-23T03:59:59Z | 2008-04-11T23:50:21Z | 0 | 0 | 09000064804403e5 |
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;