documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "TTB", document_type = "Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2012-0006-0001 | TTB | Small Brewers Bond Reduction and Requirement to File Tax Returns, Remit Tax Payments and Submit Reports Quarterly TTB-2012-0006 | T.D. TTB-109: Small Brewers Bond Reduction (Temporary Rule) | Rule | Temporary Rule | 2012-12-07T05:00:00Z | 2012 | 12 | 2012-12-07T17:11:29Z | 2012-29488 | 0 | 0 | 0900006481182521 | ||
| TTB-2012-0003-0006 | TTB | Proposed Establishment of the Ancient Lakes of Columbia Valley Viticultural Area TTB-2012-0003 | T.D. TTB-108: Establishment of Ancient Lakes of Columbia Valley Viticultural Area | Rule | Final Rule | 2012-10-18T04:00:00Z | 2012 | 10 | 2012-10-18T04:00:00Z | 2012-10-18T17:44:05Z | 2012-25639 | 0 | 0 | 0900006481146b0a | |
| TTB-2011-0011-0009 | TTB | Establishment of the Inwood Valley Viticultural Area TTB-2011-0011 | T.D. TTB-107: Establishment of Inwood Valley Viticultural Area | Rule | Final Rule | 2012-09-13T04:00:00Z | 2012 | 9 | 2012-09-13T04:00:00Z | 2012-09-13T14:36:47Z | 2012-22595 | 0 | 0 | 0900006481114c74 | |
| TTB-2011-0008-0030 | TTB | Revision of Vintage Date Requirements TTB-2011-0008 | T.D. TTB-105: Revision to Vintage Date Requirements | Rule | Final Rule | 2012-09-13T04:00:00Z | 2012 | 9 | 2012-09-13T04:00:00Z | 2012-09-13T14:26:08Z | 2012-22598 | 0 | 0 | 0900006481114d4b | |
| TTB-2011-0009-0032 | TTB | Establishment of the Middleburg Virginia Viticultural Area TTB-2011-0009 | T.D. TTB-106: Establishment of Middleburg Virginia Viticultural Area | Rule | Final Rule | 2012-09-13T04:00:00Z | 2012 | 9 | 2012-09-13T04:00:00Z | 2012-09-13T14:38:43Z | 2012-22596 | 0 | 0 | 0900006481114d4f | |
| TTB-2009-0002-0026 | TTB | Implementation of Statutory Amendments Requiring the Qualification of Manufacturers and Importers of Processed Tobacco and Other Amendments Related to Permit Requirements, and the Expanded Definition of Roll-Your-Own Tobacco TTB-2009-0002 | T.D. TTB-104: Qualifications of Manufacturers and Importers of Processed Tobacco: Permit Requirements and the Expanded Definition of Roll-Your-Own Tobacco | Rule | Final Rule | 2012-06-21T04:00:00Z | 2012 | 6 | 2012-06-21T04:00:00Z | 2012-06-22T19:02:27Z | 2012-15190 | 0 | 0 | 090000648105c852 | |
| TTB-2010-0008-0011 | TTB | Disclosure of Cochineal Extract and Carmine in the Labeling of Wines, Distilled Spirits, and Malt Beverages TTB-2010-0008 | T.D. TTB-103: Disclosure of Cochineal Extract and Carmine in Labeling of Wines, Distilled Spirits, and Malt Beverages | Rule | Final Rule | 2012-04-16T04:00:00Z | 2012 | 4 | 2012-04-16T17:53:31Z | 2012-09101 | 0 | 0 | 0900006480ff153e | ||
| TTB-2010-0007-0007 | TTB | Labeling Imported Wines with Multistate Appellations TTB-2010-0007 | T.D. TTB-101: Labeling Imported Wines with Multistate Appellations | Rule | Final Rule | 2012-03-22T04:00:00Z | 2012 | 3 | 2012-03-22T04:00:00Z | 2012-03-24T19:32:47Z | 2012-06930 | 0 | 0 | 0900006480fdda52 | |
| TTB-2011-0007-0032 | TTB | Establishment of the Wisconsin Ledge Viticultural Area TTB-2011-0007 | T.D. TTB-102: Establishment of the Wisconsin Ledge Viticultural Area | Rule | Final Rule | 2012-03-22T04:00:00Z | 2012 | 3 | 2012-03-22T04:00:00Z | 2012-03-24T19:32:48Z | 2012-06927 | 0 | 0 | 0900006480fdda7a |
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;