FlowConditionItemV2 流条件子项
1. 结构声明
- TS Declaration
- JSON Schema
class FlowConditionItemV2 extends BaseNode {
type: 'processSystem' | 'custom';
property: LogicItem;
operate: '==' | '!=' | '>' | '<' | '>=' | '<=' | 'contains' | 'in';
values: Array<string>;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"type": {
"type": "string",
"enum": [
"processSystem",
"custom"
]
},
"property": {
"$ref": "#/definitions/LogicItem"
},
"operate": {
"type": "string",
"enum": [
"==",
"!=",
">",
"<",
">=",
"<=",
"contains",
"in"
]
},
"values": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"type",
"property",
"operate",
"values"
],
"additionalProperties": false
}