ProcessOutcomes 判断结果数组
结构声明
- TS Declaration
- Java Class
- JSON Schema
interface ProcessOutcomes {
"concept": "ProcessOutcomes", // 产品概念
"label": string, // 判断结果数组标题
"flowRefs": Array<string>, // 关联连接器
}
class ProcessOutcomesTreeNode {
ConceptEnum concept; // 产品概念
String label; // 判断结果数组标题
List<String> flowRefs; // 关联连接器
}
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$ref": "#/definitions/ProcessOutcomes",
"definitions": {
"ProcessOutcomes": {
"type": "object",
"properties": {
"concept": {
"type": "string",
"const": "ProcessOutcomes"
},
"label": {
"type": "string"
},
"flowRefs": {
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"concept",
"label",
"flowRefs"
],
"additionalProperties": false
}
}
}
示例
简单示例
- JSON
- YAML
{
"concept": "ProcessOutcomes",
"label": "流向",
"flowRefs": []
}
concept: ProcessOutcomes
label: 流向
flowRefs: []