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