documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "TTB", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TTB-2007-0066-0015 | TTB | Establishment of the Leona Valley Viticultural Area TTB-2007-0066 | T.D. TTB-71, Establishment of the Leona Valley Viticultural Area (2007R-281P) | Rule | Final Rule | 2008-10-29T04:00:00Z | 2008 | 10 | 2008-10-29T04:00:00Z | 2011-06-11T18:02:17Z | E8-25747 | 0 | 0 | 0900006480782ab5 | |
| TTB-2007-0006-0007 | TTB | T.D. TTB-70 -- Certification Requirements for Imported Natural Wine TTB-2007-0006 | T.D. TTB-70, Certification Requirements for Imported Natural Wine (2005R-002P) | Rule | Final Rule | 2008-04-28T04:00:00Z | 2008 | 4 | 2008-04-28T04:00:00Z | 2011-06-11T18:02:02Z | E8-09173 | 0 | 0 | 0900006480537eb5 | |
| TTB-2007-0012-0003 | TTB | Establishment of the Swan Creek Viticultural Area TTB-2007-0012 | T.D. TTB-69, Establishment of the Swan Creek Viticultural Area | Rule | Final Rule | 2008-04-25T04:00:00Z | 2008 | 4 | 2008-04-25T04:00:00Z | 2011-06-11T18:02:03Z | E8-09106 | 0 | 0 | 0900006480532bb9 | |
| TTB-2007-0006-0002 | TTB | T.D. TTB-70 -- Certification Requirements for Imported Natural Wine TTB-2007-0006 | T.D. TTB-31, Certification Requirements for Imported Natural Wine | Rule | Temporary Rule | 2008-04-18T04:00:00Z | 2008 | 4 | 2008-04-18T04:00:00Z | 2008-04-18T19:31:17Z | 0 | 0 | 0900006480512809 | ||
| TTB-2008-0002-0001 | TTB | Puerto Rican Tobacco Products and Cigarette Papers and Tubes Shipped from Puerto Rico to the United States TTB-2008-0002 | T.D. TTB-68, Puerto Rican Tobacco Products and Cigarette Papers and Tubes Shipped From Puerto Rico to the United States (2007R-368P) | Rule | Final Rule | 2008-03-31T04:00:00Z | 2008 | 3 | 2014-11-20T20:25:15Z | E8-06513 | 0 | 0 | 09000064804148b4 | ||
| TTB-2007-0055-0002 | TTB | T.D. TTB-67 -- Expansion of the San Francisco Bay Viticultural Area (2005R-413P) TTB-2007-0055 | T.D. TTB-67, Expansion of the San Francisco Bay Viticultural Area (2005R-413P) | Rule | Final Rule | 2008-03-11T04:00:00Z | 2008 | 3 | 2008-03-11T04:00:00Z | 2011-06-11T18:02:14Z | E8-04785 | 0 | 0 | 09000064803f09a3 | |
| TTB-2007-0044-0002 | TTB | Expansion of the Alexander Valley Viticultural Area TTB-2007-0044 | T.D. TTB-65, Expansion of the Alexander Valley Viticultural Area | Rule | Final Rule | 2008-03-11T04:00:00Z | 2008 | 3 | 2008-03-11T04:00:00Z | 2018-12-11T20:30:04Z | E8-04789 | 0 | 0 | 09000064803f0995 | |
| TTB-2007-0050-0002 | TTB | T.D. TTB-66 -- Establishment of the Lehigh Valley Viticultural Area (2005R-415P) TTB-2007-0050 | T.D. TTB-66, Establishment of the Lehigh Valley Viticultural Area (2005R-415P) | Rule | Final Rule | 2008-03-11T04:00:00Z | 2008 | 3 | 2008-03-11T04:00:00Z | 2011-06-11T18:02:12Z | E8-04786 | 0 | 0 | 09000064803f0968 |
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;