@camunda/element-templates-json-schema 0.14.0 → 0.16.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/resources/schema.json +57 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda/element-templates-json-schema",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "JSON Schema for (Camunda) Element Templates",
|
|
5
5
|
"files": [
|
|
6
6
|
"resources"
|
|
@@ -25,5 +25,5 @@
|
|
|
25
25
|
"camunda"
|
|
26
26
|
],
|
|
27
27
|
"license": "MIT",
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "09f6e2abb2a9b8ada0399ec7d2a4fa3498a79001"
|
|
29
29
|
}
|
package/resources/schema.json
CHANGED
|
@@ -261,6 +261,17 @@
|
|
|
261
261
|
"required": [
|
|
262
262
|
"oneOf"
|
|
263
263
|
]
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
"properties": {
|
|
267
|
+
"isActive": {
|
|
268
|
+
"type": "boolean",
|
|
269
|
+
"description": "For `true`, activates the property when given property is active"
|
|
270
|
+
}
|
|
271
|
+
},
|
|
272
|
+
"required": [
|
|
273
|
+
"isActive"
|
|
274
|
+
]
|
|
264
275
|
}
|
|
265
276
|
]
|
|
266
277
|
}
|
|
@@ -356,6 +367,52 @@
|
|
|
356
367
|
"enum": [
|
|
357
368
|
"Hidden"
|
|
358
369
|
]
|
|
370
|
+
},
|
|
371
|
+
"binding": {
|
|
372
|
+
"properties": {
|
|
373
|
+
"implementationType": {
|
|
374
|
+
"enum": [
|
|
375
|
+
"class",
|
|
376
|
+
"delegateExpression",
|
|
377
|
+
"expression",
|
|
378
|
+
"script"
|
|
379
|
+
]
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
"oneOf": [
|
|
383
|
+
{
|
|
384
|
+
"not": {
|
|
385
|
+
"properties": {
|
|
386
|
+
"implementationType": {
|
|
387
|
+
"const": "script"
|
|
388
|
+
}
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"required": [
|
|
394
|
+
"scriptFormat"
|
|
395
|
+
]
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"allOf": [
|
|
399
|
+
{
|
|
400
|
+
"not": {
|
|
401
|
+
"required": [
|
|
402
|
+
"implementationType"
|
|
403
|
+
]
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"not": {
|
|
408
|
+
"required": [
|
|
409
|
+
"scriptFormat"
|
|
410
|
+
]
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
]
|
|
414
|
+
}
|
|
415
|
+
]
|
|
359
416
|
}
|
|
360
417
|
}
|
|
361
418
|
}
|