Dependency 依赖项配置信息
1. 结构声明
- TS Declaration
- JSON Schema
class Dependency extends BaseNode {
refName: string;
version: string;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"refName": {
"type": "string"
},
"version": {
"type": "string"
}
},
"required": [
"refName",
"version"
],
"additionalProperties": false
}