documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "TTB-2024-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)
| 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-2024-0002-0100 | TTB | Labeling and Advertising of Wine, Distilled Spirits, and Malt Beverages with Alcohol Content, Nutritional Information, Major Food Allergens, and Ingredients TTB-2024-0002 | Transcript - First Listening Session, Feb. 28, 2024 (PDF File) | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2024-03-14T04:00:00Z | 2024 | 3 | 2024-03-14T15:07:04Z | 0 | 0 | 090000648647b4bb | |||
| TTB-2024-0002-0099 | TTB | Labeling and Advertising of Wine, Distilled Spirits, and Malt Beverages with Alcohol Content, Nutritional Information, Major Food Allergens, and Ingredients TTB-2024-0002 | Transcript - First Listening Session, Feb. 28, 2024 (Word File) | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2024-03-14T04:00:00Z | 2024 | 3 | 2024-03-14T15:04:55Z | 0 | 0 | 090000648647b4ba | |||
| TTB-2024-0002-0102 | TTB | Labeling and Advertising of Wine, Distilled Spirits, and Malt Beverages with Alcohol Content, Nutritional Information, Major Food Allergens, and Ingredients TTB-2024-0002 | Transcript – Second Listening Session, Feb. 29, 2024 (PDF File) | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2024-03-14T04:00:00Z | 2024 | 3 | 2024-03-14T15:06:10Z | 0 | 0 | 090000648647b90d | |||
| TTB-2024-0002-0101 | TTB | Labeling and Advertising of Wine, Distilled Spirits, and Malt Beverages with Alcohol Content, Nutritional Information, Major Food Allergens, and Ingredients TTB-2024-0002 | Transcript – Second Listening Session, Feb. 29, 2024 (Word File) | Supporting & Related Material | Public Hearing Transcript, Deposition, Testimony | 2024-03-14T04:00:00Z | 2024 | 3 | 2024-03-14T15:05:32Z | 0 | 0 | 090000648647b90b | |||
| TTB-2024-0002-0002 | TTB | Labeling and Advertising of Wine, Distilled Spirits, and Malt Beverages with Alcohol Content, Nutritional Information, Major Food Allergens, and Ingredients TTB-2024-0002 | E.O. 14036, Promoting Competition in the American Economy (July 9, 2022) | Supporting & Related Material | Exhibits | 2024-02-01T05:00:00Z | 2024 | 2 | 2024-02-01T21:05:58Z | 0 | 0 | 09000064863d6b67 | |||
| TTB-2024-0002-0003 | TTB | Labeling and Advertising of Wine, Distilled Spirits, and Malt Beverages with Alcohol Content, Nutritional Information, Major Food Allergens, and Ingredients TTB-2024-0002 | Competition in the Markets for Beer, Wine, and Spirits -- Department of the Treasury Report, February 2022 | Supporting & Related Material | Exhibits | 2024-02-01T05:00:00Z | 2024 | 2 | 2024-02-01T21:15:35Z | 0 | 0 | 09000064863d6b68 | |||
| TTB-2024-0002-0001 | TTB | Labeling and Advertising of Wine, Distilled Spirits, and Malt Beverages with Alcohol Content, Nutritional Information, Major Food Allergens, and Ingredients TTB-2024-0002 | Notice No. 232: Labeling and Advertising of Wine, Distilled Spirits, and Malt Beverages with Alcohol Content, Nutritional Information, Major Food Allergens, and Ingredients | Notice | Request for Comments | 2024-01-31T05:00:00Z | 2024 | 1 | 2024-01-31T05:00:00Z | 2024-03-30T03:59:59Z | 2024-04-24T01:01:03Z | 2024-01855 | 0 | 0 | 09000064863d34d1 |
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;