documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2011-N-0103" and posted_year = 2011 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2011-N-0103-0004 | FDA | None FDA-2011-N-0103 | Reference 2 - Abshire, T.G. et at, "Validation ofthe use of gamma phage for identifying Bacillus anthracis,It 102nd American Society for Microbiology Annual Meeting poster #C 122, 2001 [5/18/2011 Notice of Proposed Rule] | Supporting & Related Material | BKG-Background Material | 2011-05-18T04:00:00Z | 2011 | 5 | 2011-05-18T16:06:05Z | 0 | 0 | 0900006480d4366e | |||
| FDA-2011-N-0103-0002 | FDA | None FDA-2011-N-0103 | List of References | Supporting & Related Material | BKG-Background Material | 2011-05-18T04:00:00Z | 2011 | 5 | 2016-01-12T16:29:28Z | 0 | 0 | 0900006480d43669 | |||
| FDA-2011-N-0103-0005 | FDA | None FDA-2011-N-0103 | Reference 3 - Brown, Eric R. and William B. Cherry, "Specific identification ofBacillus anthracis by means of a variant bacteriophage," vol. 96, Journal of Infectious Disease, p. 34, 2001 [5/18/2011 Notice of Proposed Rule] | Supporting & Related Material | BKG-Background Material | 2011-05-18T04:00:00Z | 2011 | 5 | 2011-05-18T16:06:07Z | 0 | 0 | 0900006480d4366f | |||
| FDA-2011-N-0103-0006 | FDA | None FDA-2011-N-0103 | Reference 4 - Brown, Eric R. et aI., "Differential diagnosis of Bacillus cereus, Bacillus anthracis and Bacillus cereus var. ,nycoides," vol. 75, Journal of Bacteriology, p. 499, 1957 [5/18/2011 Notice of Proposed Rule] | Supporting & Related Material | BKG-Background Material | 2011-05-18T04:00:00Z | 2011 | 5 | 2011-05-18T16:06:09Z | 0 | 0 | 0900006480d43a26 | |||
| FDA-2011-N-0103-0001 | FDA | None FDA-2011-N-0103 | Microbiology Devices: Classification of In Vitro Diagnostic Device for Bacillus Species Detection | Proposed Rule | NPR-Notice of Proposed Rule-Making | 2011-05-18T04:00:00Z | 2011 | 5 | 2011-05-18T04:00:00Z | 2011-08-17T03:59:59Z | 2011-05-18T13:52:27Z | 2011-12088 | 0 | 0 | 0900006480d4154e |
| FDA-2011-N-0103-0003 | FDA | None FDA-2011-N-0103 | Reference 1 -Transcript of the FDA Microbiology Devices Panel meeting, March 7. 2002, at: http://www.accessdata.fda.gov/scripts/cdrhlcfdocs/cfAdvisory/details.cfm?mtg=348 [5/18/2011 Notice of Proposed Rule] | Supporting & Related Material | BKG-Background Material | 2011-05-18T04:00:00Z | 2011 | 5 | 2011-05-18T16:06:03Z | 0 | 0 | 0900006480d4366b |
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;