ViewBlock 页面组件的代码块
1. 结构声明
- TS Declaration
- JSON Schema
class ViewBlock extends BaseNode {
title: string;
code: string;
description?: string;
}
{
"type": "object",
"properties": {
"composedBy": {
"type": "array",
"items": {
"type": "string"
}
},
"changedTime": {
"$ref": "#/definitions/long"
},
"title": {
"type": "string"
},
"code": {
"type": "string"
},
"description": {
"type": "string"
}
},
"required": [
"title",
"code"
],
"additionalProperties": false
}