@camunda/zeebe-element-templates-json-schema 0.10.0 → 0.12.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/zeebe-element-templates-json-schema",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "JSON Schema for (Zeebe) 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": [
|
|
@@ -724,6 +727,27 @@
|
|
|
724
727
|
"type": "boolean",
|
|
725
728
|
"description": "Indicates whether the element template is a default template."
|
|
726
729
|
},
|
|
730
|
+
"deprecated": {
|
|
731
|
+
"$id": "#/deprecated",
|
|
732
|
+
"type": [
|
|
733
|
+
"boolean",
|
|
734
|
+
"object"
|
|
735
|
+
],
|
|
736
|
+
"description": "Indicates whether the element template is deprecated.",
|
|
737
|
+
"properties": {
|
|
738
|
+
"message": {
|
|
739
|
+
"$id": "#/deprecated/message",
|
|
740
|
+
"type": "string",
|
|
741
|
+
"description": "Optional message to describe migration path."
|
|
742
|
+
},
|
|
743
|
+
"documentationRef": {
|
|
744
|
+
"$id": "#/deprecated/documentationRef",
|
|
745
|
+
"type": "string",
|
|
746
|
+
"pattern": "^(https|http)://.*",
|
|
747
|
+
"description": "Optional link to migration documentation."
|
|
748
|
+
}
|
|
749
|
+
}
|
|
750
|
+
},
|
|
727
751
|
"appliesTo": {
|
|
728
752
|
"$id": "#/appliesTo",
|
|
729
753
|
"type": "array",
|