documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "FDA", docket_id = "FDA-2006-N-0543" and posted_year = 2009 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2006-N-0543-0040 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | American Dental Education Association and the American Association for Dental Research - Testimony | Other | TS-Testimony | 2009-10-06T04:00:00Z | 2009 | 10 | 2009-10-06T04:00:00Z | 2009-10-06T20:57:15Z | 0 | 0 | 090000648046842b | ||
| FDA-2006-N-0543-0042 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | University of Kentucky - Testimony | Other | TS-Testimony | 2009-10-06T04:00:00Z | 2009 | 10 | 2009-10-06T04:00:00Z | 2009-10-06T20:57:18Z | 0 | 0 | 090000648046842d | ||
| FDA-2006-N-0543-0041 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | American Dental Association (ADA) - Testimony | Other | TS-Testimony | 2009-10-06T04:00:00Z | 2009 | 10 | 2009-10-06T04:00:00Z | 2009-10-06T20:57:17Z | 0 | 0 | 090000648046842c | ||
| FDA-2006-N-0543-0043 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | California Dental Association - Testimony | Other | TS-Testimony | 2009-10-06T04:00:00Z | 2009 | 10 | 2009-10-06T04:00:00Z | 2009-10-06T20:57:19Z | 0 | 0 | 0900006480468432 | ||
| FDA-2006-N-0543-0044 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | Academy of General Dentistry (AGD) - Testimony | Other | TS-Testimony | 2009-10-06T04:00:00Z | 2009 | 10 | 2009-10-06T04:00:00Z | 2009-10-06T20:57:21Z | 0 | 0 | 0900006480468436 | ||
| FDA-2006-N-0543-0035 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | Univeristy of Connecticut - Testimony | Other | TS-Testimony | 2009-02-19T05:00:00Z | 2009 | 2 | 2009-02-19T05:00:00Z | 2009-02-19T22:32:55Z | 0 | 0 | 0900006480468420 | ||
| FDA-2006-N-0543-0036 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | S. Markus, DDS - Testimony | Other | TS-Testimony | 2009-02-19T05:00:00Z | 2009 | 2 | 2009-02-19T05:00:00Z | 2009-02-19T22:32:57Z | 0 | 0 | 0900006480468422 | ||
| FDA-2006-N-0543-0037 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | Office of Science and Health Coordination, FDA - Testimony | Other | TS-Testimony | 2009-02-19T05:00:00Z | 2009 | 2 | 2009-02-19T05:00:00Z | 2009-02-19T22:40:35Z | 0 | 0 | 0900006480468424 | ||
| FDA-2006-N-0543-0038 | FDA | Comments Relating to the September 6 & 7, 2006 Joint Panel Meeting on Dental Amalgam FDA-2006-N-0543 | Delta Dental Plans Association (delta Dental) - Testimony | Other | TS-Testimony | 2009-02-19T05:00:00Z | 2009 | 2 | 2009-02-19T05:00:00Z | 2009-02-19T22:40:36Z | 0 | 0 | 0900006480468426 |
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;