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 = 2005 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-2005-0021-0001 | USPS | New Marking Requirement for Bound Printed Matter Machinable Parcels | Proposed Rule | 2005-12-27T05:00:00Z | 2005 | 12 | 2005-12-27T05:00:00Z | 2006-09-03T00:31:38Z | E5-07857 | 0 | 0 | 0900006480100547 | |||
| USPS-2005-0009-0001 | USPS | Proposal To Require the Electronic Verification System (e-VS) for Destination Entry Parcel Shipments | Proposed Rule | 2005-11-07T05:00:00Z | 2005 | 11 | 2005-11-07T05:00:00Z | 2005-12-08T04:59:59Z | 2006-09-03T00:31:18Z | 05-22156 | 0 | 0 | 090000648009be9a | ||
| USPS-2005-0008-0001 | USPS | Bundling Flat-Size and Irregular Parcel Mail--Bundle Integrity | Proposed Rule | 2005-11-02T05:00:00Z | 2005 | 11 | 2005-11-02T05:00:00Z | 2005-12-03T04:59:59Z | 2006-09-03T00:31:16Z | 05-21777 | 0 | 0 | 0900006480099a52 | ||
| USPS-2005-0005-0001 | USPS | Use of Ancillary Service Endorsement for Mailing Certain Types of Checks | Proposed Rule | 2005-10-14T04:00:00Z | 2005 | 10 | 2005-10-14T04:00:00Z | 2006-09-03T00:31:11Z | 05-20563 | 0 | 0 | 0900006480092cf2 | |||
| USPS-2005-0004-0001 | USPS | New Preparation Requirements for Bundles of Mail on Pallets | Proposed Rule | 2005-09-30T04:00:00Z | 2005 | 9 | 2005-09-30T04:00:00Z | 2005-11-01T04:59:59Z | 2006-09-03T00:31:10Z | 05-19531 | 0 | 0 | 090000648008d030 | ||
| USPS-2005-0002-0001 | USPS | International Mail: Republic of the Marshall Islands and Federated States of Micronesia | Proposed Rule | 2005-09-15T04:00:00Z | 2005 | 9 | 2005-09-15T04:00:00Z | 2005-10-18T03:59:59Z | 2006-09-03T00:31:07Z | 05-18259 | 0 | 0 | 090000648005012e | ||
| USPS-2005-0003-0001 | USPS | International Mail: Proposed Changes in Postal Rates and Fees | Proposed Rule | 2005-09-15T04:00:00Z | 2005 | 9 | 2005-09-15T04:00:00Z | 2005-10-18T03:59:59Z | 2006-09-03T00:31:08Z | 05-18260 | 0 | 0 | 0900006480050185 |
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;