documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where docket_id = "TTB-2017-0003" sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: subtype, 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-2017-0003-0008 | TTB | Proposed Information Collections; Comment Request Notices for 2017 TTB-2017-0003 | Proposed Information Collections; Comment Request (No. 66) | Notice | Request for Comments | 2017-09-11T04:00:00Z | 2017 | 9 | 2017-09-11T04:00:00Z | 2017-11-14T04:59:59Z | 2017-11-20T02:01:41Z | 174 | 0 | 0 | 0900006482b25c83 |
| TTB-2017-0003-0006 | TTB | Proposed Information Collections; Comment Request Notices for 2017 TTB-2017-0003 | Proposed Information Collections; Comment Request (No. 65) | Notice | Request for Comments | 2017-07-17T04:00:00Z | 2017 | 7 | 2017-07-17T04:00:00Z | 2017-09-12T03:59:59Z | 2017-07-18T01:11:09Z | FR Doc 2017-14710 | 0 | 0 | 0900006482939f06 |
| TTB-2017-0003-0005 | TTB | Proposed Information Collections; Comment Request Notices for 2017 TTB-2017-0003 | Proposed Information Collections; Comment Request (No. 64) | Notice | Request for Comments | 2017-06-09T04:00:00Z | 2017 | 6 | 2017-06-09T04:00:00Z | 2017-08-09T03:59:59Z | 2017-07-29T21:04:13Z | FR Doc 2017-11984 | 0 | 0 | 09000064826b5908 |
| TTB-2017-0003-0004 | TTB | Proposed Information Collections; Comment Request Notices for 2017 TTB-2017-0003 | Proposed Information Collections; Comment Request (No. 63) | Notice | Request for Comments | 2017-04-13T04:00:00Z | 2017 | 4 | 2017-04-13T04:00:00Z | 2017-06-06T03:59:59Z | 2017-04-13T13:14:07Z | FR Doc. 2017-06549 | 0 | 0 | 090000648255234a |
| TTB-2017-0003-0002 | TTB | Proposed Information Collections; Comment Request Notices for 2017 TTB-2017-0003 | Proposed TTB F 5300.26 (Federal Firearms and Ammunition Quarterly Tax Return -- Draft of 2017-02) | Supporting & Related Material | Exhibits | 2017-02-27T05:00:00Z | 2017 | 2 | 2017-02-27T15:29:06Z | 0 | 0 | 09000064824dd98f | |||
| TTB-2017-0003-0003 | TTB | Proposed Information Collections; Comment Request Notices for 2017 TTB-2017-0003 | Summary of Proposed Changes to TTB F 5300.26, Federal Firearms and Ammunition Quarterly Tax Return | Supporting & Related Material | 2017-02-27T00:00:00Z | 2017 | 2 | 2017-05-09T13:09:01Z | 0 | 1 | 09000064824dde3f | ||||
| TTB-2017-0003-0001 | TTB | Proposed Information Collections; Comment Request Notices for 2017 TTB-2017-0003 | Proposed Information Collections; Comment Request (No. 62) | Notice | Request for Comments | 2017-02-14T05:00:00Z | 2017 | 2 | 2017-02-14T05:00:00Z | 2017-04-18T03:59:59Z | 2017-08-09T17:12:06Z | 2017-02917 | 0 | 0 | 09000064824c0485 |
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;