@camunda/element-templates-json-schema 0.17.1 → 0.17.2

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda/element-templates-json-schema",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
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": "8546f9a24eeef869b6e7e61b53caaa060c52b0ea"
28
+ "gitHead": "e017d841eb2bcf3fbbb88ffe02b1caf874e73360"
29
29
  }
@@ -213,6 +213,30 @@
213
213
  ]
214
214
  }
215
215
  }
216
+ },
217
+ {
218
+ "if": {
219
+ "properties": {
220
+ "type": {
221
+ "not": {
222
+ "const": "Number"
223
+ }
224
+ }
225
+ },
226
+ "required": [
227
+ "type"
228
+ ]
229
+ },
230
+ "then": {
231
+ "properties": {
232
+ "value": {
233
+ "type": [
234
+ "string",
235
+ "boolean"
236
+ ]
237
+ }
238
+ }
239
+ }
216
240
  }
217
241
  ],
218
242
  "properties": {
@@ -220,6 +244,7 @@
220
244
  "$id": "#/properties/property/value",
221
245
  "type": [
222
246
  "string",
247
+ "number",
223
248
  "boolean"
224
249
  ],
225
250
  "description": "The value of a control field."