我想根据另一个字段在一个字段上设置最低金额。
例如,如果我有一个quoteAmountLower
and quoteAmountUpper
- 我想quoteAmountUpper
大于quoteAmountLower
。
如果下限为 50,则上限必须大于 50。
properties: {
quotedAmountLower: {
type: 'integer',
minimum: 0
},
quotedAmountUpper: {
type: 'integer',
// more than quotedAmountLower
minimum: 0
}
}
干杯
我尝试过使用引用或 $idquotedAmountLower