documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where docket_id = "TTB-2008-0009" 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 11
| 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-2008-0009-0123 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | List of exhibits | Supporting & Related Material | Exhibits | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T20:13:59Z | 0 | 0 | 0900006483a9647f | |||
| TTB-2008-0009-0128 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Exhibit 21 | Supporting & Related Material | Exhibits | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T20:14:50Z | 0 | 0 | 0900006483a96484 | |||
| TTB-2008-0009-0124 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Figures 1-7 | Supporting & Related Material | Exhibits | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T20:14:12Z | 0 | 0 | 0900006483a96480 | |||
| TTB-2008-0009-0129 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Exhibits 22-23 | Supporting & Related Material | Exhibits | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T20:14:58Z | 0 | 0 | 0900006483a96485 | |||
| TTB-2008-0009-0125 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Exhibits 1-9 | Supporting & Related Material | Exhibits | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T20:14:24Z | 0 | 0 | 0900006483a96481 | |||
| TTB-2008-0009-0126 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Exhibits 10-15 | Supporting & Related Material | Exhibits | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T20:14:33Z | 0 | 0 | 0900006483a96482 | |||
| TTB-2008-0009-0127 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Exhibits 16-20 | Supporting & Related Material | Exhibits | 2019-02-21T05:00:00Z | 2019 | 2 | 2019-02-21T20:14:41Z | 0 | 0 | 0900006483a96483 | |||
| TTB-2008-0009-0122 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Petition - Russian River Valley AVA Expansion | Supporting & Related Material | Petition | 2014-11-18T05:00:00Z | 2014 | 11 | 2014-11-19T02:31:37Z | 0 | 0 | 0900006481936e18 | |||
| TTB-2008-0009-0121 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | T.D. TTB-97: Expansions of Russian River Valley and Northern Sonoma Viticultural Areas | Rule | Final Rule | 2011-11-16T05:00:00Z | 2011 | 11 | 2011-11-17T13:31:09Z | 2011-29519 | 0 | 0 | 0900006480f6d6d0 | ||
| TTB-2008-0009-0031 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Notice No. 91, Proposed Expansions of the Russian River Valley and Northern Sonoma Viticultural Areas; Reopening of Comment Period | Proposed Rule | Reopening of Comment Period | 2008-10-29T04:00:00Z | 2008 | 10 | 2011-11-17T13:30:22Z | E8-25748 | 0 | 0 | 0900006480782b6f | ||
| TTB-2008-0009-0001 | TTB | Expansion of the Russian River Valley and Northern Sonoma Viticultural Areas TTB-2008-0009 | Notice No. 90, Proposed Expansions of the Russian River Valley and Northern Sonoma Viticultural Areas | Proposed Rule | NPRM | 2008-08-20T04:00:00Z | 2008 | 8 | 2008-08-20T04:00:00Z | 2008-12-20T04:59:59Z | 2011-11-07T19:24:00Z | E8-19327 | 0 | 0 | 09000064806cf158 |
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;