forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.yml
More file actions
351 lines (351 loc) · 6.97 KB
/
schema.yml
File metadata and controls
351 lines (351 loc) · 6.97 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
$id: "@ali/low-code-component-protocol-schema"
description: json schema for low code component protocol
allOf:
- $ref: "#/definitions/BasicSection"
- $ref: "#/definitions/PropsSection"
- $ref: "#/definitions/ConfigureSection"
definitions:
BasicSection:
type: object
properties:
componentName:
type: string
title:
type: string
description:
type: string
docUrl:
type: string
screenshot:
type: string
icon:
type: string
tags:
type: array
items:
type: string
devMode:
enum:
- proCode
- lowCode
npm:
$ref: "#/definitions/Npm"
required:
- componentName
- title
- npm
PropsSection:
type: object
required:
- props
properties:
props:
type: array
items:
properties:
name:
type: string
propType:
$ref: "#/definitions/PropType"
description:
type: string
defaultValue: {}
required:
- name
- propType
ConfigureSection:
type: object
properties:
configure:
type: object
properties:
props:
type: array
items:
$ref: "#/definitions/ConfigureProp"
styles:
type: object
properties: {}
events:
type: object
properties: {}
component:
$ref: "#/definitions/ConfigureComponent"
Npm:
type: object
properties:
package:
type: string
exportName:
type: string
subName:
type: string
main:
type: string
destructuring:
type: boolean
version:
type: string
required:
- package
- exportName
- subName
- main
- destructuring
- version
PropType:
oneOf:
- $ref: "#/definitions/BasicType"
- $ref: "#/definitions/RequiredType"
- $ref: "#/definitions/ComplexType"
BasicType:
type: string
enum:
- array
- bool
- func
- number
- object
- string
- node
- element
- any
RequiredType:
type: object
properties:
type:
$ref: "#/definitions/BasicType"
isRequired:
type: boolean
additionalProperties: false
required:
- type
ComplexType:
oneOf:
- $ref: "#/definitions/OneOf"
- $ref: "#/definitions/OneOfType"
- $ref: "#/definitions/ArrayOf"
- $ref: "#/definitions/ObjectOf"
- $ref: "#/definitions/Shape"
- $ref: "#/definitions/Exact"
OneOf:
type: object
required:
- type
- value
properties:
type:
type: string
enum:
- oneOf
value:
type: array
items:
oneOf:
- type: string
- type: number
- type: boolean
isRequired:
type: boolean
OneOfType:
type: object
required:
- type
- value
properties:
type:
type: string
enum:
- oneOfType
value:
type: array
items:
$ref: "#/definitions/PropType"
isRequired:
type: boolean
ArrayOf:
type: object
required:
- type
- value
properties:
type:
type: string
enum:
- arrayOf
value:
$ref: "#/definitions/PropType"
isRequired:
type: boolean
ObjectOf:
type: object
required:
- type
- value
properties:
type:
type: string
enum:
- objectOf
value:
$ref: "#/definitions/PropType"
isRequired:
type: boolean
Shape:
type: object
required:
- type
- value
properties:
type:
type: string
enum:
- shape
value:
type: array
items:
type: object
properties:
name:
type: string
propType:
$ref: "#/definitions/PropType"
additionalProperties: false
isRequired:
type: boolean
ShapeItem:
type: object
required:
- name
- propType
properties:
name:
type: string
propType:
$ref: "#/definitions/PropType"
isRequired:
type: boolean
additionalProperties: false
Exact:
type: object
required:
- type
- value
properties:
type:
type: string
enum:
- exact
value:
type: array
items:
type: object
properties:
name:
type: string
propType:
$ref: "#/definitions/PropType"
additionalProperties: false
isRequired:
type: boolean
ConfigureProp:
type: object
allOf:
- type: object
properties:
title:
type: string
extraProps:
type: object
properties: {}
- oneOf:
- $ref: "#/definitions/ConfigureFieldProp"
- $ref: "#/definitions/ConfigureGroupProp"
ConfigureFieldProp:
type: object
required:
- type
properties:
type:
type: string
enum:
- field
name:
type: string
setter:
$ref: "#/definitions/ConfigureFieldSetter"
ConfigureFieldSetter:
type: object
required:
- componentName
properties:
componentName:
type: string
enum:
- List
- Object
- Function
- Node
- Mixin
- Expression
- Switch
- Number
- Input
- TextArea
- Date
- DateYear
- DateMonth
- DateRange
- ColorPicker
- CodeEditor
- Select
- RadioGroup
props:
type: object
properties: {} # 暂未校验每个控件的props,待控件入料后获取真实属性
ConfigureGroupProp:
type: object
required:
- type
- items
properties:
type:
type: string
enum:
- group
items:
type: array
items:
$ref: "#/definitions/ConfigureProp"
ConfigureComponent:
type: object
properties:
isContainer:
type: boolean
isModal:
type: boolean
descriptor:
type: string
nestingRule:
type: object
properties:
childWhitelist:
type: array
items:
type: string
parentWhitelist:
type: array
items:
type: string
descendantBlacklist:
type: array
items:
type: string
ancestorWhitelist:
type: array
items:
type: string
isNullNode:
type: boolean
isLayout:
type: boolean