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 = 2019 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-2019-0254-0001 | USPS | Returns Service | Proposed Rule | 2019-12-19T05:00:00Z | 2019 | 12 | 2019-12-19T05:00:00Z | 2020-01-22T04:59:59Z | 2019-12-19T12:50:25Z | 2019-27005 | 0 | 0 | 0900006484235a75 | ||
| USPS-2019-0186-0001 | USPS | International Mailing Services: Proposed Product and Price Changes-CPI | Proposed Rule | 2019-10-22T04:00:00Z | 2019 | 10 | 2019-10-22T04:00:00Z | 2019-11-22T04:59:59Z | 2019-10-22T11:51:44Z | 2019-22819 | 0 | 0 | 09000064840e8418 | ||
| USPS-2019-0181-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2019-10-17T04:00:00Z | 2019 | 10 | 2019-10-17T04:00:00Z | 2019-11-19T04:59:59Z | 2019-10-17T12:04:17Z | 2019-22635 | 0 | 0 | 09000064840b03ff | ||
| USPS-2019-0171-0001 | USPS | Authorization to Manufacture and Distribute Postage Evidencing Systems | Proposed Rule | 2019-10-07T04:00:00Z | 2019 | 10 | 2019-10-07T04:00:00Z | 2019-11-07T04:59:59Z | 2019-10-07T11:42:02Z | 2019-21576 | 0 | 0 | 0900006484048b49 | ||
| USPS-2019-0150-0001 | USPS | Procedures for Disclosure of Records under the Freedom of Information Act | Proposed Rule | 2019-08-26T04:00:00Z | 2019 | 8 | 2019-08-26T04:00:00Z | 2019-09-26T03:59:59Z | 2019-08-26T11:41:08Z | 2019-18326 | 0 | 0 | 0900006483ebd7d6 | ||
| USPS-2019-0076-0001 | USPS | Definition of Private Carrier for Premium PO Box Delivery | Proposed Rule | 2019-04-24T04:00:00Z | 2019 | 4 | 2019-04-24T04:00:00Z | 2019-06-25T03:59:59Z | 2019-04-24T11:53:52Z | 2019-08222 | 0 | 0 | 0900006483be9b93 | ||
| USPS-2019-0021-0001 | USPS | New Electronic Signature Option | Proposed Rule | 2019-03-15T04:00:00Z | 2019 | 3 | 2019-03-15T04:00:00Z | 2019-04-16T03:59:59Z | 2019-03-15T12:05:58Z | 2019-04566 | 0 | 0 | 0900006483ae7bb3 | ||
| USPS-2019-0020-0001 | USPS | Forms of Identification | Proposed Rule | 2019-03-01T05:00:00Z | 2019 | 3 | 2019-03-01T05:00:00Z | 2019-04-02T03:59:59Z | 2019-03-01T12:54:33Z | 2019-03712 | 0 | 0 | 0900006483ab584d |
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;