documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
5 rows where agency_id = "FTC", document_type = "Rule" and posted_year = 2005 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: title, 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-2005-0029-0001 | FTC | Premerger Notification; Reporting and Waiting Period Requirements FTC-2005-0029 | Premerger Notification; Reporting and Waiting Period Requirements | Rule | 2005-12-30T05:00:00Z | 2005 | 12 | 2005-12-30T05:00:00Z | 2007-03-30T12:45:42Z | 05-24684 | 0 | 0 | 090000648010356b | ||
| FTC-2005-0021-0001 | FTC | Rules and Regulations Under the Textile Fiber Products Identification Act FTC-2005-0021 | Rules and Regulations Under the Textile Fiber Products Identification Act | Rule | 2005-12-12T05:00:00Z | 2005 | 12 | 2005-12-12T05:00:00Z | 2007-03-30T12:45:48Z | 05-23883 | 0 | 0 | 09000064800f34a8 | ||
| FTC-2005-0022-0001 | FTC | Premerger Notification; Reporting and Waiting Period Requirements FTC-2005-0022 | Premerger Notification; Reporting and Waiting Period Requirements | Rule | 2005-12-12T05:00:00Z | 2005 | 12 | 2005-12-12T05:00:00Z | 2007-03-30T12:46:33Z | 05-23884 | 0 | 0 | 09000064800f3532 | ||
| FTC-2005-0017-0001 | FTC | Consent Agreement Settlements; Corrections FTC-2005-0017 | Consent Agreement Settlements; Corrections | Rule | 2005-11-07T05:00:00Z | 2005 | 11 | 2005-11-07T05:00:00Z | 2007-03-30T12:45:57Z | 05-22162 | 0 | 0 | 090000648009be34 | ||
| FTC-2005-0013-0001 | FTC | Rule Concerning Disclosures Regarding Energy Consumption and Water Use of Certain Home Appliances and Other Products Required Under the Energy Policy and Conservation Act (``Appliance Labeling Rule) FTC-2005-0013 | Rule Concerning Disclosures Regarding Energy Consumption and Water Use of Certain Home Appliances and Other Products Required Under the Energy Policy and Conservation Act (``Appliance Labeling Rule) | Rule | 2005-10-19T04:00:00Z | 2005 | 10 | 2005-10-19T04:00:00Z | 2007-03-30T12:46:07Z | 05-20922 | 0 | 0 | 09000064800949ea |
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;