5
例えば、二つのフィールドを検証する方法express-jsonschemaノード急行JSON-Schemaの複数のフィールドの検証
を使用する:
("quantity" == 0 && "actualQuantity" == 0) || ("quantity" > 0 && "actualQuantity" > 0)
例えば、二つのフィールドを検証する方法express-jsonschemaノード急行JSON-Schemaの複数のフィールドの検証
を使用する:
("quantity" == 0 && "actualQuantity" == 0) || ("quantity" > 0 && "actualQuantity" > 0)
ちょうどテストし、これが仕事をする:
{
"anyOf" : [
{
"properties" : {
"quantity" : {
"minimum" : 0,
"maximum" : 0
},
"actualQuantity" : {
"minimum" : 0,
"maximum" : 0
}
}
},
{
"properties" : {
"quantity" : {
"minimum" : 1
},
"actualQuantity" : {
"minimum" : 1
}
}
}
]
}
"anyOf"
の代わりに"oneOf"
を使用することもできますが、ほとんどの実装では0が高速です。