documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "TTB-2022-0011" 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 2
agency_id 1
- TTB 6
| 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-0011-0086 | TTB | Consideration of Updates to Trade Practice Regulations TTB-2022-0011 | Second Comment Period Extension for Consideration of Updates to Trade Practice Regulations Advance Notice of Proposed Rulemaking | Proposed Rule | Extension of Comment Period | 2023-06-07T04:00:00Z | 2023 | 6 | 2023-06-07T04:00:00Z | 2023-06-07T14:16:55Z | 2023–12047 | 0 | 0 | 0900006485ab986d | |
| TTB-2022-0011-0027 | TTB | Consideration of Updates to Trade Practice Regulations TTB-2022-0011 | Comment Period Extension for Consideration of Updates to Trade Practice Regulations Advance Notice of Proposed Rulemaking | Proposed Rule | Extension of Comment Period | 2023-01-09T05:00:00Z | 2023 | 1 | 2023-01-09T05:00:00Z | 2023-01-09T14:25:32Z | 2023-00111 | 0 | 0 | 09000064855c34db | |
| TTB-2022-0011-0002 | TTB | Consideration of Updates to Trade Practice Regulations TTB-2022-0011 | E.O. 14036: Promoting Competition in the American Economy | Supporting & Related Material | Exhibits | 2022-11-09T05:00:00Z | 2022 | 11 | 2022-11-09T18:56:24Z | 0 | 0 | 090000648549e537 | |||
| TTB-2022-0011-0003 | TTB | Consideration of Updates to Trade Practice Regulations TTB-2022-0011 | Treasury Department Alcohol Market Competition Report (February 2022) | Supporting & Related Material | Studies and Reports | 2022-11-09T05:00:00Z | 2022 | 11 | 2022-11-09T19:05:56Z | 0 | 0 | 090000648549e53a | |||
| TTB-2022-0011-0001 | TTB | Consideration of Updates to Trade Practice Regulations TTB-2022-0011 | Consideration of Updates to Trade Practice Regulations (Notice No. 216) | Proposed Rule | Advance Notice of Proposed Rulemaking (ANPRM) | 2022-11-09T05:00:00Z | 2022 | 11 | 2022-11-09T05:00:00Z | 2023-07-08T03:59:59Z | 2023-09-02T01:04:07Z | 2022-24435 | 0 | 0 | 090000648549d0f3 |
| TTB-2022-0011-0004 | TTB | Consideration of Updates to Trade Practice Regulations TTB-2022-0011 | Notice No. 204: Promoting Competition in the Beer, Wine, and Spirits Markets; Request for Information | Supporting & Related Material | Exhibits | 2022-11-09T05:00:00Z | 2022 | 11 | 2022-11-09T19:07:38Z | 0 | 0 | 090000648549f1d7 |
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;