## Overview

Promotion 2 Condition is a junction record that links a Condition and a Reward to a [Promotion 2](promotion2-object-reference). Each record pairs one condition (what must be true for the promotion to apply) with one reward (what discount to give). A single Promotion 2 can have multiple Promotion 2 Condition records, which are evaluated in **Priority** order.

| Property | Value |
|----------|-------|
| **API Name** | `s_c__Promotion2Condition__c` |
| **Label** | Promotion 2 Condition |
| **Plural Label** | Promotion 2 Conditions |
| **Type** | Custom Object |

## Fields

| Field Label | API Name | Type | Required | Description |
|-------------|----------|------|----------|-------------|
| Condition | `s_c__Condition_Id__c` | Lookup ([s_c__Condition__c](condition-object-reference)) | Yes | The Condition that must be met. Each Promotion 2 can have at most one Promotion 2 Condition record per Condition. |
| Priority | `s_c__Priority__c` | Number(18,0) | No | Evaluation order within the promotion. Lower numbers are evaluated first. Used by the **Tiered** reward strategy to determine which condition's reward applies. |
| Promotion 2 | `s_c__Promotion2_Id__c` | Lookup ([s_c__Promotion2__c](promotion2-object-reference)) | Yes | The Promotion 2 this condition belongs to. |
| Reward | `s_c__Reward_Id__c` | Lookup ([s_c__Reward__c](reward-object-reference)) | Yes | The Reward to apply when this condition is met. |

## Relationships

| Field | Type | Related Object | Relationship Name |
|-------|------|----------------|-------------------|
| `s_c__Condition_Id__c` | Lookup | [s_c__Condition__c](condition-object-reference) | Promotion2_Conditions_Condition |
| `s_c__Promotion2_Id__c` | Lookup | [s_c__Promotion2__c](promotion2-object-reference) | Promotion2_Conditions |
| `s_c__Reward_Id__c` | Lookup | [s_c__Reward__c](reward-object-reference) | Promotion2_Conditions_Reward |

:::note
Each combination of Promotion 2 and Condition must be unique — you cannot add the same Condition to a Promotion 2 more than once.
:::