| name | Applicable_Fee_IDs |
| description | Solve "Applicable Fee IDs" questions in the dabstep payment dataset. Use this skill whenever a question asks which fee IDs apply — whether to a merchant, transaction, or a combination of payment attributes (account_type, aci, card_scheme, capture_delay, intracountry, MCC, etc.) with or without a date range. Covers direct attribute filter queries ("what fees apply to account_type=F and aci=A?"), single-day queries, single-month queries, and full-year queries. |
Applicable Fee IDs — Dabstep Dataset
Query Type Recognition (Critical First Step)
Before writing any code, classify the question:
Type D — Direct Attribute Filter: "What fee IDs apply to [attribute1=X] and [attribute2=Y]?"
- No merchant name, no time period
- Simply filter
fees.json on the given attributes — no payments.csv needed
Type A — Single Day: "For the Nth of year 2023, what are the Fee IDs applicable to [Merchant]?"
- Monthly stats = full calendar month containing day N
- Transaction filter = only transactions on day N
Type B — Single Month: "What were the applicable Fee IDs for [Merchant] in [Month] 2023?"
- Monthly stats = that calendar month; transaction filter = all transactions in that month
Type C — Full Year: "What are the applicable fee IDs for [Merchant] in 2023?"
- Iterate over each calendar month; union all applicable IDs across all months
Data Files
| File | Purpose |
|---|
fees.json | 1000 fee rules; each rule is a dict with matching conditions + fixed_amount + rate |
merchant_data.json | Per-merchant: account_type, capture_delay, merchant_category_code, acquirer |
payments.csv | 138 236 transactions; key columns: merchant, card_scheme, year, day_of_year, is_credit, eur_amount, issuing_country, acquirer_country, aci, has_fraudulent_dispute |
manual.md | Domain definitions |
Fee Rule Structure
{
"ID": 42,
"card_scheme": "GlobalCard",
"account_type": ["F", "S"],
"capture_delay": "<3",
"monthly_fraud_level": ">8.3%",
"monthly_volume": "100k-1m",
"merchant_category_code": [5812],
"is_credit": true,
"aci": ["A", "C"],
Null / empty-list semantics (critical): null or [] means the rule applies to all values of that field.
Type D: Direct Attribute Filter
When the question specifies attributes directly (e.g., "What fee IDs apply to account_type = F and aci = A?"), filter fees.json without looking up any merchant or transactions:
import json
fees = json.load(open("fees.json"))
def attr_matches_list(fee_field, given_value):
"""True if fee_field is empty/null (= all) or given_value is in fee_field."""
return (not fee_field) or (given_value in fee_field)
def attr_matches_scalar(fee_field, given_value):
"""True if fee_field is null (= all) or equals given_value."""
return fee_field is None or fee_field == given_value
applicable = sorted(
fee["ID"] for fee in fees
if attr_matches_list(fee["account_type"], "F")
and attr_matches_list(fee["aci"], "A")
)
Only add conditions for attributes explicitly mentioned in the question. Attributes not mentioned are unconstrained (skip their check).
Category Helpers
def map_capture_delay(raw):
if raw in ("immediate", "manual"): return raw
days = int(raw)
if days < 3: return "<3"
if days <= 5: return "3-5"
return ">5"
def volume_category(eur):
if eur < 100_000: return "<100k"
if eur < 1_000_000: return "100k-1m"
if eur < 5_000_000: return "1m-5m"
return ">5m"
def fraud_category(rate_pct):
if rate_pct < 7.2: return "<7.2%"
if rate_pct < 7.7: return "7.2%-7.7%"
if rate_pct <= 8.3: return "7.7%-8.3%"
return ">8.3%"
Capture Delay Mapping
| Merchant value | Fee rule category |
|---|
"immediate" | "immediate" |
"manual" | "manual" |
"1" or "2" (days < 3) | "<3" |
"3", "4", "5" | "3-5" |
"7" or any value > 5 | ">5" |
Core Matching Code (Types A/B/C)
import json, pandas as pd, datetime
fees = json.load(open("fees.json"))
merchants = json.load(open("merchant_data.json"))
payments = pd.read_csv("payments.csv")
payments["intracountry"] = payments["issuing_country"] == payments["acquirer_country"]
m = next(x for x in merchants if x["merchant"] == "MerchantName")
account_type = m["account_type"]
mcc = m["merchant_category_code"]
capture_delay = map_capture_delay(m["capture_delay"])
def fee_matches(fee, card_scheme, is_credit, aci, intracountry,
vol_cat, fraud_cat, account_type, mcc, capture_delay):
if fee["card_scheme"] != card_scheme: return False
if fee["account_type"] and account_type not in fee["account_type"]: return False
if fee["capture_delay"] is not None and fee["capture_delay"] != capture_delay: return False
fee[] fee[] != vol_cat:
fee[] fee[] != fraud_cat:
fee[] mcc fee[]:
fee[] fee[] != is_credit:
fee[] aci fee[]:
fee[] (fee[]) != intracountry:
Monthly Stats Computation
Monthly stats (volume + fraud rate) are always computed over a full calendar month:
def month_day_range(year, month):
start = datetime.date(year, month, 1).timetuple().tm_yday
if month < 12:
end = (datetime.date(year, month+1, 1) - datetime.timedelta(1)).timetuple().tm_yday
else:
end = datetime.date(year, 12, 31).timetuple().tm_yday
return start, end
def compute_monthly_stats(df, merchant, year, month):
s, e = month_day_range(year, month)
txns = df[(df["merchant"]==merchant) & (df["year"]==year) &
(df["day_of_year"]>=s) & (df["day_of_year"]<=e)]
if txns.empty: return None, None, txns
vol = txns["eur_amount"].sum()
fraud_vol = txns[txns["has_fraudulent_dispute"]==True]["eur_amount"].sum()
return volume_category(vol), fraud_category(fraud_vol/vol*100 if vol>0 else 0), txns
Full Workflow
Type A: Single Day
day_date = datetime.date(2023, 1, 1) + datetime.timedelta(days=N-1)
month = day_date.month
vol_cat, fraud_cat, _ = compute_monthly_stats(payments, merchant_name, 2023, month)
day_txns = payments[(payments["merchant"]==merchant_name) &
(payments["year"]==2023) & (payments["day_of_year"]==N)]
applicable = set()
if vol_cat and not day_txns.empty:
for _, row in day_txns.iterrows():
for fee in fees:
if fee_matches(fee, row["card_scheme"], row["is_credit"], row["aci"],
bool(row["intracountry"]), vol_cat, fraud_cat,
account_type, mcc, capture_delay):
applicable.add(fee["ID"])
Type B: Single Month
vol_cat, fraud_cat, txns = compute_monthly_stats(payments, merchant_name, 2023, month_number)
applicable = set()
if vol_cat and not txns.empty:
for _, row in txns.iterrows():
for fee in fees:
if fee_matches(fee, row["card_scheme"], row["is_credit"], row["aci"],
bool(row["intracountry"]), vol_cat, fraud_cat,
account_type, mcc, capture_delay):
applicable.add(fee["ID"])
Type C: Full Year
applicable = set()
for month in range(1, 13):
vol_cat, fraud_cat, txns = compute_monthly_stats(payments, merchant_name, 2023, month)
if vol_cat is None or txns.empty: continue
for _, row in txns.iterrows():
for fee in fees:
if fee_matches(fee, row["card_scheme"], row["is_credit"], row["aci"],
bool(row["intracountry"]), vol_cat, fraud_cat,
account_type, mcc, capture_delay):
applicable.add(fee["ID"])
Output Format
Return fee IDs as a sorted, comma-separated list:
29, 36, 51, 64, 65, 89, 107, ...
If no fees match, return an empty string "".
Common Pitfalls
- Type D vs. merchant-based queries — If no merchant name or date is given, use the direct filter approach on
fees.json only. Do not go into payments.csv or merchant_data.json.
[] means "all values apply" — never treat empty account_type, aci, or merchant_category_code as "no match".
- card_scheme is never null — always an exact match (GlobalCard, NexPay, TransactPlus, SwiftCharge).
- Add
intracountry to the full DataFrame before slicing — compute payments["intracountry"] = payments["issuing_country"] == payments["acquirer_country"] on the full DataFrame right after loading. Slicing first and adding the column later causes KeyError.
- Volume/fraud matching is categorical — compare category strings with equality. Do NOT parse ranges numerically.
- capture_delay mapping — convert merchant's raw value (e.g.
"1") to the fee-rule category string ("<3").
- intracountry type —
fees.json stores as 1.0/0.0; always wrap with bool() before comparing.
- Monthly stats scope — always compute volume/fraud over the full calendar month, even for single-day queries.
- No transactions → no applicable fees — return
"".