ProcessBindV2 绑定实体或数据结构
1. 结构声明
- TS Declaration
- JSON Schema
class ProcessBindV2 extends BaseNode {
refNamespace: string;
refName: string;
typeAnnotation: TypeAnnotation;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"refNamespace": {
"type": "string"
},
"refName": {
"type": "string"
},
"typeAnnotation": {
"$ref": "#/definitions/TypeAnnotation"
}
},
"required": [
"refNamespace",
"refName",
"typeAnnotation"
],
"additionalProperties": false
}