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 = 2015 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, posted_month, 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-2015-0123-0001 | FTC | Telemarketing Sales Rule FTC-2015-0123 | Telemarketing Sales Rule, | Rule | 2015-12-14T05:00:00Z | 2015 | 12 | 2015-12-14T05:00:00Z | 2015-12-15T13:12:42Z | 2015-30761 | 0 | 0 | 0900006481da2060 | ||
| FTC-2015-0117-0001 | FTC | General Policy or Interpretation and Exemptions under the Fair Packaging and Labeling Act FTC-2015-0117 | General Policy or Interpretation and Exemptions under the Fair Packaging and Labeling Act | Rule | 2015-11-17T05:00:00Z | 2015 | 11 | 2015-11-17T05:00:00Z | 2015-11-17T15:05:29Z | 2015-28918 | 0 | 0 | 0900006481d4d484 | ||
| FTC-2015-0111-0001 | FTC | Energy Labeling FTC-2015-0111 | Energy Labeling | Rule | 2015-11-02T05:00:00Z | 2015 | 11 | 2015-11-02T05:00:00Z | 2015-11-02T17:11:11Z | 2015-27772 | 0 | 0 | 0900006481d02c04 | ||
| FTC-2015-0104-0001 | FTC | Miscellaneous Rules; Technical Correction FTC-2015-0104 | Miscellaneous Rules; Technical Correction | Rule | 2015-10-08T04:00:00Z | 2015 | 10 | 2015-10-08T04:00:00Z | 2015-10-20T15:34:38Z | 2015-25605 | 0 | 0 | 0900006481cb9e27 | ||
| FTC-2015-0074-0001 | FTC | Interpretations of Magnuson-Moss Warranty Act: Disclosure of Written Consumer Product Warranty Terms and Conditions; Pre-Sale Availability of Written Warranty Terms; etc. FTC-2015-0074 | Interpretations of Magnuson-Moss Warranty Act: Disclosure of Written Consumer Product Warranty Terms and Conditions; Pre-Sale Availability of Written Warranty Terms; etc. | Rule | 2015-07-20T04:00:00Z | 2015 | 7 | 2015-07-20T04:00:00Z | 2015-08-04T18:07:18Z | 2015-14065 | 0 | 0 | 0900006481b922a8 | ||
| FTC-2015-0058-0001 | FTC | Rules of Practice FTC-2015-0058 | Rules of Practice | Rule | 2015-05-06T04:00:00Z | 2015 | 5 | 2015-05-06T04:00:00Z | 2015-05-19T15:25:13Z | 2015-10517 | 0 | 0 | 0900006481ad0029 | ||
| FTC-2015-0042-0001 | FTC | Rules of Practice; Correction FTC-2015-0042 | Rules of Practice; Correction | Rule | 2015-03-31T04:00:00Z | 2015 | 3 | 2015-03-31T04:00:00Z | 2015-04-01T15:12:28Z | 2015-07117 | 0 | 0 | 0900006481a7c9c3 | ||
| FTC-2015-0041-0001 | FTC | EnergyGuide Labels on Televisions FTC-2015-0041 | EnergyGuide Labels on Televisions | Rule | 2015-03-27T04:00:00Z | 2015 | 3 | 2015-03-27T04:00:00Z | 2015-04-01T15:09:46Z | 2015-07070 | 0 | 0 | 0900006481a6b8cb | ||
| FTC-2015-0038-0001 | FTC | Rules of Practice FTC-2015-0038 | Rules of Practice | Rule | 2015-03-23T04:00:00Z | 2015 | 3 | 2015-03-23T04:00:00Z | 2015-03-23T19:05:05Z | 2015-06406 | 0 | 0 | 0900006481a58a64 | ||
| FTC-2015-0007-0001 | FTC | Cooling-Off Period for Sales Made at Homes or at Certain Other Locations FTC-2015-0007 | Cooling-Off Period for Sales Made at Homes or at Certain Other Locations | Rule | 2015-01-09T05:00:00Z | 2015 | 1 | 2015-01-09T05:00:00Z | 2015-01-13T17:09:39Z | 2015-00164 | 0 | 0 | 09000064819afd88 |
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;