@camunda/element-templates-json-schema 0.14.0 → 0.15.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 +46 -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.15.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": "1d013fc892c24c622b6a1f471c7619a4517434c1"
|
|
29
29
|
}
|
package/resources/schema.json
CHANGED
|
@@ -356,6 +356,52 @@
|
|
|
356
356
|
"enum": [
|
|
357
357
|
"Hidden"
|
|
358
358
|
]
|
|
359
|
+
},
|
|
360
|
+
"binding": {
|
|
361
|
+
"properties": {
|
|
362
|
+
"implementationType": {
|
|
363
|
+
"enum": [
|
|
364
|
+
"class",
|
|
365
|
+
"delegateExpression",
|
|
366
|
+
"expression",
|
|
367
|
+
"script"
|
|
368
|
+
]
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"oneOf": [
|
|
372
|
+
{
|
|
373
|
+
"not": {
|
|
374
|
+
"properties": {
|
|
375
|
+
"implementationType": {
|
|
376
|
+
"const": "script"
|
|
377
|
+
}
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"required": [
|
|
383
|
+
"scriptFormat"
|
|
384
|
+
]
|
|
385
|
+
},
|
|
386
|
+
{
|
|
387
|
+
"allOf": [
|
|
388
|
+
{
|
|
389
|
+
"not": {
|
|
390
|
+
"required": [
|
|
391
|
+
"implementationType"
|
|
392
|
+
]
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
"not": {
|
|
397
|
+
"required": [
|
|
398
|
+
"scriptFormat"
|
|
399
|
+
]
|
|
400
|
+
}
|
|
401
|
+
}
|
|
402
|
+
]
|
|
403
|
+
}
|
|
404
|
+
]
|
|
359
405
|
}
|
|
360
406
|
}
|
|
361
407
|
}
|