documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where docket_id = "TTB-2011-0004" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, subtype, posted_date, posted_month, withdrawn, 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-2011-0004-0020 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | T.D. TTB-98, Establishment of Fort Ross-Seaview Viticultural Area | Rule | Final Rule | 2011-12-14T05:00:00Z | 2011 | 12 | 2011-12-14T17:28:32Z | 2011-32016 | 0 | 0 | 0900006480f8241e | ||
| TTB-2011-0004-0016 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | 2005 Fort Ross-Seaview Expansion Petition and Exhibits | Supporting & Related Material | Related Materials | 2011-05-19T04:00:00Z | 2011 | 5 | 2011-05-19T17:58:20Z | 0 | 0 | 0900006480d82154 | |||
| TTB-2011-0004-0002 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | 2003 Fort Ross-Seaview Petition | Supporting & Related Material | Related Materials | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-04-21T19:13:43Z | 0 | 0 | 0900006480c35324 | |||
| TTB-2011-0004-0001 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | Notice No. 34: Proposed Fort Ross-Seaview Viticultural Area | Proposed Rule | NPRM | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-04-21T04:00:00Z | 2011-06-07T03:59:59Z | 2011-07-08T15:50:20Z | 2005-4390 | 0 | 0 | 0900006480c35422 |
| TTB-2011-0004-0009 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | Notice No. 117: Proposed Fort Ross-Seaview Viticultural Area; Comment Period Reopening | Proposed Rule | Reopening of Comment Period | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-07-08T15:49:46Z | 2011-09635 | 0 | 0 | 0900006480c34c89 | ||
| TTB-2011-0004-0004 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | Petitioner's Additional Information Letter of April 25, 2003 | Supporting & Related Material | Related Materials | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-04-21T19:13:47Z | 0 | 0 | 0900006480c3541f | |||
| TTB-2011-0004-0006 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | TTB Letter to Mr. Downs (La Crema Winery), September 29, 2005 | Supporting & Related Material | Related Materials | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-04-21T19:50:30Z | 0 | 0 | 0900006480c3506e | |||
| TTB-2011-0004-0003 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | TTB Letter to Mr. Shabram, March 7, 2003 | Supporting & Related Material | Related Materials | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-04-21T19:13:45Z | 0 | 0 | 0900006480c3541e | |||
| TTB-2011-0004-0008 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | Response of Mr. Shabram to the 2005 Expansion Petition (February 5, 2010) | Supporting & Related Material | Related Materials | 2011-04-21T04:00:00Z | 2011 | 4 | 2011-04-21T19:51:58Z | 0 | 0 | 0900006480c35070 | |||
| TTB-2011-0004-0007 | TTB | Establishment of the Fort Ross-Seaview Viticultural Area TTB-2011-0004 | 2005 Fort Ross-Seaview Expansion Petition and Exhibits | Supporting & Related Material | 2011-04-21T00:00:00Z | 2011 | 4 | 2011-05-19T17:46:36Z | 0 | 1 | 0900006480c3506f |
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;