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 = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: 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-2021-0129-0001 | USPS | Periodicals Pending Authorization Postage | Proposed Rule | 2021-09-30T04:00:00Z | 2021 | 9 | 2021-09-30T04:00:00Z | 2021-11-02T03:59:59Z | 2021-09-30T11:52:49Z | 2021-21078 | 0 | 0 | 0900006484db3cd3 | ||
| USPS-2021-0074-0001 | USPS | International Mailing Services: Price Changes | Proposed Rule | 2021-06-03T04:00:00Z | 2021 | 6 | 2021-06-03T04:00:00Z | 2021-07-07T03:59:59Z | 2021-06-03T11:39:52Z | 2021-11721 | 0 | 0 | 0900006484b51314 | ||
| USPS-2021-0075-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2021-06-03T04:00:00Z | 2021 | 6 | 2021-06-03T04:00:00Z | 2021-07-07T03:59:59Z | 2021-06-03T11:40:27Z | 2021-11722 | 0 | 0 | 0900006484b5140d | ||
| USPS-2021-0069-0001 | USPS | Mail Screening Regulations | Proposed Rule | 2021-05-24T04:00:00Z | 2021 | 5 | 2021-05-24T04:00:00Z | 2021-06-24T03:59:59Z | 2021-05-24T11:43:13Z | 2021-10776 | 0 | 0 | 0900006484b2e1ee | ||
| USPS-2021-0057-0001 | USPS | Service Standards for Market-Dominant Mail Products | Proposed Rule | 2021-04-23T04:00:00Z | 2021 | 4 | 2021-04-23T04:00:00Z | 2021-06-23T03:59:59Z | 2021-04-23T11:53:41Z | 2021-08463 | 0 | 0 | 0900006484ab421c | ||
| USPS-2021-0028-0001 | USPS | Addressing Standards | Proposed Rule | 2021-02-22T05:00:00Z | 2021 | 2 | 2021-02-22T05:00:00Z | 2021-03-25T03:59:59Z | 2021-02-22T12:45:20Z | 2020-29031 | 0 | 0 | 0900006484a46701 | ||
| USPS-2021-0027-0001 | USPS | Treatment of E-Cigarettes in the Mail | Proposed Rule | 2021-02-19T05:00:00Z | 2021 | 2 | 2021-02-19T05:00:00Z | 2021-03-23T03:59:59Z | 2021-02-19T12:53:10Z | 2021-03393 | 0 | 0 | 0900006484a42f1e | ||
| USPS-2021-0024-0001 | USPS | New Outbound Commercial Provider Initiative Program Information; Correction | Proposed Rule | 2021-02-09T05:00:00Z | 2021 | 2 | 2021-02-09T05:00:00Z | 2021-02-09T12:51:13Z | 2021-02602 | 0 | 0 | 0900006484a22520 | |||
| USPS-2021-0022-0001 | USPS | New Outbound Commercial Provider Initiative Program Information | Proposed Rule | 2021-02-01T05:00:00Z | 2021 | 2 | 2021-02-01T05:00:00Z | 2021-02-01T12:53:02Z | 2020-28968 | 0 | 0 | 0900006484a11a30 | |||
| USPS-2021-0013-0001 | USPS | Extra Services Refund Time Limit | Proposed Rule | 2021-01-07T05:00:00Z | 2021 | 1 | 2021-01-07T05:00:00Z | 2021-02-09T04:59:59Z | 2021-01-07T12:56:21Z | 2020-27802 | 0 | 0 | 09000064849e5765 |
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;