home / openregs

documents

Regulatory documents from Regulations.gov including rules, proposed rules, notices, and supporting materials.

Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API

14 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2022 sorted by posted_date descending

✎ View and edit SQL

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)

posted_year 1

  • 2022 · 14 ✖

document_type 1

  • Proposed Rule · 14 ✖

agency_id 1

  • USPS · 14 ✖
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-2022-0254-0001 USPS   Post Office Box Refund Proposed Rule   2022-12-13T05:00:00Z 2022 12 2022-12-13T05:00:00Z 2023-01-13T04:59:59Z 2022-12-13T12:38:34Z 2022-26968 0 0 0900006485533114
USPS-2022-0230-0001 USPS   Electronic Indicators for the Mailing of Hazardous Materials Proposed Rule   2022-11-30T05:00:00Z 2022 11 2022-11-30T05:00:00Z 2022-12-31T04:59:59Z 2022-11-30T12:38:30Z 2022-26072 0 0 090000648550a1ed
USPS-2022-0201-0001 USPS   Address Correction Notices Proposed Rule   2022-11-09T05:00:00Z 2022 11 2022-11-09T05:00:00Z 2022-12-10T04:59:59Z 2022-11-09T12:30:53Z 2022-24136 0 0 090000648549d0f6
USPS-2022-0193-0001 USPS   International Mailing Services: Proposed Price Changes Proposed Rule   2022-10-28T04:00:00Z 2022 10 2022-10-28T04:00:00Z 2022-11-29T04:59:59Z 2022-10-28T11:45:42Z 2022-23525 0 0 090000648546a16f
USPS-2022-0186-0001 USPS   Removal of Sacks: Marketing Mail and Periodicals Flats Proposed Rule   2022-10-21T04:00:00Z 2022 10 2022-10-21T04:00:00Z 2022-11-22T04:59:59Z 2022-10-21T11:49:22Z 2022-22958 0 0 090000648544294a
USPS-2022-0179-0001 USPS   New Mailing Standards for Domestic Mailing Services Products Proposed Rule   2022-10-20T04:00:00Z 2022 10 2022-10-20T04:00:00Z 2022-11-22T04:59:59Z 2022-10-20T11:43:21Z 2022-22742 0 0 090000648543b0b5
USPS-2022-0072-0001 USPS   Caller Service-Customized Address Proposed Rule   2022-06-17T04:00:00Z 2022 6 2022-06-17T04:00:00Z 2022-07-06T03:59:59Z 2022-06-17T12:01:45Z 2022-12846 0 0 0900006485178cb5
USPS-2022-0065-0001 USPS   Parcels Prepared in Soft Packaging Proposed Rule   2022-06-13T04:00:00Z 2022 6 2022-06-13T04:00:00Z   2022-06-13T12:12:39Z 2022-12596 0 0 090000648515e552
USPS-2022-0039-0001 USPS   Special Handling; Fragile Discontinued Proposed Rule   2022-04-20T04:00:00Z 2022 4 2022-04-20T04:00:00Z 2022-05-21T03:59:59Z 2022-04-20T12:12:57Z 2022-07829 0 0 0900006485026330
USPS-2022-0038-0001 USPS   International Mailing Services: Price Changes Proposed Rule   2022-04-14T04:00:00Z 2022 4 2022-04-14T04:00:00Z 2022-05-17T03:59:59Z 2022-04-14T11:42:09Z 2022-07706 0 0 0900006485019844
USPS-2022-0037-0001 USPS   New Mailing Standardsfor Domestic Mailing Services Products Proposed Rule   2022-04-12T04:00:00Z 2022 4 2022-04-12T04:00:00Z 2022-05-13T03:59:59Z 2022-04-12T11:51:48Z 2022-07710 0 0 090000648500f9c2
USPS-2022-0032-0001 USPS   Parcels Prepared in Soft Packaging Proposed Rule   2022-03-24T04:00:00Z 2022 3 2022-03-24T04:00:00Z 2022-04-26T03:59:59Z 2022-03-24T12:05:57Z 2022-05600 0 0 0900006484fde397
USPS-2022-0033-0001 USPS   Periodicals Requester Records Requirements Proposed Rule   2022-03-24T04:00:00Z 2022 3 2022-03-24T04:00:00Z 2022-04-26T03:59:59Z 2022-03-24T12:06:04Z 2022-05357 0 0 0900006484fde3dd
USPS-2022-0026-0001 USPS   Supplemental Standards of Ethical Conduct for Employees Proposed Rule   2022-03-08T05:00:00Z 2022 3 2022-03-08T05:00:00Z 2022-05-10T03:59:59Z 2022-03-08T13:04:12Z 2022-04452 0 0 0900006484fbfec2

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

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;
Powered by Datasette · Queries took 725.888ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API