documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where docket_id = "FDA-2008-N-0446" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, posted_date, posted_month, posted_date (date), comment_start_date (date), comment_end_date (date), last_modified (date)
document_type 4
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-2008-N-0446-0017 | FDA | None FDA-2008-N-0446 | Beverages: Bottled Water; Correction | Notice | NCR-Notice of Correction | 2009-06-25T04:00:00Z | 2009 | 6 | 2009-06-25T04:00:00Z | 2009-06-25T15:38:23Z | E9-14981 | 0 | 0 | 09000064809df6a4 | |
| FDA-2008-N-0446-0016 | FDA | None FDA-2008-N-0446 | Beverages: Bottled Water | Rule | NFR-Notice of Final Rule | 2009-05-29T04:00:00Z | 2009 | 5 | 2009-05-29T04:00:00Z | 2009-05-29T15:29:41Z | E9-12494 | 0 | 0 | 09000064809be76c | |
| FDA-2008-N-0446-0008 | FDA | None FDA-2008-N-0446 | Ref. 7 "Model for Estimating the Impacts of Regulatory Costs on the Survival of Small Business and tis Application to Four FDA-Regulated Industries" - BKG | Supporting & Related Material | BKG-Background Material | 2008-09-29T04:00:00Z | 2008 | 9 | 2008-09-29T19:46:55Z | 0 | 0 | 090000648070b214 | |||
| FDA-2008-N-0446-0001 | FDA | None FDA-2008-N-0446 | Beverages; Bottled Water | Proposed Rule | NPR-Notice of Proposed Rule-Making | 2008-09-17T04:00:00Z | 2008 | 9 | 2008-09-17T04:00:00Z | 2008-11-18T04:59:59Z | 2008-11-14T12:09:49Z | E8-21619 | 0 | 0 | 090000648070a679 |
| FDA-2008-N-0446-0002 | FDA | None FDA-2008-N-0446 | Ref. 1 International Bottled Water Association. Personal Communication of 8/30/2007 - BKG | Supporting & Related Material | BKG-Background Material | 2008-09-17T04:00:00Z | 2008 | 9 | 2008-09-17T20:34:25Z | 0 | 0 | 090000648070b01b | |||
| FDA-2008-N-0446-0003 | FDA | None FDA-2008-N-0446 | Ref. 2 Skipton, S.O., D. Hay and J.A. Albrecht, "Drinking Water: Bottled or Tap?" - BKG | Supporting & Related Material | BKG-Background Material | 2008-09-17T04:00:00Z | 2008 | 9 | 2008-09-29T19:49:15Z | 0 | 0 | 090000648070b075 | |||
| FDA-2008-N-0446-0005 | FDA | None FDA-2008-N-0446 | Ref. 4, 5, and 6, Economic Analysis for the Final Groundwater Rule, Section 6.2.2, Section 4.2.7, and Section 6.4.4 are all Included in this Reference - BKG | Supporting & Related Material | BKG-Background Material | 2008-09-17T04:00:00Z | 2008 | 9 | 2008-09-17T20:40:41Z | 0 | 0 | 090000648070b190 | |||
| FDA-2008-N-0446-0004 | FDA | None FDA-2008-N-0446 | Ref. 3 International Bottled Water Association, 2005, IBWA Model Code - BKG | Supporting & Related Material | BKG-Background Material | 2008-09-17T04:00:00Z | 2008 | 9 | 2008-09-17T20:39:23Z | 0 | 0 | 090000648070b0d0 |
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;