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

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

✎ View and edit SQL

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)

posted_year 1

  • 2012 · 13 ✖

document_type 1

  • Proposed Rule · 13 ✖

agency_id 1

  • USPS · 13 ✖
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-2012-0101-0001 USPS   International Mailing Services: Proposed Product and Price Changes Proposed Rule   2012-10-23T04:00:00Z 2012 10 2012-10-23T04:00:00Z 2012-11-24T04:59:59Z 2012-10-23T13:00:07Z 2012-25992 0 0 090000648114c526
USPS-2012-0102-0001 USPS   New Mailing Standards for Domestic Mailing Services Products Proposed Rule   2012-10-23T04:00:00Z 2012 10 2012-10-23T04:00:00Z 2012-11-24T04:59:59Z 2012-10-23T13:00:09Z 2012-25995 0 0 090000648114c527
USPS-2012-0095-0001 USPS   Implementation of Full-Service Intelligent Mail Requirements for Automation Prices Proposed Rule   2012-10-17T04:00:00Z 2012 10 2012-10-17T04:00:00Z 2012-11-17T04:59:59Z 2012-10-17T13:10:54Z 2012-25551 0 0 09000064811448a2
USPS-2012-0087-0001 USPS   New Marking Standards for Parcels Containing Hazardous Materials Proposed Rule   2012-10-03T04:00:00Z 2012 10 2012-10-03T04:00:00Z 2012-10-24T03:59:59Z 2012-10-03T12:50:00Z 2012-24296 0 0 0900006481132882
USPS-2012-0076-0001 USPS   Retirement of FASTforward Technology Proposed Rule   2012-09-04T04:00:00Z 2012 9 2012-09-04T04:00:00Z 2012-10-05T03:59:59Z 2012-09-04T12:46:28Z 2012-21738 0 0 090000648110066b
USPS-2012-0078-0001 USPS   Rules of Practice in Proceedings Relative to Administrative Offsets Initiated Against Former Employees of the Postal Service Proposed Rule   2012-09-04T04:00:00Z 2012 9 2012-09-04T04:00:00Z 2012-10-05T03:59:59Z 2012-09-04T12:47:15Z 2012-21617 0 0 0900006481100701
USPS-2012-0058-0001 USPS   Eligibility Criteria for Bound Printed Matter Parcels Proposed Rule   2012-07-25T04:00:00Z 2012 7 2012-07-25T04:00:00Z 2012-09-11T03:59:59Z 2012-07-25T12:39:12Z 2012-18085 0 0 09000064810af08e
USPS-2012-0052-0001 USPS   Authorization to Manufacture and Distribute Postage Evidencing Systems; Discontinued Indicia Proposed Rule   2012-07-13T04:00:00Z 2012 7 2012-07-13T04:00:00Z 2012-09-12T03:59:59Z 2012-07-13T12:23:25Z 2012-17067 0 0 09000064810932bf
USPS-2012-0048-0001 USPS   New Pallet Preparation Standards for Periodicals Proposed Rule   2012-06-29T04:00:00Z 2012 6 2012-06-29T04:00:00Z 2012-07-31T03:59:59Z 2012-06-29T13:18:40Z 2012-15927 0 0 09000064810700eb
USPS-2012-0019-0001 USPS   Implementation of Full-Service Intelligent Mail Required for Automation Prices Proposed Rule   2012-04-20T04:00:00Z 2012 4 2012-04-20T04:00:00Z 2012-06-05T03:59:59Z 2012-04-20T12:55:29Z 2012-09537 0 0 0900006480ff4cc1
USPS-2012-0009-0001 USPS   POSTNET Barcode Discontinuation Proposed Rule   2012-03-02T05:00:00Z 2012 3 2012-03-02T05:00:00Z 2012-04-03T03:59:59Z 2012-03-02T14:03:30Z 2012-05050 0 0 0900006480fccc38
USPS-2012-0007-0001 USPS   Inspection Service Authority; Seizure and Forfeiture Proposed Rule   2012-02-27T05:00:00Z 2012 2 2012-02-27T05:00:00Z 2012-03-29T03:59:59Z 2012-02-27T13:28:13Z 2012-04396 0 0 0900006480fc2f85
USPS-2012-0004-0001 USPS   Recognition of Distribution of Periodicals via Electronic Copies Proposed Rule   2012-02-03T05:00:00Z 2012 2 2012-02-03T05:00:00Z 2012-03-06T04:59:59Z 2012-02-03T14:02:28Z 2012-02374 0 0 0900006480face52

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 514.235ms · Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API