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 = 2013 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), 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-2013-0001-0008 | TTB | Proposed Establishment of the Ballard Canyon Viticultural Area TTB-2013-0001 | T.D. TTB-116: Establishment of the Ballard Canyon Viticultural Area | Rule | Final Rule | 2013-10-02T04:00:00Z | 2013 | 10 | 2013-10-23T14:15:38Z | 2013-23944 | 0 | 0 | 0900006481443775 | ||
| TTB-2013-0002-0015 | TTB | Proposed Establishment of the Moon Mountain District Sonoma County Viticultural Area TTB-2013-0002 | T.D. TTB-117: Establishment of the Moon Mountain District Sonoma County Viticultural Area | Rule | Final Rule | 2013-10-02T04:00:00Z | 2013 | 10 | 2013-10-23T14:23:17Z | 2013-23942 | 0 | 0 | 0900006481443731 | ||
| TTB-2013-0003-0008 | TTB | Proposed Establishment of the Big Valley District–Lake County and Kelsey Bench–Lake County Viticultural Areas, and Modification of the Red Hills Lake County Viticultural Area TTB-2013-0003 | T.D. TTB-118: Establishment of the Big Valley District-Lake County and Kelsey Bench-Lake County Viticultural Areas and Modification of the Red Hills Lake County Viticultural Area | Rule | Final Rule | 2013-10-02T04:00:00Z | 2013 | 10 | 2013-10-23T14:39:19Z | 2013-23939 | 0 | 0 | 09000064814439c0 | ||
| TTB-2013-0006-0001 | TTB | Importer Permit Requirements for Tobacco Products and Processed Tobacco, and Other Requirements for Tobacco Products, Processed Tobacco, and Cigarette Papers and Tubes TTB-2013-0006 | T.D. TTB-115: Importer Permit Requirements for Tobacco Products and Processed Tobacco, and Other Requirements for Tobacco Products, Processed Tobacco, and Cigarette Papers and Tubes | Rule | Temporary Rule | 2013-06-27T04:00:00Z | 2013 | 6 | 2013-06-27T18:27:57Z | 2013-15254 | 0 | 0 | 0900006481344726 | ||
| TTB-2007-0065-0009 | TTB | Modification of Mandatory Label Information TTB-2007-0065 | T.D. TTB-114: Modification of Mandatory Label Information for Wine | Rule | Final Rule | 2013-06-10T04:00:00Z | 2013 | 6 | 2013-06-10T04:00:00Z | 2013-06-10T14:03:24Z | 2013-13601 | 0 | 0 | 0900006481315937 | |
| TTB-2012-0001-0016 | TTB | Standards of Identity for Pisco and Cognac TTB-2012-0001 | T.D. TTB-113: Standards of Identity for Pisco and Cognac | Rule | Final Rule | 2013-05-16T04:00:00Z | 2013 | 5 | 2013-05-16T14:45:23Z | 2013-11705 | 0 | 0 | 09000064812e77aa | ||
| TTB-2012-0002-0020 | TTB | Amendment to the Standards of Identity for Distilled Spirits (Cachaça Proposal) TTB-2012-0002 | T.D. TTB-112: Standards of Identity for Distilled Spirits (Recognizing Cachaça) | Rule | Final Rule | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T17:25:45Z | 2013-04242 | 0 | 0 | 09000064812068e7 | ||
| TTB-2012-0005-0008 | TTB | Proposed Establishment of the Elkton Oregon Viticultural Area TTB-2012-0005 | T.D. TTB-111: Establishment of Elkton Oregon Viticultural Area | Rule | Final Rule | 2013-02-05T05:00:00Z | 2013 | 2 | 2013-02-05T16:29:38Z | 2013-02468 | 0 | 0 | 09000064811e6cf0 | ||
| TTB-2012-0004-0009 | TTB | Proposed Establishment of the Indiana Uplands Viticultural Area and Modification of the Ohio River Valley Viticultural Area TTB-2012-0004 | T.D. TTB-110: Establishment of Indiana Uplands Viticultural Area and Modification of Ohio River Valley Viticultural Area | Rule | Final Rule | 2013-02-05T05:00:00Z | 2013 | 2 | 2013-02-05T16:24:00Z | 2013-02454 | 0 | 0 | 09000064811e6ded |
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;