documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
10 rows where agency_id = "FTC", document_type = "Rule" and posted_year = 2019 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, posted_date (date), comment_start_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-2019-0015-0009 | FTC | PRA Comment Request; Energy Labeling Rule, File No. R611004 FTC-2019-0015 | Energy Labeling Rule; Final Rule | Rule | 2019-10-30T04:00:00Z | 2019 | 10 | 2019-10-30T04:00:00Z | 2019-10-30T14:02:24Z | 2019-23505 | 0 | 0 | 09000064841094ae | ||
| FTC-2019-0064-0001 | FTC | Telemarketing Sales Rule Fees; Final Rule FTC-2019-0064 | Telemarketing Sales Rule Fees | Rule | 2019-08-27T04:00:00Z | 2019 | 8 | 2019-08-27T04:00:00Z | 2019-08-27T15:08:11Z | 2019-18446 | 0 | 0 | 0900006483ecb4f8 | ||
| FTC-2019-0052-0001 | FTC | Final Rule; Military Credit Monitoring FTC-2019-0052 | Military Credit Monitoring | Rule | 2019-07-01T04:00:00Z | 2019 | 7 | 2019-07-01T04:00:00Z | 2019-07-01T15:05:23Z | 2019-13598 | 0 | 0 | 0900006483d50d74 | ||
| FTC-2019-0051-0001 | FTC | Premerger Notification; Reporting and Waiting Period Requirements FTC-2019-0051 | Premerger Notification; Reporting and Waiting Period Requirements | Rule | 2019-06-27T04:00:00Z | 2019 | 6 | 2019-06-27T04:00:00Z | 2019-06-27T14:47:30Z | 2019-13225 | 0 | 0 | 0900006483d46d70 | ||
| FTC-2019-0039-0001 | FTC | Final Rule; Rescission of Model Forms and Disclosures FTC-2019-0039 | Rescission of Model Forms and Disclosures | Rule | 2019-05-22T04:00:00Z | 2019 | 5 | 2019-05-22T15:43:03Z | 2019-10110 | 0 | 0 | 0900006483cb4391 | |||
| FTC-2019-0034-0001 | FTC | Labeling and Advertising of Home Insulation: Trade Regulation Rule FTC-2019-0034 | Labeling and Advertising of Home Insulation: Trade Regulation Rule | Rule | 2019-05-13T04:00:00Z | 2019 | 5 | 2019-05-13T04:00:00Z | 2019-05-13T14:31:24Z | 2019-09622 | 0 | 0 | 0900006483c6c6d7 | ||
| FTC-2019-0033-0001 | FTC | Guides for the Nursery Industry FTC-2019-0033 | Guides for the Nursery Industry | Rule | 2019-05-13T04:00:00Z | 2019 | 5 | 2019-05-13T04:00:00Z | 2019-05-13T14:01:12Z | 2019-09745 | 0 | 0 | 0900006483c6c57b | ||
| FTC-2019-0029-0001 | FTC | Trade Regulation Rule Concerning Preservation of Consumers’ Claims and Defenses FTC-2019-0029 | Trade Regulation Rule Concerning Preservation of Consumers’ Claims and Defenses | Rule | 2019-05-02T04:00:00Z | 2019 | 5 | 2019-05-02T15:19:51Z | 2019-08886 | 0 | 0 | 0900006483c2919f | |||
| FTC-2019-0022-0001 | FTC | CAN-SPAM Rule, 16 CFR part 316 FTC-2019-0022 | Controlling the Assault of Non- Solicited Pornography and Marketing Rule | Rule | 2019-04-04T04:00:00Z | 2019 | 4 | 2019-04-04T15:14:06Z | 2019-06562 | 0 | 0 | 0900006483b63260 | |||
| FTC-2019-0007-0001 | FTC | Adjustments to Civil Penalty Amounts FTC-2019-0007 | Adjustments to Civil Penalty Amounts | Rule | 2019-02-14T05:00:00Z | 2019 | 2 | 2019-02-14T05:00:00Z | 2019-03-05T14:40:37Z | 2019-02237 | 0 | 0 | 0900006483a74bff |
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;