documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
8 rows where agency_id = "FTC", document_type = "Rule" and posted_year = 2008 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, last_modified, 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-2008-0106-0001 | FTC | Appliance Labeling Rule FTC-2008-0106 | Appliance Labeling Rule | Rule | 2008-10-23T04:00:00Z | 2008 | 10 | 2008-10-23T04:00:00Z | 2011-06-11T17:27:04Z | E8-25225 | 0 | 0 | 09000064807741b2 | ||
| FTC-2008-0080-0001 | FTC | Telemarketing Sales Rule (TSR) FTC-2008-0080 | Telemarketing Sales Rule (``TSR) | Rule | 2008-08-29T04:00:00Z | 2008 | 8 | 2008-08-29T04:00:00Z | 2011-06-11T17:27:02Z | E8-20253 | 0 | 0 | 09000064806e5022 | ||
| FTC-2008-0073-0001 | FTC | Telemarketing Sales Rule Fee FTC-2008-0073 | Telemarketing Sales Rule Fees | Rule | 2008-07-25T04:00:00Z | 2008 | 7 | 2008-07-25T04:00:00Z | 2011-06-11T17:27:02Z | E8-17064 | 0 | 0 | 09000064806955a8 | ||
| FTC-2008-0064-0001 | FTC | Automotive Fuel Ratings, Certification and Posting FTC-2008-0064 | Automotive Fuel Ratings, Certification and Posting | Rule | 2008-07-11T04:00:00Z | 2008 | 7 | 2008-07-11T04:00:00Z | 2011-06-11T17:27:01Z | E8-15245 | 0 | 0 | 0900006480667960 | ||
| FTC-2008-0061-0001 | FTC | Rule Concerning Disclosures Regarding Energy Consumption and Water Use of Certain Home Appliances and Other Products Required Under the Engery Policy and Conversation Act ("Appliance Labeling Rule") FTC-2008-0061 | 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) | Rule | 2008-07-09T04:00:00Z | 2008 | 7 | 2008-07-09T04:00:00Z | 2011-06-11T17:27:01Z | E8-15243 | 0 | 0 | 0900006480660296 | ||
| FTC-2008-0049-0001 | FTC | Guides for Select Leather and Imitation Leather Products FTC-2008-0049 | Guides for Select Leather and Imitation Leather Products | Rule | 2008-06-18T04:00:00Z | 2008 | 6 | 2008-06-18T04:00:00Z | 2008-06-18T12:49:16Z | E8-13656 | 0 | 0 | 090000648062ca3a | ||
| FTC-2008-0043-0001 | FTC | Definitions and Implementation Under the CAN-SPAM Act FTC-2008-0043 | Definitions and Implementation Under the CAN-SPAM Act | Rule | 2008-05-21T04:00:00Z | 2008 | 5 | 2008-05-21T04:00:00Z | 2011-06-11T17:27:00Z | E8-11394 | 0 | 0 | 09000064805f6755 | ||
| FTC-2008-0025-0001 | FTC | 16 CFR Part 453 Regulatory Review of the Trade Regulation Rule on Funeral Industry Practices: Confirmation of rule. FTC-2008-0025 | Regulatory Review of the Trade Regulation Rule on Funeral Industry Practices | Rule | 2008-03-14T04:00:00Z | 2008 | 3 | 2008-03-14T04:00:00Z | 2009-01-01T04:59:59Z | 2008-04-01T21:08:57Z | E8-05065 | 0 | 0 | 09000064803f74b1 |
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;