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 = 2007 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: docket_id, 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-2007-0053-0001 | FTC | Guides for Select Leather and Imitation Leather Products FTC-2007-0053 | Guides for Select Leather and Imitation Leather Products | Proposed Rule | 2007-05-23T04:00:00Z | 2007 | 5 | 2007-05-23T04:00:00Z | 2007-07-24T03:59:59Z | 2007-07-23T11:09:37Z | E7-09965 | 0 | 0 | 0900006480242093 | |
| FTC-2007-0043-0001 | FTC | Guide Concerning Fuel Economy Advertising For New Automoblies FTC-2007-0043 | Guide Concerning Fuel Economy Advertising for New Automobiles | Proposed Rule | 2007-05-09T04:00:00Z | 2007 | 5 | 2007-05-09T04:00:00Z | 2007-07-24T03:59:59Z | 2007-07-23T11:09:12Z | E7-08886 | 0 | 0 | 0900006480238879 | |
| FTC-2007-0030-0002 | FTC | Interagency Proposal for Model Privacy Form Under the Gramm- Leach-Bliley Act FTC-2007-0030 | [Federal Register: April 5, 2007 (Volume 72, Number 65)] | Proposed Rule | 2007-04-05T04:00:00Z | 2007 | 4 | 2007-04-05T04:00:00Z | 2007-04-06T03:59:59Z | 2007-05-29T11:14:30Z | C7-01476 | 0 | 0 | 0900006480220ad6 | |
| FTC-2007-0030-0001 | FTC | Interagency Proposal for Model Privacy Form Under the Gramm- Leach-Bliley Act FTC-2007-0030 | Interagency Proposal for Model Privacy Form Under the Gramm- Leach-Bliley Act | Proposed Rule | 2007-03-29T04:00:00Z | 2007 | 3 | 2007-03-29T04:00:00Z | 2007-05-30T03:59:59Z | 2011-06-11T17:26:55Z | 07-01476 | 0 | 0 | 090000648021bc1b | |
| FTC-2007-0025-0001 | FTC | Guides Concerning the Use of Endorsements and Testimonials in Advertising FTC-2007-0025 | Guides Concerning the Use of Endorsements and Testimonials in Advertising | Proposed Rule | 2007-03-20T04:00:00Z | 2007 | 3 | 2007-03-20T04:00:00Z | 2007-06-19T03:59:59Z | 2007-06-18T11:11:40Z | E7-05039 | 0 | 0 | 0900006480216a59 | |
| FTC-2007-0026-0001 | FTC | Trade Regulation Rule Relating to Power Output Claims for Amplifiers Utilized in Home Entertainment Products FTC-2007-0026 | Trade Regulation Rule Relating to Power Output Claims for Amplifiers Utilized in Home Entertainment Products | Proposed Rule | 2007-03-20T04:00:00Z | 2007 | 3 | 2007-03-20T04:00:00Z | 2007-03-30T12:51:03Z | E7-05038 | 0 | 0 | 0900006480216a9f | ||
| FTC-2007-0015-0001 | FTC | Appliance Labeling Rule FTC-2007-0015 | Appliance Labeling Rule | Proposed Rule | 2007-02-13T05:00:00Z | 2007 | 2 | 2007-02-13T05:00:00Z | 2007-04-17T03:59:59Z | 2011-06-11T17:26:54Z | 07-00613 | 0 | 0 | 090000648020439c | |
| FTC-2007-0006-0001 | FTC | Guides Concerning the Use to Endorsements and Testimonials in Advertising FTC-2007-0006 | Guides Concerning the Use to Endorsements and Testimonials in Advertising | Proposed Rule | 2007-01-18T05:00:00Z | 2007 | 1 | 2007-01-18T05:00:00Z | 2007-03-20T03:59:59Z | 2007-03-30T12:50:23Z | 07-00197 | 0 | 0 | 09000064801f55c4 |
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;