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 = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, 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-2021-0010-0001 | TTB | Modernization of Permit and Registration Application Requirements for Distilled Spirits Plants TTB-2021-0010 | Notice No. 207: Modernization of Permit and Registration Application Requirements for Distilled Spirits Plants. | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-12-03T05:00:00Z | 2021 | 12 | 2021-12-03T05:00:00Z | 2022-02-02T04:59:59Z | 2022-02-03T02:00:48Z | 2021-25721 | 0 | 0 | 0900006484e9c6da |
| TTB-2007-0001-0002 | TTB | Junk Docket TTB-2007-0001 | Test Document | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-12-01T05:00:00Z | 2021 | 12 | 2021-12-01T05:00:00Z | 2021-12-03T04:59:59Z | 2021-12-02T02:57:53Z | 0 | 0 | 0900006484e91956 | |
| TTB-2021-0009-0001 | TTB | Establishment of the Gabilan Mountains Viticultural Area TTB-2021-0009 | Notice No. 206: Proposed Establishment of the Gabilan Mountains Viticultural Area | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-11-10T05:00:00Z | 2021 | 11 | 2021-11-10T05:00:00Z | 2022-01-11T04:59:59Z | 2021-12-22T02:00:17Z | 2021-23976 | 0 | 0 | 0900006484e3b734 |
| TTB-2021-0008-0001 | TTB | Addition of Singani to the Standards of Identity for Distilled Spirits TTB-2021-0008 | Notice No. 205: Proposed Addition of Singani to the Standards of Identity for Distilled Spirits | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-08-25T04:00:00Z | 2021 | 8 | 2021-08-25T04:00:00Z | 2021-10-26T03:59:59Z | 2021-10-27T01:00:55Z | 2021-18205 | 0 | 0 | 0900006484ca302f |
| TTB-2021-0005-0001 | TTB | Establishment of the Paulsell Valley Viticultural Area TTB-2021-0005 | Notice No. 202: Proposed Establishment of the Paulsell Valley Viticultural Area | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-07-15T04:00:00Z | 2021 | 7 | 2021-07-15T04:00:00Z | 2021-09-14T03:59:59Z | 2021-07-15T14:02:01Z | 2021-15053 | 0 | 0 | 0900006484bf9ecd |
| TTB-2021-0006-0001 | TTB | Establishment of the Rocky Reach Viticultural Area TTB-2021-0006 | Notice No. 203: Proposed Establishment of the Rocky Reach Viticultural Area | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-07-15T04:00:00Z | 2021 | 7 | 2021-07-15T04:00:00Z | 2021-09-14T03:59:59Z | 2021-08-14T01:00:50Z | 2021-15054 | 0 | 0 | 0900006484bf9ecb |
| TTB-2021-0001-0001 | TTB | Establishment of the Upper Lake Valley Viticultural Area and Modification of the Clear Lake Viticultural Area TTB-2021-0001 | Establishment of the Upper Lake Valley Viticultural Area and Modification of the Clear Lake Viticultural Area | Proposed Rule | Notice of Proposed Rulemaking (NPRM) | 2021-04-16T04:00:00Z | 2021 | 4 | 2021-04-16T04:00:00Z | 2021-06-16T03:59:59Z | 2021-06-11T01:00:16Z | 2021-07626 | 0 | 0 | 0900006484aa98ab |
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;