documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "FDA-1999-N-0134" and posted_year = 2001 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)
| 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-1999-N-0134-0009 | FDA | Public Health Impact of Foodborne Listeria Monocytogenes FDA-1999-N-0134 | HHS/USDA Action Plan | Other | TS-Testimony | 2001-08-03T04:00:00Z | 2001 | 8 | 2008-04-25T00:16:59Z | 0 | 0 | 09000064804aebb5 | |||
| FDA-1999-N-0134-0007 | FDA | Public Health Impact of Foodborne Listeria Monocytogenes FDA-1999-N-0134 | Listeriosis in the United States | Other | TS-Testimony | 2001-08-03T04:00:00Z | 2001 | 8 | 2008-04-25T00:17:00Z | 0 | 0 | 09000064804aebb3 | |||
| FDA-1999-N-0134-0006 | FDA | Public Health Impact of Foodborne Listeria Monocytogenes FDA-1999-N-0134 | Agenda for March 19, 2001 Public Meeting | Other | LST-List | 2001-08-03T04:00:00Z | 2001 | 8 | 2008-04-25T00:17:00Z | 0 | 0 | 09000064804aebb2 | |||
| FDA-1999-N-0134-0008 | FDA | Public Health Impact of Foodborne Listeria Monocytogenes FDA-1999-N-0134 | Draft Assessment of the Relative Risk | Other | TS-Testimony | 2001-08-03T04:00:00Z | 2001 | 8 | 2008-04-25T00:16:58Z | 0 | 0 | 09000064804aebb4 | |||
| FDA-1999-N-0134-0005 | FDA | Public Health Impact of Foodborne Listeria Monocytogenes FDA-1999-N-0134 | FDA | Notice | NEC-Notice of Extension | 2001-05-22T04:00:00Z | 2001 | 5 | 2001-05-22T04:00:00Z | 2001-07-19T03:59:59Z | 2008-04-25T00:16:59Z | 0 | 0 | 09000064804aeb9a | |
| FDA-1999-N-0134-0004 | FDA | Public Health Impact of Foodborne Listeria Monocytogenes FDA-1999-N-0134 | FDA | Notice | NM-Notice of Meeting | 2001-03-07T05:00:00Z | 2001 | 3 | 2001-03-07T05:00:00Z | 2001-03-20T04:59:59Z | 2008-04-25T00:16:54Z | 0 | 0 | 09000064804aeb93 | |
| FDA-1999-N-0134-0003 | FDA | Public Health Impact of Foodborne Listeria Monocytogenes FDA-1999-N-0134 | FDA | Notice | NAD-Notice of Availability of Data | 2001-01-22T05:00:00Z | 2001 | 1 | 2001-01-22T05:00:00Z | 2001-03-21T04:59:59Z | 2008-04-25T00:16:59Z | 0 | 0 | 09000064804aeb8f |
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;