> For the complete documentation index, see [llms.txt](https://docs.payments.thalescloud.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.payments.thalescloud.io/nfc-wallet-sdk-android/ja/implement-nfc-wallet/make-payment/implement-contactless-payments/7.-configure-cdcvm-experiences/define-risk-management.md).

# リスク管理を定義する

## 概要

認証なしの低額取引（LVT）および通行料金支払いをサポートするには、 **デジタルウォレットアプリケーション** リスク管理設定を定義する必要があります。

これらの設定：

* 以下をサポートするデジタルカードにのみ適用されます **CDCVM** かつ認証なしのLVTを許可するもの。
* LVTアキュムレータで使用されるしきい値を定義します。

### LVTアキュムレータ

NFC Wallet SDKはLVTアキュムレータを追跡します。以下を含みます：

* 認証なしの累積取引金額
* 認証なしの連続LVT支払い回数

アキュムレータが設定された上限に達すると、NFC Wallet SDKは **エンドユーザー** に認証を求めます。

{% hint style="info" %}
認証が成功すると（HVTまたはLVTの最中）、NFC Wallet SDKはアキュムレータをリセットします。
{% endhint %}

## SDK 連携

### リスク管理パラメータ

以下を使用してリスク管理を定義します `CustomConfiguration` NFC Wallet SDKの初期化中に。参照： [NFC Wallet SDK を初期化する](/nfc-wallet-sdk-android/ja/get-started/configuration/4.-initialize-the-nfc-wallet-sdk.md#configure-payment-behavior).

利用可能なパラメータは以下のとおりです：

<table data-full-width="true"><thead><tr><th width="313.800048828125">構成パラメータ</th><th>説明</th></tr></thead><tbody><tr><td><code>maxConsecutivePaymentsForLVT</code></td><td>認証なしで許可される連続LVT支払いの最大回数を設定します。<br>上限に達すると、次のLVTでは認証が必要になります。<br>デフォルト： <code>0</code> （各LVTごとに認証を要求）。<br>最大： <code>50</code>。<br>注：このカウンタは取引通貨に関係なく増加します。</td></tr><tr><td><code>singleTransactionAmountLimitForLVT</code></td><td>認証なしの1回のLVTで許可される最大金額を設定します。<br>この上限を超えるLVTでは認証が必要です。<br>デフォルト： <code>0</code> （各LVTごとに認証を要求）。<br>取引通貨コードが <code>domesticCurrencyCode</code>.</td></tr><tr><td><code>maxCumulativeAmountForLVT</code></td><td>認証なしで許可されるLVT支払いの累積最大金額を設定します。<br>上限に達すると、次のLVTでは認証が必要になります。<br>デフォルト： <code>0</code> （各LVTごとに認証を要求）。<br>取引通貨コードが <code>domesticCurrencyCode</code>.</td></tr><tr><td><code>domesticCurrencyCode</code></td><td>LVTアキュムレータで使用するISO 4217数値通貨コードを設定します。<br>次と併用します：<br><code>singleTransactionAmountLimitForLVT</code><br><code>maxCumulativeAmountForLVT</code><br>アキュムレータは、取引通貨がこの値と一致する場合にのみ更新されます。<br>デフォルト： <code>978</code> （ユーロ）。</td></tr><tr><td><code>suppportTransitWithoutCDCVM</code></td><td>CDCVMなしの通行料金支払いを有効にします。<br>通行取引ではLVTアキュムレータ（金額または回数）は更新されません。<br>有効にすると、通行料金支払いでは認証は不要です。<br>デフォルト： <code>false</code>.</td></tr></tbody></table>

以下の例は、通貨の最小単位がアキュムレータのしきい値にどのように影響するかを示します：

```java
// 韓国ウォン：小数点以下0桁の通貨
.domesticCurrencyCode(410) //KRW
.maxCumulativeAmountForLVT(10) // 10 KRW
.maxCumulativeAmountForLVT(100) // 100 KRW
.maxCumulativeAmountForLVT(1000) // 1000 KRW
.maxCumulativeAmountForLVT(10000) // 10000 KRW

// ユーロ：小数点以下2桁の通貨
.domesticCurrencyCode(978) //EUR
.maxCumulativeAmountForLVT(1) // 0.01 EUR
.maxCumulativeAmountForLVT(10) // 0.10 EUR
.maxCumulativeAmountForLVT(100) // 1.00 EUR
.maxCumulativeAmountForLVT(1000) // 10.00 EUR
.maxCumulativeAmountForLVT(10000) // 100.00 EUR

// ヨルダン・ディナール：小数点以下3桁の通貨
.domesticCurrencyCode(400) //JOD
.maxCumulativeAmountForLVT(1) // 0.001 JOD
.maxCumulativeAmountForLVT(10) // 0.010 JOD
.maxCumulativeAmountForLVT(100) // 0.100 JOD
.maxCumulativeAmountForLVT(1000) // 1.000 JOD
.maxCumulativeAmountForLVT(10000) // 10.000 JOD
```

### PURE リスク管理

PURE（ThalesのホワイトラベルEMV決済ネットワーク）は、デジタルカードプロファイルでリスク設定も提供できます。

取引を処理する際、NFC Wallet SDKは以下に加えてPUREリスク管理を適用します `CustomConfiguration`.

次の表は、PUREリスクパラメータが、あなたが設定したリスク管理パラメータとどのように相互作用するかを示しています `CustomConfiguration`.

<table data-full-width="true"><thead><tr><th width="289.4444580078125">PUREリスクパラメータ</th><th>SDK の動作</th></tr></thead><tbody><tr><td><code>maxTransactionNoCVM</code></td><td>と比較します <code>maxConsecutivePaymentsForLVT</code> 、そしてより制限の厳しい（最も低い）値を使用します。</td></tr><tr><td><code>muta</code></td><td>取引金額がこの値を超え、かつ取引通貨コードが <code>crmCurrencyCode</code> （PUREプロファイルから）。</td></tr><tr><td><code>issuerCVMLimit</code></td><td><p>取引通貨コードが <code>domesticCurrencyCode</code>と一致する場合、 <code>singleTransactionAmountLimitForLVT</code> 、そしてより制限の厳しい（最も低い）値を使用します。</p><p>と比較します。それ以外の場合は、 <code>issuerCVMLimit</code>.</p></td></tr><tr><td><code>maxTransactionAmountNoCVM</code></td><td><p>取引通貨コードが <code>domesticCurrencyCode</code>と一致する場合、 <code>maxCumulativeAmountForLVT</code> 、そしてより制限の厳しい（最も低い）値を使用します。</p><p>と比較します。それ以外の場合は、 <code>maxTransactionAmountNoCVM</code>.</p></td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.payments.thalescloud.io/nfc-wallet-sdk-android/ja/implement-nfc-wallet/make-payment/implement-contactless-payments/7.-configure-cdcvm-experiences/define-risk-management.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
