documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
11 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2018 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-2018-0176-0001 | USPS | International Mailing Services: Product and Price Changes-CPI | Proposed Rule | 2018-10-17T04:00:00Z | 2018 | 10 | 2018-10-17T04:00:00Z | 2018-11-17T04:59:59Z | 2018-10-17T12:01:29Z | 2018-22473 | 0 | 0 | 09000064837fd2b3 | ||
| USPS-2018-0173-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2018-10-17T04:00:00Z | 2018 | 10 | 2018-10-17T04:00:00Z | 2018-11-17T04:59:59Z | 2018-10-17T11:56:01Z | 2018-22475 | 0 | 0 | 09000064837fd0c7 | ||
| USPS-2018-0148-0001 | USPS | Marketing Mail Content Standards | Proposed Rule | 2018-08-23T04:00:00Z | 2018 | 8 | 2018-08-23T04:00:00Z | 2018-10-23T03:59:59Z | 2018-08-23T11:57:54Z | 2018-18105 | 0 | 0 | 0900006483648b4a | ||
| USPS-2018-0127-0001 | USPS | New Mailing Standards for Merchandise Return Service | Proposed Rule | 2018-07-23T04:00:00Z | 2018 | 7 | 2018-07-23T04:00:00Z | 2018-08-23T03:59:59Z | 2018-07-23T14:57:14Z | 2018-15617 | 0 | 0 | 09000064835361ee | ||
| USPS-2018-0128-0001 | USPS | POSTNET Barcode | Proposed Rule | 2018-07-23T04:00:00Z | 2018 | 7 | 2018-07-23T04:00:00Z | 2018-08-23T03:59:59Z | 2018-07-23T15:09:44Z | 2018-15549 | 0 | 0 | 09000064835364ff | ||
| USPS-2018-0126-0001 | USPS | New Mailing Standards for Mailpieces Containing Liquids; Extension of Comment Period | Proposed Rule | 2018-07-20T04:00:00Z | 2018 | 7 | 2018-07-20T04:00:00Z | 2018-10-01T03:59:59Z | 2018-07-20T12:05:39Z | 2018-15548 | 0 | 0 | 09000064835263c3 | ||
| USPS-2018-0122-0001 | USPS | New Mailing Standards for Mailpieces Containing Liquids | Proposed Rule | 2018-07-09T04:00:00Z | 2018 | 7 | 2018-07-09T04:00:00Z | 2018-08-09T03:59:59Z | 2018-07-09T11:49:29Z | 2018-14382 | 0 | 0 | 09000064834c3822 | ||
| USPS-2018-0098-0001 | USPS | Production or Disclosure of Material or Information | Proposed Rule | 2018-06-15T04:00:00Z | 2018 | 6 | 2018-06-15T04:00:00Z | 2018-07-17T03:59:59Z | 2018-06-15T11:49:40Z | 2018-12858 | 0 | 0 | 0900006483418c6c | ||
| USPS-2018-0069-0001 | USPS | Overweight Items | Proposed Rule | 2018-04-20T04:00:00Z | 2018 | 4 | 2018-04-20T04:00:00Z | 2018-05-22T03:59:59Z | 2018-04-20T12:05:02Z | 2018-08257 | 0 | 0 | 090000648319a0b0 | ||
| USPS-2018-0046-0001 | USPS | Changes to Validations for Intelligent Mail Package Barcode | Proposed Rule | 2018-02-27T05:00:00Z | 2018 | 2 | 2018-02-27T05:00:00Z | 2018-03-30T03:59:59Z | 2018-02-27T12:48:55Z | 2018-03947 | 0 | 0 | 0900006482f67e01 | ||
| USPS-2018-0036-0001 | USPS | Green and Secure Alternative Move Update Method Option | Proposed Rule | 2018-01-09T05:00:00Z | 2018 | 1 | 2018-01-09T05:00:00Z | 2018-02-09T04:59:59Z | 2018-01-09T12:47:19Z | 2018-00006 | 0 | 0 | 0900006482dc1e44 |
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;