documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "USPS", document_type = "Proposed Rule" and posted_year = 2014 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-2014-0097-0001 | USPS | Address Quality Measurement Alternative | Proposed Rule | 2014-12-23T05:00:00Z | 2014 | 12 | 2014-12-23T05:00:00Z | 2015-01-23T04:59:59Z | 2014-12-23T13:43:39Z | 2014-29943 | 0 | 0 | 090000648198ea3d | ||
| USPS-2014-0074-0001 | USPS | Relocating Retail Services: Adding New Retail Service Facilities | Proposed Rule | 2014-10-27T04:00:00Z | 2014 | 10 | 2014-10-27T04:00:00Z | 2014-11-27T04:59:59Z | 2014-10-27T13:17:37Z | 2014-25403 | 0 | 0 | 09000064818fef1f | ||
| USPS-2014-0057-0001 | USPS | Standards to Enhance Business Reply Mail Visibility | Proposed Rule | 2014-08-18T04:00:00Z | 2014 | 8 | 2014-08-18T04:00:00Z | 2014-09-18T03:59:59Z | 2014-08-18T12:42:27Z | 2014-19433 | 0 | 0 | 090000648182aa8a | ||
| USPS-2014-0028-0001 | USPS | Collection of Delinquent Non-tax Debts by Administrative Wage Garnishment | Proposed Rule | 2014-04-24T04:00:00Z | 2014 | 4 | 2014-04-24T04:00:00Z | 2014-06-24T03:59:59Z | 2014-04-24T12:33:59Z | 2014-09295 | 0 | 0 | 09000064816c8a38 | ||
| USPS-2014-0014-0001 | USPS | Rules of Practice in Proceedings Under the Debt Collection Act | Proposed Rule | 2014-02-18T05:00:00Z | 2014 | 2 | 2014-02-18T05:00:00Z | 2014-03-21T03:59:59Z | 2014-02-18T14:04:45Z | 2014-03368 | 0 | 0 | 0900006481576767 | ||
| USPS-2014-0002-0001 | USPS | Service Standards for Destination Sectional Center Facility Rate Standard Mail | Proposed Rule | 2014-01-03T05:00:00Z | 2014 | 1 | 2014-01-03T05:00:00Z | 2014-02-04T04:59:59Z | 2014-01-03T15:48:36Z | 2013-31442 | 0 | 0 | 09000064814eaab8 | ||
| USPS-2014-0001-0001 | USPS | Revised Postage and Fee Refund Criteria | Proposed Rule | 2014-01-03T05:00:00Z | 2014 | 1 | 2014-01-03T05:00:00Z | 2014-02-04T04:59:59Z | 2014-01-03T15:46:56Z | 2013-31443 | 0 | 0 | 09000064814eaa01 |
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;