FlowConditionV2 流条件
1. 结构声明
- TS Declaration
- JSON Schema
class FlowConditionV2 extends BaseNode {
quantifier: 'all' | 'any';
items: Array<BinaryExpression>;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"quantifier": {
"type": "string",
"enum": [
"all",
"any"
]
},
"items": {
"type": "array",
"items": {
"$ref": "#/definitions/BinaryExpression"
}
}
},
"required": [
"quantifier",
"items"
],
"additionalProperties": false
}