-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerator.json
More file actions
44 lines (44 loc) · 896 Bytes
/
generator.json
File metadata and controls
44 lines (44 loc) · 896 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"generator": "generatorDemo",
"description": "演示脚手架",
"type": "object",
"execType": "",
"properties": {
"name": {
"title": "项目名称",
"type": "string"
},
"description": {
"title": "项目描述",
"type": "string"
},
"version": {
"title": "版本号",
"type": "string",
"default": "v0.1.0",
"pattern": "^v"
},
"ci": {
"title": "ci接入方式",
"type": "string",
"enum": ["oCI", "tencentCI"]
},
"date": {
"title": "日期选择",
"type": "string",
"format": "date-time"
},
"number": {
"title": "数字输入框",
"type": "number",
"min": 1,
"max": 10
},
"switch": {
"title": "是否接入Aegis",
"type": "boolean",
"default": true
}
},
"required": ["name","description", "version"]
}