documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "TTB-2018-0001" and document_type = "Notice" sorted by posted_date descending
This data as json, CSV (advanced)
| 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-2018-0001-0030 | TTB | Proposed Information Collections; Comment Request Notices for 2018 TTB-2018-0001 | Proposed Information Collections; Comment Request (No. 72) | Notice | Request for Comments | 2018-11-28T05:00:00Z | 2018 | 11 | 2018-11-28T05:00:00Z | 2019-01-29T04:59:59Z | 2018-11-28T15:11:19Z | Vol. 83, No. 228 | 0 | 0 | 0900006483905f95 |
| TTB-2018-0001-0029 | TTB | Proposed Information Collections; Comment Request Notices for 2018 TTB-2018-0001 | Proposed Information Collections; Comment Request (No. 71) | Notice | Request for Comments | 2018-08-24T04:00:00Z | 2018 | 8 | 2018-08-24T04:00:00Z | 2018-10-24T03:59:59Z | 2018-08-24T18:49:14Z | 83-165 | 0 | 0 | 090000648365268b |
| TTB-2018-0001-0028 | TTB | Proposed Information Collections; Comment Request Notices for 2018 TTB-2018-0001 | Proposed Information Collection; Comment Request (No. 70) for Chemist Certification Program | Notice | Request for Comments | 2018-07-18T04:00:00Z | 2018 | 7 | 2018-07-18T04:00:00Z | 2018-09-18T03:59:59Z | 2018-07-18T14:18:06Z | No. 138 | 0 | 0 | 09000064835193b9 |
| TTB-2018-0001-0011 | TTB | Proposed Information Collections; Comment Request Notices for 2018 TTB-2018-0001 | Proposed Information Collections; Comment Request (No. 69) | Notice | Request for Comments | 2018-05-30T04:00:00Z | 2018 | 5 | 2018-05-30T04:00:00Z | 2018-07-31T03:59:59Z | 2018-07-06T01:03:30Z | 104 | 0 | 0 | 090000648330e5b0 |
| TTB-2018-0001-0007 | TTB | Proposed Information Collections; Comment Request Notices for 2018 TTB-2018-0001 | Proposed Information Collections; Comment Request (No. 68) | Notice | Request for Comments | 2018-03-13T04:00:00Z | 2018 | 3 | 2018-03-13T04:00:00Z | 2018-05-15T03:59:59Z | 2018-03-13T13:38:05Z | No. 49 | 0 | 0 | 090000648300699b |
| TTB-2018-0001-0001 | TTB | Proposed Information Collections; Comment Request Notices for 2018 TTB-2018-0001 | Proposed Information Collections; Comment Request (No. 67) | Notice | Request for Comments | 2018-01-03T05:00:00Z | 2018 | 1 | 2018-01-03T05:00:00Z | 2018-03-06T04:59:59Z | 2018-03-06T02:45:35Z | FR Doc 2017-28024 | 0 | 0 | 0900006482d93b5e |
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;