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 = 2012 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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| FTC-2012-0109-0001 | FTC | Used Motor Vehicle Trade Regulations FTC-2012-0109 | Used Motor Vehicle Trade Regulations | Rule | 2012-12-12T05:00:00Z | 2012 | 12 | 2012-12-12T05:00:00Z | 2012-12-13T19:46:58Z | 2012-29901 | 0 | 0 | 090000648118885d | ||
| FTC-2012-0105-0001 | FTC | Identity Theft Red Flags and Address Discrepancies under Fair and Accurate Credit Transactions Act of 2003 FTC-2012-0105 | Identity Theft Red Flags and Address Discrepancies under Fair and Accurate Credit Transactions Act of 2003 | Rule | 2012-12-06T05:00:00Z | 2012 | 12 | 2012-12-06T05:00:00Z | 2013-02-12T04:59:59Z | 2013-01-16T03:08:14Z | 2012-29430 | 0 | 0 | 0900006481180cf1 | |
| FTC-2012-0095-0001 | FTC | Rules of Practice: Correction FTC-2012-0095 | Rules of Practice: Correction | Rule | 2012-10-25T04:00:00Z | 2012 | 10 | 2012-10-25T04:00:00Z | 2012-11-05T15:59:39Z | 2012-26170 | 0 | 0 | 0900006481150212 | ||
| FTC-2012-0088-0001 | FTC | Guides for the Use of Environmental Marketing Claims FTC-2012-0088 | Guides for the Use of Environmental Marketing Claims | Rule | 2012-10-11T04:00:00Z | 2012 | 10 | 2012-10-11T04:00:00Z | 2012-11-02T18:23:36Z | 2012-24713 | 0 | 0 | 090000648113c264 | ||
| FTC-2012-0083-0001 | FTC | Rules of Practice FTC-2012-0083 | Rules of Practice | Rule | 2012-09-27T04:00:00Z | 2012 | 9 | 2012-09-27T04:00:00Z | 2012-09-27T19:26:48Z | 2012-23691 | 0 | 0 | 090000648112ab8c | ||
| FTC-2012-0073-0001 | FTC | Telemarketing Sales Rule Fees FTC-2012-0073 | Telemarketing Sales Rule Fees | Rule | 2012-08-27T04:00:00Z | 2012 | 8 | 2012-08-27T04:00:00Z | 2012-09-19T12:55:45Z | 2012-21041 | 0 | 0 | 09000064810f24db | ||
| FTC-2012-0055-0001 | FTC | Disclosure Requirements and Prohibitions Concerning Franchising FTC-2012-0055 | Disclosure Requirements and Prohibitions Concerning Franchising | Rule | 2012-06-18T04:00:00Z | 2012 | 6 | 2012-06-18T04:00:00Z | 2012-06-25T19:14:37Z | 2012-14785 | 0 | 0 | 090000648104fc16 | ||
| FTC-2012-0036-0001 | FTC | Rescission of Rules FTC-2012-0036 | Rescission of Rules | Rule | 2012-04-13T04:00:00Z | 2012 | 4 | 2012-04-13T04:00:00Z | 2012-04-17T19:20:18Z | 2012-08748 | 0 | 0 | 0900006480feeeb5 |
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;