@camunda/element-templates-json-schema 0.13.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 +49 -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
|
@@ -98,6 +98,9 @@
|
|
|
98
98
|
"$id": "#/properties/property/choices/item/value",
|
|
99
99
|
"type": "string",
|
|
100
100
|
"description": "The value of a choice."
|
|
101
|
+
},
|
|
102
|
+
"condition": {
|
|
103
|
+
"$ref": "#/definitions/properties/allOf/0/items/properties/condition"
|
|
101
104
|
}
|
|
102
105
|
},
|
|
103
106
|
"required": [
|
|
@@ -353,6 +356,52 @@
|
|
|
353
356
|
"enum": [
|
|
354
357
|
"Hidden"
|
|
355
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
|
+
]
|
|
356
405
|
}
|
|
357
406
|
}
|
|
358
407
|
}
|