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 = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-0020-0001 | USPS | New Preparation Requirements for Bundles of Mail on Pallets | Rule | 2005-12-21T05:00:00Z | 2005 | 12 | 2005-12-21T05:00:00Z | 2006-09-03T00:31:37Z | 05-24209 | 0 | 0 | 09000064800fcdc4 | |||
| USPS-2005-0019-0001 | USPS | Domestic Mail: New Postal Rates and Fees | Rule | 2005-12-02T05:00:00Z | 2005 | 12 | 2005-12-02T05:00:00Z | 2006-09-03T00:31:35Z | 05-23488 | 0 | 0 | 09000064800ea5bb | |||
| USPS-2005-0018-0001 | USPS | Conduct on Postal Property | Rule | 2005-12-01T05:00:00Z | 2005 | 12 | 2005-12-01T05:00:00Z | 2006-09-03T00:31:33Z | 05-23507 | 0 | 0 | 09000064800e91c5 | |||
| USPS-2005-0017-0001 | USPS | International Mail: New Postal Rates and Fees | Rule | 2005-11-30T05:00:00Z | 2005 | 11 | 2005-11-30T05:00:00Z | 2006-09-03T00:31:32Z | C5-23007 | 0 | 0 | 09000064800e7907 | |||
| USPS-2005-0014-0001 | USPS | International Mail: New Postal Rates and Fees | Rule | 2005-11-23T05:00:00Z | 2005 | 11 | 2005-11-23T05:00:00Z | 2006-09-03T00:31:27Z | 05-23007 | 0 | 0 | 09000064800a5410 | |||
| USPS-2005-0012-0001 | USPS | Domestic Mail: Republic of the Marshall Islands and Federated States of Micronesia | Rule | 2005-11-23T05:00:00Z | 2005 | 11 | 2005-11-23T05:00:00Z | 2006-09-03T00:31:23Z | 05-23006 | 0 | 0 | 09000064800a51f0 | |||
| USPS-2005-0013-0001 | USPS | International Mail: Republic of the Marshall Islands and Federated States of Micronesia | Rule | 2005-11-23T05:00:00Z | 2005 | 11 | 2005-11-23T05:00:00Z | 2006-09-03T00:31:25Z | 05-23008 | 0 | 0 | 09000064800a532a | |||
| USPS-2005-0015-0001 | USPS | International Mail Manual; Incorporation by Reference | Rule | 2005-11-23T05:00:00Z | 2005 | 11 | 2005-11-23T05:00:00Z | 2006-09-03T00:31:28Z | 05-23171 | 0 | 0 | 09000064800a542b | |||
| USPS-2005-0006-0001 | USPS | Address Visibility on Bundles of Flat-Size and Irregular Parcel Mail | Rule | 2005-10-20T04:00:00Z | 2005 | 10 | 2005-10-20T04:00:00Z | 2006-09-03T00:31:13Z | 05-20924 | 0 | 0 | 0900006480094f90 |
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;