documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FTC", document_type = "Proposed Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FTC-2005-0028-0001 | FTC | Notice of Intent To Request Public Comments FTC-2005-0028 | Notice of Intent To Request Public Comments | Proposed Rule | 2005-12-29T05:00:00Z | 2005 | 12 | 2005-12-29T05:00:00Z | 2007-03-30T12:46:43Z | 05-24613 | 0 | 0 | 0900006480102475 | ||
| FTC-2005-0015-0001 | FTC | Rule Concerning Disclosures Regarding Energy Consumption and Water Use of Certain Home Appliances and Other Products Required Under the Energy Policy and Conservation Act (``Appliance Labeling Rule) FTC-2005-0015 | Rule Concerning Disclosures Regarding Energy Consumption and Water Useof Certain Home Appliances and Other Products Required Under the Energy Policy and Conservation Act (``Appliance Labeling Rule) | Proposed Rule | 2005-11-02T05:00:00Z | 2005 | 11 | 2005-11-02T05:00:00Z | 2006-01-14T04:59:59Z | 2011-06-11T17:26:46Z | 05-21817 | 0 | 0 | 09000064800998b1 | |
| FTC-2005-0009-0001 | FTC | Guides for the Jewelry, Precious Metals, and Pewter Industries FTC-2005-0009 | Guides for the Jewelry, Precious Metals, and Pewter Industries | Proposed Rule | 2005-10-04T04:00:00Z | 2005 | 10 | 2005-10-04T04:00:00Z | 2005-10-13T03:59:59Z | 2007-03-30T12:45:39Z | 05-19784 | 0 | 0 | 090000648008e777 | |
| FTC-2005-0001-0001 | FTC | Premerger Notification; Reporting and Waiting Period Requirements FTC-2005-0001 | Premerger Notification; Reporting and Waiting Period Requirements | Proposed Rule | 2005-08-15T04:00:00Z | 2005 | 8 | 2005-08-15T04:00:00Z | 2005-10-15T03:59:59Z | 2007-03-30T12:45:34Z | 05-16087 | 0 | 0 | 090000648004fd31 | |
| FTC-2005-0002-0001 | FTC | Guides for the Jewelry, Precious Metals, and Pewter Industries FTC-2005-0002 | Guides for the Jewelry, Precious Metals, and Pewter Industries | Proposed Rule | 2005-07-06T04:00:00Z | 2005 | 7 | 2005-07-06T04:00:00Z | 2005-09-29T03:59:59Z | 2007-03-30T12:45:32Z | 05-13285 | 0 | 0 | 0900006480050021 |
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;