documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "TTB", document_type = "Rule" and posted_year = 2023 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-2022-0013-0004 | TTB | Establishment of the Winters Highlands Viticultural Area TTB-2022-0013 | T.D. TTB-189: Establishment of the Winters Highlands Viticultural Area | Rule | Final Rule | 2023-08-29T04:00:00Z | 2023 | 8 | 2023-08-29T13:26:40Z | 2023-18588 | 0 | 0 | 0900006485f096c6 | ||
| TTB-2022-0003-0005 | TTB | Establishment of the Long Valley–Lake County Viticultural Area and Modification of the High Valley and North Coast Viticultural Areas TTB-2022-0003 | T.D. TTB-188: Establishment of the Long Valley–Lake County Viticultural Area and Modification of the High Valley and North Coast Viticultural Areas | Rule | Final Rule | 2023-07-05T04:00:00Z | 2023 | 7 | 2023-07-05T12:46:29Z | 2023-14119 | 0 | 0 | 0900006485c4f43c | ||
| TTB-2016-0013-0005 | TTB | Changes to Certain Alcohol-Related Regulations Governing Bond Requirements and Tax Return Filing Periods TTB-2016-0013 | CFR Correction to 27 CFR 19.230(d) | Rule | Correction | 2023-03-24T04:00:00Z | 2023 | 3 | 2023-03-24T04:00:00Z | 2023-03-30T21:33:50Z | 2023-06295 | 0 | 0 | 090000648584095b | |
| TTB-2023-0001-0001 | TTB | Civil Monetary Penalty Inflation Adjustment—Alcoholic Beverage Labeling Act (2023) TTB-2023-0001 | Notice No. 220: Civil Monetary Penalty Inflation Adjustment--Alcoholic Beverage Labeling Act | Rule | Final Rule | 2023-01-13T05:00:00Z | 2023 | 1 | 2024-01-18T14:40:28Z | 2023-00594 | 0 | 0 | 09000064855eb8ce | ||
| TTB-2021-0008-0015 | TTB | Addition of Singani to the Standards of Identity for Distilled Spirits TTB-2021-0008 | T.D. TTB-187: Addition of Singani to the Standards of Identity for Distilled Spirits | Rule | Final Rule | 2023-01-13T05:00:00Z | 2023 | 1 | 2023-01-13T13:40:26Z | 2022-28374 | 0 | 0 | 09000064855eb83d |
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;