documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, 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-2017-0238-0001 | USPS | Revenue Deficiency | Proposed Rule | 2017-12-13T05:00:00Z | 2017 | 12 | 2017-12-13T05:00:00Z | 2018-01-13T04:59:59Z | 2017-12-13T12:42:15Z | 2017-26740 | 0 | 0 | 0900006482d01eba | ||
| USPS-2017-0201-0001 | USPS | eInduction Option, Seamless Acceptance Program, and Full-Service Automation Option, Verification Standards | Proposed Rule | 2017-10-31T04:00:00Z | 2017 | 10 | 2017-10-31T04:00:00Z | 2017-12-01T04:59:59Z | 2017-10-31T12:06:58Z | 2017-23615 | 0 | 0 | 0900006482c2880a | ||
| USPS-2017-0198-0001 | USPS | International Mailing Services: Proposed Product and Price Changes-CPI | Proposed Rule | 2017-10-24T04:00:00Z | 2017 | 10 | 2017-10-24T04:00:00Z | 2017-11-25T04:59:59Z | 2017-10-24T11:58:10Z | 2017-22749 | 0 | 0 | 0900006482bfd93e | ||
| USPS-2017-0185-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2017-10-13T04:00:00Z | 2017 | 10 | 2017-10-13T04:00:00Z | 2017-11-14T04:59:59Z | 2017-10-13T11:52:47Z | 2017-22212 | 0 | 0 | 0900006482bc6b21 | ||
| USPS-2017-0176-0001 | USPS | Overweight Parcels | Proposed Rule | 2017-10-03T04:00:00Z | 2017 | 10 | 2017-10-03T04:00:00Z | 2017-11-03T03:59:59Z | 2017-10-03T11:42:29Z | 2017-21150 | 0 | 0 | 0900006482b935ea | ||
| USPS-2017-0085-0001 | USPS | International Mailing Services: Mailing Services Rules Changes | Proposed Rule | 2017-05-31T04:00:00Z | 2017 | 5 | 2017-05-31T04:00:00Z | 2017-07-18T03:59:59Z | 2017-05-31T11:45:43Z | 2017-11120 | 0 | 0 | 090000648266e566 | ||
| USPS-2017-0030-0001 | USPS | Address Quality Census Measurement and Assessment Process; Correction | Proposed Rule | 2017-02-27T05:00:00Z | 2017 | 2 | 2017-02-27T05:00:00Z | 2017-03-30T03:59:59Z | 2017-02-27T14:10:32Z | 2017-03723 | 0 | 0 | 09000064824dd55f | ||
| USPS-2017-0011-0001 | USPS | Seamless Acceptance Program | Proposed Rule | 2017-01-13T05:00:00Z | 2017 | 1 | 2017-01-13T05:00:00Z | 2017-02-14T04:59:59Z | 2017-01-13T13:10:09Z | 2016-32057 | 0 | 0 | 090000648247051e | ||
| USPS-2017-0009-0001 | USPS | Electronic Induction (eInduction) Option | Proposed Rule | 2017-01-09T05:00:00Z | 2017 | 1 | 2017-01-09T05:00:00Z | 2017-02-09T04:59:59Z | 2017-01-09T12:46:53Z | 2016-32056 | 0 | 0 | 0900006482452b46 | ||
| USPS-2017-0007-0001 | USPS | Requirements for Authority to Manufacture and Distribute Postage Evidencing Systems: Customized Postage Products | Proposed Rule | 2017-01-05T05:00:00Z | 2017 | 1 | 2017-01-05T05:00:00Z | 2017-02-07T04:59:59Z | 2017-01-05T12:47:27Z | 2016-31856 | 0 | 0 | 090000648244c0b2 |
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;