documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
12 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2007 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-2007-0052-0001 | USPS | Modern Service Standards for Market-Dominant Products | Proposed Rule | 2007-10-17T04:00:00Z | 2007 | 10 | 2007-10-17T04:00:00Z | 2007-11-17T04:59:59Z | 2007-11-16T12:10:20Z | 07-05065 | 0 | 0 | 0900006480312cdb | ||
| USPS-2007-0048-0001 | USPS | Elimination of Cash and Check Deposits Into Local Trust Accounts for Express Mail Corporate Accounts | Proposed Rule | 2007-10-10T04:00:00Z | 2007 | 10 | 2007-10-10T04:00:00Z | 2007-11-10T04:59:59Z | 2007-11-09T12:10:43Z | E7-19934 | 0 | 0 | 09000064802fe1bc | ||
| USPS-2007-0050-0001 | USPS | New Address Requirements for Automation, Presorted, and Carrier Route Rate Letters | Proposed Rule | 2007-10-10T04:00:00Z | 2007 | 10 | 2007-10-10T04:00:00Z | 2007-12-11T04:59:59Z | 2007-12-10T14:22:02Z | E7-19931 | 0 | 0 | 09000064802fe22c | ||
| USPS-2007-0049-0001 | USPS | New Address and Barcode Requirements for Automation, Presorted, and Carrier Route Flat-Size Mail | Proposed Rule | 2007-10-10T04:00:00Z | 2007 | 10 | 2007-10-10T04:00:00Z | 2007-12-11T04:59:59Z | 2007-12-10T14:21:54Z | E7-19932 | 0 | 0 | 09000064802fe1ea | ||
| USPS-2007-0042-0001 | USPS | Revisions to DMM 604.9.2 Postage and Fee Refunds | Proposed Rule | 2007-09-12T04:00:00Z | 2007 | 9 | 2007-09-12T04:00:00Z | 2007-10-13T03:59:59Z | 2007-10-12T12:52:38Z | E7-18035 | 0 | 0 | 0900006480284f08 | ||
| USPS-2007-0027-0001 | USPS | Electronic Option for Delivery Confirmation Service Required for Priority Mail Open and Distribute | Proposed Rule | 2007-05-24T04:00:00Z | 2007 | 5 | 2007-05-24T04:00:00Z | 2007-06-26T03:59:59Z | 2007-06-25T11:14:27Z | E7-09967 | 0 | 0 | 09000064802429d6 | ||
| USPS-2007-0026-0001 | USPS | New Address Quality Standards for First-Class Mail and Standard Mail | Proposed Rule | 2007-05-23T04:00:00Z | 2007 | 5 | 2007-05-23T04:00:00Z | 2007-05-23T11:12:01Z | E7-09881 | 0 | 0 | 0900006480242169 | |||
| USPS-2007-0023-0001 | USPS | Revised Standards for Mailing Lithium Batteries | Proposed Rule | 2007-04-25T04:00:00Z | 2007 | 4 | 2007-04-25T04:00:00Z | 2007-05-26T03:59:59Z | 2007-05-25T11:11:14Z | E7-07817 | 0 | 0 | 090000648022e329 | ||
| USPS-2007-0022-0001 | USPS | Revised Standards for Mailing Sharps Waste and Other Regulated Medical Waste | Proposed Rule | 2007-04-25T04:00:00Z | 2007 | 4 | 2007-04-25T04:00:00Z | 2007-05-26T03:59:59Z | 2007-05-25T11:08:16Z | E7-07816 | 0 | 0 | 090000648022e237 | ||
| USPS-2007-0018-0001 | USPS | New Standards for Periodicals Mailing Services | Proposed Rule | 2007-04-11T04:00:00Z | 2007 | 4 | 2007-04-11T04:00:00Z | 2007-04-26T03:59:59Z | 2007-04-25T11:09:54Z | 07-01796 | 0 | 0 | 0900006480223f50 | ||
| USPS-2007-0005-0001 | USPS | Revised Standards for Mailing Adult Fowl | Proposed Rule | 2007-02-16T05:00:00Z | 2007 | 2 | 2007-02-16T05:00:00Z | 2007-03-20T03:59:59Z | 2007-03-19T11:10:38Z | E7-02817 | 0 | 0 | 0900006480208780 | ||
| USPS-2007-0003-0001 | USPS | New Standards for Domestic Mailing Services | Proposed Rule | 2007-01-17T05:00:00Z | 2007 | 1 | 2007-01-17T05:00:00Z | 2007-02-01T04:59:59Z | 2007-01-31T12:10:21Z | E7-00245 | 0 | 0 | 09000064801f50e7 |
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;