documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "TTB", document_type = "Proposed Rule" and posted_year = 2012 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, subtype, posted_month, comment_end_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| TTB-2012-0006-0002 | TTB | Small Brewers Bond Reduction and Requirement to File Tax Returns, Remit Tax Payments and Submit Reports Quarterly TTB-2012-0006 | Notice No. 131: Small Brewers Bond Reduction | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-12-07T05:00:00Z | 2012 | 12 | 2012-12-07T05:00:00Z | 2013-02-06T04:59:59Z | 2013-03-21T02:01:31Z | 2012-29487 | 0 | 0 | 09000064811825e6 |
| TTB-2012-0002-0018 | TTB | Amendment to the Standards of Identity for Distilled Spirits (Cachaça Proposal) TTB-2012-0002 | Notice No. 127A: Standards of Identity for Distilled Spirits: Comment Period Extension | Proposed Rule | Extension of Comment Period | 2012-06-29T04:00:00Z | 2012 | 6 | 2012-06-29T04:00:00Z | 2012-07-11T18:52:27Z | 2012-16087 | 0 | 0 | 0900006481070537 | |
| TTB-2012-0005-0001 | TTB | Proposed Establishment of the Elkton Oregon Viticultural Area TTB-2012-0005 | Notice No. 130: Proposed Establishment of Elkton Oregon Viticultural Area | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-06-19T04:00:00Z | 2012 | 6 | 2012-06-19T04:00:00Z | 2012-08-21T03:59:59Z | 2013-02-05T16:30:27Z | 2012-14920 | 0 | 0 | 0900006481054909 |
| TTB-2012-0004-0001 | TTB | Proposed Establishment of the Indiana Uplands Viticultural Area and Modification of the Ohio River Valley Viticultural Area TTB-2012-0004 | Notice No. 129: Proposed Establishment of the Indiana Uplands Viticultural Area and Modification of the Ohio River Valley Viticultural Area | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-06-08T04:00:00Z | 2012 | 6 | 2012-06-08T04:00:00Z | 2012-08-08T03:59:59Z | 2012-08-03T02:01:31Z | 2012-13865 | 0 | 0 | 090000648103bffe |
| TTB-2012-0003-0001 | TTB | Proposed Establishment of the Ancient Lakes of Columbia Valley Viticultural Area TTB-2012-0003 | Notice No. 128: Proposed Establishment of Ancient Lakes of Columbia Valley Viticultural Area | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-05-08T04:00:00Z | 2012 | 5 | 2012-05-08T04:00:00Z | 2012-07-10T03:59:59Z | 2012-06-23T02:01:27Z | 2012-11069 | 0 | 0 | 0900006481007f11 |
| TTB-2012-0002-0001 | TTB | Amendment to the Standards of Identity for Distilled Spirits (Cachaça Proposal) TTB-2012-0002 | Notice No. 127: Proposed Amendment to the Standards of Identity for Distilled Spirits (“Cachaça” Proposed Rule) | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-04-30T04:00:00Z | 2012 | 4 | 2012-04-30T04:00:00Z | 2012-07-10T03:59:59Z | 2012-07-17T02:01:28Z | 2012-10332 | 0 | 0 | 0900006481000dc6 |
| TTB-2012-0001-0001 | TTB | Standards of Identity for Pisco and Cognac TTB-2012-0001 | Notice No. 126: Standards of Identity for Pisco and Cognac | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2012-03-27T04:00:00Z | 2012 | 3 | 2012-03-27T04:00:00Z | 2012-05-30T03:59:59Z | 2012-06-01T02:00:46Z | 2012-07256 | 0 | 0 | 0900006480fe1cab |
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;