documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where docket_id = "TTB-2020-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-2020-0001-0013 | TTB | Proposed Information Collections; Comment Request Notices for 2020 TTB-2020-0001 | Privacy Act of 1974; System of Records | Notice | Request for Comments | 2021-02-10T05:00:00Z | 2021 | 2 | 2021-02-10T05:00:00Z | 2021-03-13T04:59:59Z | 2021-03-11T02:00:42Z | 2021-02691 | 0 | 0 | 0900006484a2c380 |
| TTB-2020-0001-0012 | TTB | Proposed Information Collections; Comment Request Notices for 2020 TTB-2020-0001 | Proposed Information Collections; Comment Request (No. 81) | Notice | Request for Comments | 2020-11-03T05:00:00Z | 2020 | 11 | 2020-11-03T05:00:00Z | 2021-01-05T04:59:59Z | 2021-01-04T02:03:01Z | 2020-24199 | 0 | 0 | 09000064849487d5 |
| TTB-2020-0001-0011 | TTB | Proposed Information Collections; Comment Request Notices for 2020 TTB-2020-0001 | Proposed Information Collections; Comment Request (No. 80) | Notice | Request for Comments | 2020-09-03T04:00:00Z | 2020 | 9 | 2020-09-03T04:00:00Z | 2020-11-03T04:59:59Z | 2020-09-03T13:39:51Z | 2020-19528 | 0 | 0 | 09000064848402e1 |
| TTB-2020-0001-0007 | TTB | Proposed Information Collections; Comment Request Notices for 2020 TTB-2020-0001 | Proposed Information Collections; Comment Request (No. 79) | Notice | Request for Comments | 2020-07-31T04:00:00Z | 2020 | 7 | 2020-07-31T04:00:00Z | 2020-09-30T03:59:59Z | 2020-07-31T14:24:13Z | 2020-16619 | 0 | 0 | 09000064847c3ecd |
| TTB-2020-0001-0003 | TTB | Proposed Information Collections; Comment Request Notices for 2020 TTB-2020-0001 | Proposed Information Collections; Comment Request (No. 78) | Notice | Request for Comments | 2020-05-07T04:00:00Z | 2020 | 5 | 2020-05-07T04:00:00Z | 2020-07-07T03:59:59Z | 2020-05-16T01:01:52Z | FR Doc 2020-09700 | 0 | 0 | 090000648457a885 |
| TTB-2020-0001-0001 | TTB | Proposed Information Collections; Comment Request Notices for 2020 TTB-2020-0001 | Proposed Information Collections; Comment Request (No. 77) | Notice | Request for Comments | 2020-01-07T05:00:00Z | 2020 | 1 | 2020-01-07T05:00:00Z | 2020-03-10T03:59:59Z | 2020-02-29T02:03:15Z | Vol. 85, No. 4 | 0 | 0 | 090000648427681e |
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;