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 = 2015 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-2015-0064-0001 | USPS | Rules of Practice in Proceedings Relative to Debarment from Contracting | Proposed Rule | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-08-01T03:59:59Z | 2015-07-01T12:56:57Z | 2015-16143 | 0 | 0 | 0900006481b63041 | ||
| USPS-2015-0065-0001 | USPS | Rules of Practice Before the Judicial Officer | Proposed Rule | 2015-07-01T04:00:00Z | 2015 | 7 | 2015-07-01T04:00:00Z | 2015-08-01T03:59:59Z | 2015-07-01T12:57:10Z | 2015-16141 | 0 | 0 | 0900006481b63097 | ||
| USPS-2015-0047-0001 | USPS | Revisions to the Requirements for Authority to Manufacture and Distribute Postage Evidencing Systems | Proposed Rule | 2015-04-23T04:00:00Z | 2015 | 4 | 2015-04-23T04:00:00Z | 2015-05-27T03:59:59Z | 2015-04-23T12:27:41Z | 2015-09424 | 0 | 0 | 0900006481ab5d2b | ||
| USPS-2015-0043-0001 | USPS | Standards Governing the Design of Curbside Mailboxes | Proposed Rule | 2015-04-14T04:00:00Z | 2015 | 4 | 2015-04-14T04:00:00Z | 2015-06-16T03:59:59Z | 2015-06-16T01:30:34Z | 2015-08342 | 0 | 0 | 0900006481aa3c30 | ||
| USPS-2015-0013-0001 | USPS | New Mailing Standards for Domestic Mailing Services Products | Proposed Rule | 2015-02-05T05:00:00Z | 2015 | 2 | 2015-02-05T05:00:00Z | 2015-03-10T03:59:59Z | 2015-02-05T14:13:12Z | 2015-01851 | 0 | 0 | 09000064819f547d | ||
| USPS-2015-0006-0001 | USPS | International Mailing Services: Proposed Price Changes | Proposed Rule | 2015-01-23T05:00:00Z | 2015 | 1 | 2015-01-23T05:00:00Z | 2015-02-24T04:59:59Z | 2015-01-23T14:43:38Z | 2015-01097 | 0 | 0 | 09000064819db83f | ||
| USPS-2015-0004-0001 | USPS | Clarification of Content Eligibility for Standard Mail Marketing Parcels | Proposed Rule | 2015-01-14T05:00:00Z | 2015 | 1 | 2015-01-14T05:00:00Z | 2015-02-14T04:59:59Z | 2015-01-14T14:09:28Z | 2015-00401 | 0 | 0 | 09000064819c8901 |
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;