documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "FDA-2006-N-0304" and posted_year = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, withdrawn, 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-2006-N-0304-0002 | FDA | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations FDA-2006-N-0304 | See FDA-2006-N-0304-0030 | Supporting & Related Material | 2007-09-26T00:00:00Z | 2007 | 9 | 2009-03-11T19:34:10Z | 0 | 1 | 090000648045b7c1 | ||||
| FDA-2006-N-0304-0005 | FDA | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations FDA-2006-N-0304 | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations; Extension of Comment Period | Notice | NEC-Notice of Extension | 2007-08-07T04:00:00Z | 2007 | 8 | 2007-08-06T04:00:00Z | 2007-09-11T03:59:59Z | 2009-05-29T18:06:16Z | 0 | 0 | 09000064804597f1 | |
| FDA-2006-N-0304-0004 | FDA | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations FDA-2006-N-0304 | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations; Public Meeting | Notice | NM-Notice of Meeting | 2007-07-09T04:00:00Z | 2007 | 7 | 2007-07-06T04:00:00Z | 2008-06-03T00:07:41Z | 0 | 0 | 09000064804593af | ||
| FDA-2006-N-0304-0001 | FDA | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations FDA-2006-N-0304 | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations | Proposed Rule | NPR-Notice of Proposed Rule-Making | 2007-06-06T04:00:00Z | 2007 | 6 | 2007-06-06T04:00:00Z | 2007-08-11T03:59:59Z | 2008-12-08T18:38:09Z | 0 | 0 | 09000064804592b2 | |
| FDA-2006-N-0304-0006 | FDA | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations FDA-2006-N-0304 | Environmental Assessment [FDA-2006-N-0304-0001] | Supporting & Related Material | EA-Environmental Assessment | 2007-06-06T04:00:00Z | 2007 | 6 | 2008-06-03T00:14:44Z | 0 | 0 | 090000648045935f | |||
| FDA-2006-N-0304-0008 | FDA | Use of Ozone-Depleting Substances; Removal of Essential-Use Designations FDA-2006-N-0304 | Findings of No Significant Impact [FDA-2006-N-0304-0001] | Supporting & Related Material | FONS-Finding of no Significant Impact | 2007-06-06T04:00:00Z | 2007 | 6 | 2008-06-03T00:16:19Z | 0 | 0 | 0900006480459367 |
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;