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

17 rows where agency_id = "USPS", document_type = "Rule" and posted_year = 2016 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, posted_date (date), comment_start_date (date), last_modified (date)

posted_year 1

  • 2016 · 17 ✖

document_type 1

  • Rule · 17 ✖

agency_id 1

  • USPS · 17 ✖
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-2016-0261-0001 USPS   New Mailing Standards for Domestic Mailing Services Products Rule   2016-12-21T05:00:00Z 2016 12 2016-12-21T05:00:00Z   2016-12-21T12:51:14Z 2016-30381 0 0 090000648242cfd8
USPS-2016-0234-0001 USPS   Production or Disclosure of Material or Information Rule   2016-11-30T05:00:00Z 2016 11 2016-11-30T05:00:00Z   2016-11-30T13:00:00Z 2016-28430 0 0 09000064823cb5f4
USPS-2016-0210-0001 USPS   International Product and Price Changes Rule   2016-10-26T04:00:00Z 2016 10 2016-10-26T04:00:00Z   2016-10-26T11:54:26Z 2016-25711 0 0 090000648234d5cc
USPS-2016-0209-0001 USPS   Domestic Competitive Products Pricing and Mailing Standards Changes Rule   2016-10-26T04:00:00Z 2016 10 2016-10-26T04:00:00Z   2016-10-26T11:52:14Z 2016-25712 0 0 090000648234d40b
USPS-2016-0208-0001 USPS   Inspection Service Authority Rule   2016-10-26T04:00:00Z 2016 10 2016-10-26T04:00:00Z   2016-10-26T11:52:08Z 2016-25805 0 0 090000648234d403
USPS-2016-0190-0001 USPS   Enterprise Payment System and Enterprise PO Boxes Online Rule   2016-09-30T04:00:00Z 2016 9 2016-09-30T04:00:00Z   2016-09-30T12:14:33Z 2016-22517 0 0 09000064822849fd
USPS-2016-0189-0001 USPS   International Mail Manual Rule   2016-09-29T04:00:00Z 2016 9 2016-09-29T04:00:00Z   2016-09-29T13:09:25Z 2016-23334 0 0 090000648227f8b7
USPS-2016-0184-0001 USPS   Domestic Mail Manual Rule   2016-09-29T04:00:00Z 2016 9 2016-09-29T04:00:00Z   2016-09-29T13:07:33Z 2016-23335 0 0 090000648227f6e4
USPS-2016-0150-0001 USPS   Procedures Relating to the Disposition of Property Acquired by the United States Postal Service Office of Inspector General for Use as Evidence Rule   2016-08-02T04:00:00Z 2016 8 2016-08-02T04:00:00Z   2016-08-02T12:20:14Z 2016-18234 0 0 090000648214c525
USPS-2016-0144-0001 USPS   Enterprise Payment System and Enterprise P.O. Boxes Online Rule   2016-07-26T04:00:00Z 2016 7 2016-07-26T04:00:00Z   2016-07-26T12:45:03Z 2016-17425 0 0 0900006482122232
USPS-2016-0128-0001 USPS   Inspection Service Authority: Civil Monetary Penalty Inflation Adjustment Rule   2016-06-30T04:00:00Z 2016 6 2016-06-30T04:00:00Z   2016-06-30T12:00:07Z 2016-15464 0 0 090000648207c435
USPS-2016-0120-0001 USPS   Rule of Procedure Before the Judicial Officer Rule   2016-06-21T04:00:00Z 2016 6 2016-06-21T04:00:00Z   2016-06-21T12:35:06Z 2016-14553 0 0 0900006482053944
USPS-2016-0108-0001 USPS   International Product Changes Rule   2016-06-02T04:00:00Z 2016 6 2016-06-02T04:00:00Z   2016-06-02T12:36:47Z 2016-13080 0 0 0900006482008efe
USPS-2016-0094-0001 USPS   Purchasing of Property and Services Rule   2016-05-11T04:00:00Z 2016 5 2016-05-11T04:00:00Z   2016-05-11T12:50:03Z 2016-11043 0 0 0900006481fc29f5
USPS-2016-0084-0001 USPS   International Product Changes Rule   2016-04-22T04:00:00Z 2016 4 2016-04-22T04:00:00Z   2016-04-22T12:22:36Z 2016-09213 0 0 0900006481f83285
USPS-2016-0081-0001 USPS   Semipostal Stamp Program Rule   2016-04-20T04:00:00Z 2016 4 2016-04-20T04:00:00Z   2016-04-20T12:35:29Z 2016-09081 0 0 0900006481f77f77
USPS-2016-0028-0001 USPS   Rules of Practice before the Postal Service Board of Contract Appeals Rule   2016-02-11T05:00:00Z 2016 2 2016-02-11T05:00:00Z   2016-02-11T14:02:22Z 2016-02741 0 0 0900006481e64c8c

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