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 = "Proposed Rule" and posted_year = 2017 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, posted_month, comment_start_date, comment_end_date, 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-2017-0101-0001 | FTC | Test Procedures and Labeling Standards for Recycled Oil FTC-2017-0101 | Test Procedures and Labeling Standards for Recycled Oil | Proposed Rule | 2017-12-20T05:00:00Z | 2017 | 12 | 2017-12-20T05:00:00Z | 2018-02-13T04:59:59Z | 2018-02-13T02:03:23Z | 2017-27374 | 0 | 0 | 0900006482d3f2ba | |
| FTC-2017-0099-0001 | FTC | Contact LensMarketplace and Analyzing Proposed Changes to Contact Lens Rule: Public Workshop FTC-2017-0099 | Contact LensMarketplace and Analyzing Proposed Changes to Contact Lens Rule: Public Workshop | Proposed Rule | 2017-12-08T05:00:00Z | 2017 | 12 | 2017-12-08T05:00:00Z | 2018-04-07T03:59:59Z | 2022-08-20T01:00:19Z | 2017-26445 | 0 | 0 | 0900006482cf29a9 | |
| FTC-2017-0088-0001 | FTC | Energy Labeling FTC-2017-0088 | Energy Labeling | Proposed Rule | 2017-11-09T05:00:00Z | 2017 | 11 | 2017-11-09T05:00:00Z | 2017-12-05T04:59:59Z | 2017-12-05T02:04:00Z | 2017-24381 | 0 | 0 | 0900006482c606d5 | |
| FTC-2017-0045-0001 | FTC | Deceptive Advertising as to Sizes of Viewable Pictures Shown by Television Receiving Sets FTC-2017-0045 | Deceptive Advertising as to Sizes of Viewable Pictures Shown by Television Receiving Sets | Proposed Rule | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-28T04:00:00Z | 2017-09-01T03:59:59Z | 2017-06-28T16:38:44Z | 2017-13476 | 0 | 0 | 09000064827a90e7 | |
| FTC-2017-0044-0001 | FTC | Regulatory Review Schedule FTC-2017-0044 | Regulatory Review Schedule | Proposed Rule | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-28T04:00:00Z | 2017-06-28T16:33:52Z | 2017-13472 | 0 | 0 | 09000064827a9587 | ||
| FTC-2017-0046-0001 | FTC | Rules and Regulations Under the Textile Fiber Products Identification Act FTC-2017-0046 | Rules and Regulations Under the Textile Fiber Products Identification Act | Proposed Rule | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-28T04:00:00Z | 2017-08-01T03:59:59Z | 2017-08-01T01:01:29Z | 2017-13470 | 0 | 0 | 09000064827a9093 | |
| FTC-2017-0043-0001 | FTC | Controlling the Assault of Non-Solicited Pornography and Marketing Act FTC-2017-0043 | Controlling the Assault of Non-Solicited Pornography and Marketing Act | Proposed Rule | 2017-06-28T04:00:00Z | 2017 | 6 | 2017-06-28T04:00:00Z | 2017-09-01T03:59:59Z | 2017-08-26T01:06:26Z | 2017-13471 | 0 | 0 | 09000064827a95bc | |
| FTC-2017-0033-0001 | FTC | Children's Online Privacy Protection Rule: Safe Harbor Proposed Self-Regulatory Guidelines; TRUSTe Safe Harbor Program Application to Modify Program Requirements FTC-2017-0033 | Children's Online Privacy Protection Rule: Safe Harbor Proposed Self-Regulatory Guidelines; TRUSTe Safe Harbor Program Application to Modify Program Requirements | Proposed Rule | 2017-04-25T04:00:00Z | 2017 | 4 | 2017-04-25T04:00:00Z | 2017-05-25T03:59:59Z | 2017-04-29T13:00:25Z | 2017-08248 | 0 | 0 | 0900006482573621 |
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;