@camunda/element-templates-json-schema 0.12.1 → 0.14.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 +24 -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.14.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": "b39ac2ebe4f2600dc155d4bdbe1cd3a177408d5a"
|
|
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": [
|
|
@@ -772,6 +775,27 @@
|
|
|
772
775
|
"type": "boolean",
|
|
773
776
|
"description": "Indicates whether the element template is a default template."
|
|
774
777
|
},
|
|
778
|
+
"deprecated": {
|
|
779
|
+
"$id": "#/deprecated",
|
|
780
|
+
"type": [
|
|
781
|
+
"boolean",
|
|
782
|
+
"object"
|
|
783
|
+
],
|
|
784
|
+
"description": "Indicates whether the element template is deprecated.",
|
|
785
|
+
"properties": {
|
|
786
|
+
"message": {
|
|
787
|
+
"$id": "#/deprecated/message",
|
|
788
|
+
"type": "string",
|
|
789
|
+
"description": "Optional message to describe migration path."
|
|
790
|
+
},
|
|
791
|
+
"documentationRef": {
|
|
792
|
+
"$id": "#/deprecated/documentationRef",
|
|
793
|
+
"type": "string",
|
|
794
|
+
"pattern": "^(https|http)://.*",
|
|
795
|
+
"description": "Optional link to migration documentation."
|
|
796
|
+
}
|
|
797
|
+
}
|
|
798
|
+
},
|
|
775
799
|
"appliesTo": {
|
|
776
800
|
"$id": "#/appliesTo",
|
|
777
801
|
"type": "array",
|