{
  "name": "hdfc_card_mpr",
  "display_name": "HDFC Bank Card Settlement (MPR)",
  "source_role": "settlement_bank",
  "file_format": "xlsx",
  "header": {
    "row": "auto",
    "skip_rows_containing": ["Total", "Grand Total", "Page"]
  },
  "fields": [
    {
      "canonical": "card_last4",
      "aliases": ["CARD NUMBER", "Card Number", "CARD_NUMBER", "Card No."],
      "normalize": [{ "step": "trim" }, { "step": "strip_chars", "chars": ["'"] }, { "step": "last4" }]
    },
    {
      "canonical": "terminal_id",
      "aliases": ["TERMINAL NUMBER", "Terminal Number", "TERMINAL_ID", "TID"],
      "normalize": [{ "step": "trim" }, { "step": "upper" }]
    },
    {
      "canonical": "approval_code",
      "aliases": ["APPROV CODE", "APPROV_CODE", "Approval Code", "AUTH CODE"],
      "normalize": [{ "step": "trim" }, { "step": "strip_chars", "chars": ["'"] }, { "step": "lpad", "length": 6, "fill": "0" }]
    },
    {
      "canonical": "domestic_amount",
      "aliases": ["DOMESTIC AMT", "Domestic Amt", "DOMESTIC_AMT"],
      "required": false,
      "dtype": "number",
      "normalize": [{ "step": "strip_chars", "chars": [",", "₹"] }, { "step": "to_number" }]
    },
    {
      "canonical": "intl_amount",
      "aliases": ["INTNL AMT", "International Amt", "INTL_AMT"],
      "required": false,
      "dtype": "number",
      "normalize": [{ "step": "strip_chars", "chars": [",", "₹"] }, { "step": "to_number" }]
    },
    {
      "canonical": "amount",
      "derive": { "op": "coalesce", "from": ["domestic_amount", "intl_amount"] },
      "dtype": "number"
    },
    {
      "canonical": "txn_date",
      "aliases": ["TRAN DATE", "Transaction Date", "TXN_DATE"],
      "required": false,
      "dtype": "date",
      "normalize": [{ "step": "date_parse", "formats": ["%d/%m/%Y", "%d-%m-%Y", "%Y-%m-%d"] }]
    },
    {
      "canonical": "location",
      "aliases": ["UNIT", "MERCHANT NAME", "DBA NAME", "Store", "Outlet"],
      "required": false,
      "normalize": [{ "step": "trim" }, { "step": "value_map", "map_ref": "location_map" }]
    }
  ]
}
