{ "task_id": "consumerfinance_004", "domain": "CFPB_REPORTS", "autonomy_type": "ordered table", "oracle_output_cardinality": 2, "instruction": "我想在 CFPB 的执法案件页面里,分别为 信用卡业务(Credit Cards)和存款业务(Deposits) 这两个业务类别找出 2024 年立案、并且后来已经结束的行政执法案件,再把它的终止令和原始的和解令(Consent Order)之间对应到的条款信息整理出来。具体来说,先把查找范围限定在 CFPB 的执法案件页面(Enforcement actions)里的行政执法案件,并且只看那些初始立案日期落在 2024-01-01 到 2024-12-31 之间的案件。然后,分别对信用卡业务(Credit Cards)和存款业务(Deposits)这两个业务类别进行筛选。对每一个类别,只保留那些同时满足以下条件的案件:案件页面显示这个案子后来已经结束,状态是 已失效、已终止 或 已撤销之一;案件页面同时提供这四类材料:和解令(Consent Order)、协议文件(Stipulation)、终止和解令(Order Terminating the Consent Order) 和 新闻稿(Press release);页面中的业务类别只列出一个项目,而且这个唯一的项目正好就是你当前正在找的那个类别本身。也就是说,如果你在找信用卡业务(Credit Cards),那页面里就只能标这一项,不能再同时标别的类别;找存款业务(Deposits)时也是同样的要求。在完成筛选之后,每个业务类别下面可能还会剩下不止一件案件。对于每个类别,你只保留其中最新立案的那一件,如果还有多件案件的立案日期相同,就选择案号更小的那一件。接下来,打开你选中的这件案件对应的终止和解令(Order Terminating the Consent Order),从中记录以下三项信息:这份文件上的终止日期;文件中那段说明“依据什么法律授权来终止这份和解令”的话,也就是终止依据(termination authority),并且只记录它第一次出现时的原文;这段终止依据第一次出现所在的 PDF 物理页码。同时,在这份终止令正文里,找到它第一次明确引用到的原始 Consent Order paragraph 编号;如果写成 “Paragraphs X and Y”,就只取 X。然后,再回到这起案件的原始和解令 Consent Order 文件中,找到这个 paragraph 所在的位置,并记下它所属的小节标题。", "start_url": "https://www.consumerfinance.gov/enforcement/actions/", "output_format": "最后,请按产品名字母顺序输出一行字符串:||||||p||如果某个产品没有符合条件的案件,就输出:|NONE", "oracle_answer": "Credit Cards|Apple Inc.|2024-CFPB-0012|2024-10-23|2025-09-22|12 U.S.C. § 5563(b)(3)|p1|83|ADMINISTRATIVE PROVISIONS,Deposits|Navy Federal Credit Union|2024-CFPB-0014|2024-11-07|2025-07-01|12 U.S.C. § 5563(b)(3)|p1|106|ADMINISTRATIVE PROVISIONS", "metadata": { "State-Gated Retrieval": [ "只看 2024 年 Initial filing date 的 administrative enforcement actions,并分别在 Credit Cards 与 Deposits 类别中找案件。", "案件必须状态为已失效、已终止或已撤销之一,并且页面同时提供 Consent Order、Stipulation、Order Terminating the Consent Order 和 Press release,且 Products 与目标类别一对一对应。", "最终每个类别只保留按 Initial filing date 判定为最新的合格案件,并整理终止令与原始 Consent Order 的对应条款信息。" ], "dependency_type": "Data + Control", "intra_chain": true, "inter_chain": true, "data_dependency": [ "enforcement-action list pages yield 2024 candidate actions by product branch", "each action detail page and linked Consent Order / Stipulation / Order Terminating the Consent Order / Press release documents yield status, initial filing date, single-product validity, and clause references", "final rows are selected only after per-product comparison on Initial filing date and document-stack validation" ], "control_dependency": [ "\"latest\" must be determined by Initial filing date rather than termination date", "product filters on the list page are insufficient until the action detail page confirms a single matching product", "clause extraction in the terminating order must stay aligned with the original Consent Order rather than a superficially similar section" ], "freeze": { "historical_window": "administrative enforcement actions with Initial filing date from 2024-01-01 through 2024-12-31; current action status and currently linked Consent Order / Stipulation / terminating-order / Press release documents" }, "answer_type": "multi-row ordered table" }, "rubric": { "inclusion_conditions": [ "只看 2024 年 Initial filing date 的 administrative enforcement actions,并分别在 Credit Cards 与 Deposits 类别中找案件。", "案件必须状态为已失效、已终止或已撤销之一,并且页面同时提供 Consent Order、Stipulation、Order Terminating the Consent Order 和 Press release,且 Products 与目标类别一对一对应。", "最终每个类别只保留按 Initial filing date 判定为最新的合格案件,并整理终止令与原始 Consent Order 的对应条款信息。" ], "exclusion_conditions": [ "排除用 termination date 而不是 Initial filing date 来判定“最新”的结果。", "排除文档栈不完整或 Products 不是单一目标类别的案件。", "排除无法在 terminating order 与原始 Consent Order 之间建立题目要求条款对应关系的案件。" ], "normalization": { "field_separator": "|", "record_separator": ",", "schema": [ "Product", "Respondent", "Docket", "InitialFilingDate", "TerminationDate", "TerminationAuthority", "TermAuthorityPage", "ReferencedParagraph", "ConsentSectionHeading" ], "product_order": "alphabetical by Product name", "fallback_row": "if a product has no qualifying case, emit `|NONE`", "date_format": "InitialFilingDate and TerminationDate use YYYY-MM-DD", "termination_authority": "use the canonical statute string extracted from the termination order", "page_fields": "TermAuthorityPage uses the canonical `pN` form", "ReferencedParagraph": "emit the paragraph number as a plain numeric string", "ConsentSectionHeading": "emit the uppercase heading of the consent-order section containing the referenced paragraph" } } }