documents
Data license: Public Domain (U.S. Government data) · Data source: Federal Register API & Regulations.gov API
6 rows where agency_id = "FTC", document_type = "Other" and posted_year = 2022 sorted by posted_date descending
This data as json, CSV (advanced)
Suggested facets: posted_month, withdrawn, posted_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-2022-0020-1578 | FTC | FTC Seeks Comments on Earnings Claims ANPR, Matter No. R111003 FTC-2022-0020 | Rep. Hudson and members letter to Chair Khan | Other | 2022-06-10T04:00:00Z | 2022 | 6 | 2022-06-10T04:00:00Z | 2022-06-10T15:39:02Z | 0 | 0 | 0900006485157941 | |||
| FTC-2022-0035-0001 | FTC | Digital Advertising Business Guidance Publication FTC-2022-0035 | Digital Advertising Business Guidance Request for Information | Other | 2022-06-03T04:00:00Z | 2022 | 6 | 2022-06-03T04:00:00Z | 2022-08-03T03:59:59Z | 2022-08-04T01:00:52Z | 0 | 0 | 090000648512f20a | ||
| FTC-2022-0031-0001 | FTC | Solicitation for Public Comments on Factors that May Have Contributed to the Infant Formula Shortage and Its Impact on Families and Retailers FTC-2022-0031 | Solicitation for Public Comments on Factors that May Have Contributed to the Infant Formula Shortage and Its Impact on Families and Retailers | Other | 2022-05-24T04:00:00Z | 2022 | 5 | 2022-05-24T04:00:00Z | 2022-06-25T03:59:59Z | 2022-07-20T17:49:25Z | 0 | 0 | 09000064850e1e68 | ||
| FTC-2022-0015-0001 | FTC | Solicitation for Public Comments on the Impact of Prescription Benefit Managers’ Business Practices FTC-2022-0015 | Solicitation for Comment | Other | 2022-02-24T05:00:00Z | 2022 | 2 | 2022-02-24T05:00:00Z | 2022-05-26T03:59:59Z | 2022-06-23T01:00:38Z | 0 | 0 | 0900006484f81cf7 | ||
| FTC-2022-0013-0001 | FTC | .com Disclosures: Making Effective Disclosures in Digital Advertising FTC-2022-0013 | .com Disclosures Business Guidance Publication | Other | 2022-02-15T00:00:00Z | 2022 | 2 | 2022-02-15T15:33:11Z | 0 | 1 | 0900006484f7839b | ||||
| FTC-2022-0003-0001 | FTC | Request for Information on Merger Enforcement FTC-2022-0003 | Request for Information on Merger Enforcement | Other | 2022-01-18T05:00:00Z | 2022 | 1 | 2022-01-18T05:00:00Z | 2022-04-22T03:59:59Z | 2022-05-07T01:01:14Z | 0 | 0 | 0900006484f24f2e |
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;