documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2020 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, comment_end_date, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| USPS-2020-0237-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2020-10-15T04:00:00Z | 2020 | 10 | 2020-10-15T04:00:00Z | 2020-11-17T04:59:59Z | 2020-10-15T11:54:02Z | 2020-22887 | 0 | 0 | 090000648490fe78 | ||
| USPS-2020-0233-0001 | USPS | International Mailing Services: Proposed Product and Price Changes-CPI | Proposed Rule | 2020-10-15T04:00:00Z | 2020 | 10 | 2020-10-15T04:00:00Z | 2020-11-17T04:59:59Z | 2020-10-15T11:51:08Z | 2020-22886 | 0 | 0 | 090000648490fd95 | ||
| USPS-2020-0216-0001 | USPS | Addressing Standards | Proposed Rule | 2020-09-22T04:00:00Z | 2020 | 9 | 2020-09-22T04:00:00Z | 2020-10-23T03:59:59Z | 2020-09-22T11:50:02Z | 2020-19096 | 0 | 0 | 090000648486edfe | ||
| USPS-2020-0169-0001 | USPS | Electronic Indicators for the Mailing of Hazardous and Perishable Materials | Proposed Rule | 2020-08-06T04:00:00Z | 2020 | 8 | 2020-08-06T04:00:00Z | 2020-09-09T03:59:59Z | 2020-08-06T11:37:24Z | 2020-15773 | 0 | 0 | 09000064847dd526 | ||
| USPS-2020-0163-0001 | USPS | New Mailing Standards for the Separation of Hazardous Materials | Proposed Rule | 2020-08-03T04:00:00Z | 2020 | 8 | 2020-08-03T04:00:00Z | 2020-09-03T03:59:59Z | 2020-08-03T11:45:57Z | 2020-15774 | 0 | 0 | 09000064847cbe5e | ||
| USPS-2020-0093-0001 | USPS | Semipostal Stamp Program | Proposed Rule | 2020-06-10T04:00:00Z | 2020 | 6 | 2020-06-10T04:00:00Z | 2020-07-11T03:59:59Z | 2020-06-10T11:56:50Z | 2020-12412 | 0 | 0 | 09000064846ddf9b | ||
| USPS-2020-0078-0001 | USPS | Authorization to Manufacture and Distribute Postage Evidencing Systems | Proposed Rule | 2020-05-20T04:00:00Z | 2020 | 5 | 2020-05-20T04:00:00Z | 2020-06-20T03:59:59Z | 2020-05-20T11:56:15Z | 2020-10245 | 0 | 0 | 090000648464d7ae | ||
| USPS-2020-0076-0001 | USPS | Extra Services Refund Time Limit | Proposed Rule | 2020-05-14T04:00:00Z | 2020 | 5 | 2020-05-14T04:00:00Z | 2020-06-16T03:59:59Z | 2020-05-14T11:47:04Z | 2020-09843 | 0 | 0 | 09000064845f4fa8 | ||
| USPS-2020-0018-0001 | USPS | Authorization to Manufacture and Distribute Postage Evidencing Systems | Proposed Rule | 2020-02-06T05:00:00Z | 2020 | 2 | 2020-02-06T05:00:00Z | 2020-03-10T03:59:59Z | 2020-02-06T12:56:59Z | 2020-01120 | 0 | 0 | 09000064843334cf | ||
| USPS-2020-0007-0001 | USPS | Seamless Changes for Detached Mail Unit and Full-Service Mailings | Proposed Rule | 2020-01-08T05:00:00Z | 2020 | 1 | 2020-01-08T05:00:00Z | 2020-02-08T04:59:59Z | 2020-01-08T12:49:49Z | 2019-28505 | 0 | 0 | 090000648427bf86 |
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;