documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2025 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2025-1846-0001 | USPS | Claims Filing Date for Insured Mail | Proposed Rule | 2025-11-26T05:00:00Z | 2025 | 11 | 2025-11-26T05:00:00Z | 2025-12-27T04:59:59Z | 2025-11-26T18:38:42Z | 2025-21308 | 0 | 0 | 09000064b909eb82 | ||
| USPS-2025-1747-0001 | USPS | Shape-Based Labeling Lists | Proposed Rule | 2025-11-20T05:00:00Z | 2025 | 11 | 2025-11-20T05:00:00Z | 2025-12-23T04:59:59Z | 2025-11-20T18:20:35Z | 2025-20450 | 0 | 0 | 09000064b908a811 | ||
| USPS-2025-1152-0001 | USPS | Manifest Mailing System Retired | Proposed Rule | 2025-09-12T04:00:00Z | 2025 | 9 | 2025-09-12T04:00:00Z | 2025-10-15T03:59:59Z | 2025-09-12T16:17:52Z | 2025-17659 | 0 | 0 | 09000064b8f73f17 | ||
| USPS-2025-0954-0001 | USPS | Postmarks and Postal Possession | Proposed Rule | 2025-08-12T04:00:00Z | 2025 | 8 | 2025-08-12T04:00:00Z | 2025-09-12T03:59:59Z | 2025-08-12T16:56:32Z | 2025-15266 | 0 | 0 | 09000064b8ef8a36 | ||
| USPS-2025-0401-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2025-05-01T00:00:00Z | 2025 | 5 | 2025-05-01T00:00:00Z | 2025-06-03T03:59:59Z | 2025-05-21T20:37:16Z | 2025-07388 | 0 | 0 | 09000064b8cf07b9 | ||
| USPS-2025-0373-0001 | USPS | International Mailing Services: Price Changes | Proposed Rule | 2025-04-18T04:00:00Z | 2025 | 4 | 2025-04-18T04:00:00Z | 2025-05-20T03:59:59Z | 2025-04-18T12:21:41Z | 2025-06656 | 0 | 0 | 0900006486a9f09b | ||
| USPS-2025-0207-0001 | USPS | Optional 5-Digit/3-Digit/Area Distribution Center Sortation | Proposed Rule | 2025-02-05T05:00:00Z | 2025 | 2 | 2025-02-05T05:00:00Z | 2025-03-08T04:59:59Z | 2025-02-05T12:23:15Z | 2025-02212 | 0 | 0 | 0900006486933724 |
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;