documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
7 rows where agency_id = "FTC", document_type = "Proposed Rule" and posted_year = 2021 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_date, 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-2021-0070-0001 | FTC | FTC Seek Comments on Petition for Rule to Prohibit Surveillance Advertising; Matter No: R207005 FTC-2021-0070 | Petition for Rulemaking: Accountable Tech | Proposed Rule | 2021-12-27T05:00:00Z | 2021 | 12 | 2021-12-27T15:04:19Z | 2021-27436 | 0 | 0 | 0900006484efd80b | |||
| FTC-2021-0074-0001 | FTC | FTC Seek Comments on Petition for Rulemaking by Institute for Policy Integrity, Matter No: R207006 FTC-2021-0074 | Petition for Rulemaking: Institute for Policy Integrity | Proposed Rule | 2021-12-27T05:00:00Z | 2021 | 12 | 2021-12-27T15:07:04Z | 2021-27435 | 0 | 0 | 0900006484efd6c7 | |||
| FTC-2021-0077-0001 | FTC | FTC Seek Comments on Advanced Notice of Proposed Rule; Impersonation ANPR; Matter No. R207000 FTC-2021-0077 | Trade Regulation Rule on Impersonation of Government and Businesses | Proposed Rule | 2021-12-23T05:00:00Z | 2021 | 12 | 2021-12-23T05:00:00Z | 2022-02-23T04:59:59Z | 2022-02-24T02:00:41Z | 2021-27731 | 0 | 0 | 0900006484ee7d78 | |
| FTC-2021-0066-0001 | FTC | PETITION FOR RULEMAKING OF RANDALL DAVID MARKS REGARDING SOCIAL MEDIA CUSTOMER SERVICE FTC-2021-0066 | Petition for Rulemaking of Randall David Marks | Proposed Rule | 2021-12-09T05:00:00Z | 2021 | 12 | 2021-12-09T15:37:41Z | 2021-26611 | 0 | 0 | 0900006484eb233a | |||
| FTC-2021-0071-0001 | FTC | FTC Seek Comments on Safeguards Rule, 16 CFR part 314, Matter No. P145407 FTC-2021-0071 | Standards for Safeguarding Customer Information | Proposed Rule | 2021-12-09T05:00:00Z | 2021 | 12 | 2021-12-09T05:00:00Z | 2022-02-08T04:59:59Z | 2022-02-08T02:00:21Z | 2021-25064 | 0 | 0 | 0900006484eb237d | |
| FTC-2021-0034-0001 | FTC | Regulatory Review Schedule FTC-2021-0034 | Regulatory Review Schedule | Proposed Rule | 2021-07-02T04:00:00Z | 2021 | 7 | 2021-07-02T14:31:00Z | 2021-13724 | 0 | 0 | 0900006484bcc2b8 | |||
| FTC-2021-0030-0001 | FTC | FTC Seek Comments on Energy Labeling Rule; CAC Range Updates (16 CFR part 305), Matter No. R611004 FTC-2021-0030 | Energy Labeling Rule | Proposed Rule | 2021-06-02T04:00:00Z | 2021 | 6 | 2021-06-02T04:00:00Z | 2021-08-03T03:59:59Z | 2021-08-03T01:00:22Z | 2021-11498 | 0 | 0 | 0900006484b4ce6e |
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;