documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "TTB-2012-0002" 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 3
agency_id 1
- TTB 7
| 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-0002-0022 | TTB | Amendment to the Standards of Identity for Distilled Spirits (Cachaça Proposal) TTB-2012-0002 | Brazilian Decree 7.968, March 26, 2013 | Supporting & Related Material | Exhibits | 2013-03-28T04:00:00Z | 2013 | 3 | 2013-03-28T19:40:22Z | 0 | 0 | 090000648124ac3a | |||
| TTB-2012-0002-0021 | TTB | Amendment to the Standards of Identity for Distilled Spirits (Cachaça Proposal) TTB-2012-0002 | United States - Brazil Exchange of Letters, April 9, 2012 | Supporting & Related Material | Exhibits | 2013-02-25T05:00:00Z | 2013 | 2 | 2013-02-25T20:21:56Z | 0 | 0 | 0900006481207bc1 | |||
| 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-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-0002-0003 | TTB | Amendment to the Standards of Identity for Distilled Spirits (Cachaça Proposal) TTB-2012-0002 | 14 Letters Supporting Brazilian “Cachaça” Proposal | Supporting & Related Material | Letter | 2012-04-30T04:00:00Z | 2012 | 4 | 2012-04-30T14:33:42Z | 0 | 0 | 0900006481000e7f | |||
| TTB-2012-0002-0002 | TTB | Amendment to the Standards of Identity for Distilled Spirits (Cachaça Proposal) TTB-2012-0002 | 2006 Brazilian “Cachaça” Petition | Supporting & Related Material | Petition | 2012-04-30T04:00:00Z | 2012 | 4 | 2012-04-30T14:33:35Z | 0 | 0 | 0900006481000e7e | |||
| 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 |
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;