@camunda/zeebe-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 +3 -2
- package/resources/schema.json +48 -13
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.15.0",
|
|
4
4
|
"description": "JSON Schema for (Zeebe) Element Templates",
|
|
5
5
|
"files": [
|
|
6
6
|
"resources"
|
|
@@ -24,5 +24,6 @@
|
|
|
24
24
|
"element-templates",
|
|
25
25
|
"camunda"
|
|
26
26
|
],
|
|
27
|
-
"license": "MIT"
|
|
27
|
+
"license": "MIT",
|
|
28
|
+
"gitHead": "88f93d44fa0439df7fe66dca5ee4aee6ad90ae44"
|
|
28
29
|
}
|
package/resources/schema.json
CHANGED
|
@@ -922,21 +922,63 @@
|
|
|
922
922
|
"type"
|
|
923
923
|
]
|
|
924
924
|
}
|
|
925
|
-
}
|
|
925
|
+
},
|
|
926
|
+
"required": [
|
|
927
|
+
"binding"
|
|
928
|
+
]
|
|
926
929
|
}
|
|
927
930
|
}
|
|
928
|
-
}
|
|
931
|
+
},
|
|
932
|
+
"required": [
|
|
933
|
+
"properties"
|
|
934
|
+
]
|
|
929
935
|
},
|
|
930
936
|
"then": {
|
|
937
|
+
"required": [
|
|
938
|
+
"elementType"
|
|
939
|
+
],
|
|
931
940
|
"properties": {
|
|
932
941
|
"elementType": {
|
|
942
|
+
"required": [
|
|
943
|
+
"value"
|
|
944
|
+
],
|
|
933
945
|
"properties": {
|
|
934
|
-
"
|
|
935
|
-
"
|
|
946
|
+
"value": {
|
|
947
|
+
"enum": [
|
|
948
|
+
"bpmn:ReceiveTask",
|
|
949
|
+
"bpmn:SendTask",
|
|
950
|
+
"bpmn:StartEvent",
|
|
951
|
+
"bpmn:IntermediateCatchEvent",
|
|
952
|
+
"bpmn:IntermediateThrowEvent",
|
|
953
|
+
"bpmn:BoundaryEvent",
|
|
954
|
+
"bpmn:EndEvent"
|
|
955
|
+
]
|
|
936
956
|
}
|
|
937
957
|
},
|
|
938
|
-
"
|
|
939
|
-
|
|
958
|
+
"allOf": [
|
|
959
|
+
{
|
|
960
|
+
"if": {
|
|
961
|
+
"properties": {
|
|
962
|
+
"value": {
|
|
963
|
+
"enum": [
|
|
964
|
+
"bpmn:StartEvent",
|
|
965
|
+
"bpmn:IntermediateCatchEvent",
|
|
966
|
+
"bpmn:IntermediateThrowEvent",
|
|
967
|
+
"bpmn:BoundaryEvent",
|
|
968
|
+
"bpmn:EndEvent"
|
|
969
|
+
]
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
},
|
|
973
|
+
"then": {
|
|
974
|
+
"eventDefinition": {
|
|
975
|
+
"const": "bpmn:MessageEventDefinition"
|
|
976
|
+
},
|
|
977
|
+
"required": [
|
|
978
|
+
"eventDefinition"
|
|
979
|
+
]
|
|
980
|
+
}
|
|
981
|
+
}
|
|
940
982
|
]
|
|
941
983
|
}
|
|
942
984
|
}
|
|
@@ -983,13 +1025,6 @@
|
|
|
983
1025
|
},
|
|
984
1026
|
{
|
|
985
1027
|
"if": {
|
|
986
|
-
"properties": {
|
|
987
|
-
"eventDefinition": {
|
|
988
|
-
"enum": [
|
|
989
|
-
"bpmn:MessageEventDefinition"
|
|
990
|
-
]
|
|
991
|
-
}
|
|
992
|
-
},
|
|
993
1028
|
"required": [
|
|
994
1029
|
"eventDefinition"
|
|
995
1030
|
]
|