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 = 2006 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-2006-0038-0001 | USPS | International Product and Pricing Initiatives | Proposed Rule | 2006-12-20T05:00:00Z | 2006 | 12 | 2006-12-20T05:00:00Z | 2007-01-20T04:59:59Z | 2007-01-19T12:06:11Z | E6-21750 | 0 | 0 | 09000064801ee458 | ||
| USPS-2006-0028-0001 | USPS | New Standards for Domestic Mailing Services | Proposed Rule | 2006-09-27T04:00:00Z | 2006 | 9 | 2006-09-27T04:00:00Z | 2006-11-14T04:59:59Z | 2006-11-13T12:03:57Z | 06-07751 | 0 | 0 | 09000064801cef09 | ||
| USPS-2006-0025-0001 | USPS | Customs Forms for Priority Mail To or From ``969 ZIP Codes | Proposed Rule | 2006-09-13T04:00:00Z | 2006 | 9 | 2006-09-13T04:00:00Z | 2006-10-14T03:59:59Z | 2006-10-13T11:11:03Z | E6-15112 | 0 | 0 | 09000064801ca395 | ||
| USPS-2006-0022-0001 | USPS | New Polywrap Standards for Automation-Rate Flat-Size Mail | Proposed Rule | 2006-08-22T04:00:00Z | 2006 | 8 | 2006-08-22T04:00:00Z | 2006-09-22T03:59:59Z | 2006-09-21T11:06:17Z | E6-13802 | 0 | 0 | 09000064801bc121 | ||
| USPS-2006-0018-0001 | USPS | Revisions to the Requirements for Authority To Manufacture and Distribute Postage Evidencing Systems | Proposed Rule | 2006-06-27T04:00:00Z | 2006 | 6 | 2006-06-27T04:00:00Z | 2006-07-28T03:59:59Z | 2006-09-03T00:32:11Z | 06-05675 | 0 | 0 | 0900006480190b82 | ||
| USPS-2006-0013-0001 | USPS | New Standards for Mailing Sharps and Other Regulated Medical Waste | Proposed Rule | 2006-04-18T04:00:00Z | 2006 | 4 | 2006-04-18T04:00:00Z | 2006-05-19T03:59:59Z | 2006-09-03T00:32:03Z | E6-05695 | 0 | 0 | 090000648015f974 | ||
| USPS-2006-0007-0001 | USPS | New Preparation for Periodicals Flats in Mixed Area Distribution Center Bundles and Sacks | Proposed Rule | 2006-03-07T05:00:00Z | 2006 | 3 | 2006-03-07T05:00:00Z | 2006-04-07T03:59:59Z | 2006-09-03T00:31:52Z | E6-03143 | 0 | 0 | 090000648013fe98 |
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;