documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
9 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2013 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-2013-0066-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2013-10-25T04:00:00Z | 2013 | 10 | 2013-10-25T04:00:00Z | 2013-11-26T04:59:59Z | 2013-10-25T13:07:47Z | 2013-24980 | 0 | 0 | 090000648145fd7e | ||
| USPS-2013-0065-0001 | USPS | International Mailing Services: Proposed Price Changes - Exigent | Proposed Rule | 2013-10-24T04:00:00Z | 2013 | 10 | 2013-10-24T04:00:00Z | 2013-11-26T04:59:59Z | 2013-10-24T13:25:38Z | 2013-24931 | 0 | 0 | 090000648145d507 | ||
| USPS-2013-0064-0001 | USPS | International Mailing Services: Proposed Price Changes - CPI | Proposed Rule | 2013-10-24T04:00:00Z | 2013 | 10 | 2013-10-24T04:00:00Z | 2013-11-26T04:59:59Z | 2013-10-24T13:25:19Z | 2013-24929 | 0 | 0 | 090000648145d0c5 | ||
| USPS-2013-0046-0001 | USPS | New Standards to Enhance Package Visibility | Proposed Rule | 2013-07-11T04:00:00Z | 2013 | 7 | 2013-07-11T04:00:00Z | 2013-08-02T03:59:59Z | 2013-07-11T13:01:16Z | 2013-16524 | 0 | 0 | 09000064813607bc | ||
| USPS-2013-0037-0001 | USPS | Collect on Delivery Service Features | Proposed Rule | 2013-05-31T04:00:00Z | 2013 | 5 | 2013-05-31T04:00:00Z | 2013-07-02T03:59:59Z | 2013-05-31T13:20:28Z | 2013-12885 | 0 | 0 | 090000648130420e | ||
| USPS-2013-0032-0001 | USPS | Balloting Materials Postage | Proposed Rule | 2013-05-02T04:00:00Z | 2013 | 5 | 2013-05-02T04:00:00Z | 2013-06-04T03:59:59Z | 2013-05-02T13:06:56Z | 2013-10347 | 0 | 0 | 09000064812b1cab | ||
| USPS-2013-0030-0001 | USPS | New Mailing Standards for Live Animals and Special Handling | Proposed Rule | 2013-04-24T04:00:00Z | 2013 | 4 | 2013-04-24T04:00:00Z | 2013-05-25T03:59:59Z | 2013-04-24T12:51:16Z | 2013-09603 | 0 | 0 | 09000064812a57a3 | ||
| USPS-2013-0022-0001 | USPS | Refunds and Exchanges | Proposed Rule | 2013-03-14T04:00:00Z | 2013 | 3 | 2013-03-14T04:00:00Z | 2013-04-16T03:59:59Z | 2013-03-14T13:32:52Z | 2013-05863 | 0 | 0 | 090000648122a74a | ||
| USPS-2013-0019-0001 | USPS | New Intelligent Mail Package Barcode Standards to Enhance Package Visibility | Proposed Rule | 2013-02-26T05:00:00Z | 2013 | 2 | 2013-02-26T05:00:00Z | 2013-03-29T03:59:59Z | 2013-02-26T14:40:51Z | 2013-04302 | 0 | 0 | 0900006481209d83 |
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;