documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2016 sorted by posted_date descending
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)
| 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-0204-0001 | USPS | International Mailing Services: Price Changes | Proposed Rule | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2016-11-17T04:59:59Z | 2016-10-17T11:47:14Z | 2016-24968 | 0 | 0 | 09000064823030bd | ||
| USPS-2016-0205-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2016-10-17T04:00:00Z | 2016 | 10 | 2016-10-17T04:00:00Z | 2016-11-17T04:59:59Z | 2016-10-17T11:47:54Z | 2016-24710 | 0 | 0 | 0900006482303570 | ||
| USPS-2016-0168-0001 | USPS | Requirements for Authority to Manufacture and Distribute Postage Evidencing Systems | Proposed Rule | 2016-09-06T04:00:00Z | 2016 | 9 | 2016-09-06T04:00:00Z | 2016-10-07T03:59:59Z | 2016-09-06T11:48:47Z | 2016-21258 | 0 | 0 | 09000064821d2fa8 | ||
| USPS-2016-0135-0001 | USPS | Address Quality Census Measurement and Assessment Process | Proposed Rule | 2016-07-06T04:00:00Z | 2016 | 7 | 2016-07-06T04:00:00Z | 2016-08-06T03:59:59Z | 2016-07-06T12:45:47Z | 2016-15649 | 0 | 0 | 090000648208be8e | ||
| USPS-2016-0066-0001 | USPS | Procedures Relating to the Disposition of Property Acquired by the United States Postal Service Office of Inspector General for Use as Evidence | Proposed Rule | 2016-03-30T04:00:00Z | 2016 | 3 | 2016-03-30T04:00:00Z | 2016-04-30T03:59:59Z | 2016-03-30T11:54:39Z | 2016-07103 | 0 | 0 | 0900006481ee9cd4 | ||
| USPS-2016-0037-0001 | USPS | Semipostal Stamp Program | Proposed Rule | 2016-03-03T05:00:00Z | 2016 | 3 | 2016-03-03T05:00:00Z | 2016-04-05T03:59:59Z | 2016-03-03T13:53:29Z | 2016-04646 | 0 | 0 | 0900006481e9cd52 | ||
| USPS-2016-0035-0001 | USPS | Requirements for Authority to Manufacture and Distribute Postage Evidencing Systems | Proposed Rule | 2016-02-29T05:00:00Z | 2016 | 2 | 2016-02-29T05:00:00Z | 2016-03-31T03:59:59Z | 2016-02-29T15:24:31Z | 2016-04237 | 0 | 0 | 0900006481e8fa38 | ||
| USPS-2016-0025-0001 | USPS | Semipostal Stamp Program | Proposed Rule | 2016-01-22T05:00:00Z | 2016 | 1 | 2016-01-22T05:00:00Z | 2016-02-23T04:59:59Z | 2016-01-22T13:08:58Z | 2016-01070 | 0 | 0 | 0900006481e28709 |
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;