camunda-bpmn-js 5.5.0 → 5.5.1
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/dist/assets/element-templates.css +117 -117
- package/dist/camunda-cloud-modeler.development.js +710 -695
- package/dist/camunda-cloud-modeler.production.min.js +4 -4
- package/dist/camunda-platform-modeler.development.js +770 -755
- package/dist/camunda-platform-modeler.production.min.js +6 -6
- package/package.json +2 -2
|
@@ -120906,111 +120906,111 @@
|
|
|
120906
120906
|
var jsonSourceMapExports = requireJsonSourceMap();
|
|
120907
120907
|
var jsonMap = /*@__PURE__*/getDefaultExportFromCjs(jsonSourceMapExports);
|
|
120908
120908
|
|
|
120909
|
-
function _validate(object, validateFn) {
|
|
120910
|
-
const dataPointerMap = generateDataPointerMap(object);
|
|
120911
|
-
|
|
120912
|
-
const valid = validateFn(object);
|
|
120913
|
-
|
|
120914
|
-
let errors = validateFn.errors;
|
|
120915
|
-
|
|
120916
|
-
if (errors && errors.length) {
|
|
120917
|
-
|
|
120918
|
-
// @pinussilvestrus: the <ajv-errors> extensions produces a couple of
|
|
120919
|
-
// unnecessary errors when using an <errorMessage> attribute.
|
|
120920
|
-
// Therefore, we should flatten the produced errors a bit to not
|
|
120921
|
-
// confuse the consumer of this library.
|
|
120922
|
-
|
|
120923
|
-
// (1) wrap raw errors in case of custom errorMessage attribute
|
|
120924
|
-
forEach$2(errors, wrapRawErrors);
|
|
120925
|
-
|
|
120926
|
-
// (2) ignore supportive error messages (e.g. "if-then-rules")
|
|
120927
|
-
errors = ignoreSupportiveErrors(errors);
|
|
120928
|
-
|
|
120929
|
-
// (3) set data pointer for each error
|
|
120930
|
-
forEach$2(errors, function(error) {
|
|
120931
|
-
setDataPointer(error, dataPointerMap);
|
|
120932
|
-
});
|
|
120933
|
-
}
|
|
120934
|
-
|
|
120935
|
-
return {
|
|
120936
|
-
valid: valid,
|
|
120937
|
-
object: object,
|
|
120938
|
-
errors: errors
|
|
120939
|
-
};
|
|
120940
|
-
}
|
|
120941
|
-
|
|
120942
|
-
|
|
120943
|
-
// helper //////////////
|
|
120944
|
-
function wrapRawErrors(error) {
|
|
120945
|
-
const params = error.params;
|
|
120946
|
-
|
|
120947
|
-
if (params && params.errors) {
|
|
120948
|
-
params.rawErrors = params.errors;
|
|
120949
|
-
delete params.errors;
|
|
120950
|
-
}
|
|
120951
|
-
}
|
|
120952
|
-
|
|
120953
|
-
function setDataPointer(error, dataPointerMap) {
|
|
120954
|
-
const dataPath = error.instancePath;
|
|
120955
|
-
|
|
120956
|
-
const pointer = dataPointerMap[dataPath];
|
|
120957
|
-
|
|
120958
|
-
error.dataPointer = pointer;
|
|
120959
|
-
}
|
|
120960
|
-
|
|
120961
|
-
function ignoreSupportiveErrors(errors) {
|
|
120962
|
-
return filter(errors, function(error) {
|
|
120963
|
-
return error.keyword !== 'if';
|
|
120964
|
-
});
|
|
120965
|
-
}
|
|
120966
|
-
|
|
120967
|
-
/**
|
|
120968
|
-
* Generates a key-pointer map for the object.
|
|
120969
|
-
*
|
|
120970
|
-
* Example:
|
|
120971
|
-
*
|
|
120972
|
-
* {
|
|
120973
|
-
* foo: 'bar'
|
|
120974
|
-
* }
|
|
120975
|
-
*
|
|
120976
|
-
* =>
|
|
120977
|
-
*
|
|
120978
|
-
* {
|
|
120979
|
-
* '': {
|
|
120980
|
-
* value: { line: 0, column: 0, pos: 0 },
|
|
120981
|
-
* valueEnd: { line: 2, column: 1, pos: 18 }
|
|
120982
|
-
* },
|
|
120983
|
-
* '/foo': {
|
|
120984
|
-
* key: { line: 1, column: 2, pos: 4 },
|
|
120985
|
-
* keyEnd: { line: 1, column: 7, pos: 9 },
|
|
120986
|
-
* value: { line: 1, column: 9, pos: 11 },
|
|
120987
|
-
* valueEnd: { line: 1, column: 14, pos: 16 }
|
|
120988
|
-
* }
|
|
120989
|
-
* }
|
|
120990
|
-
*
|
|
120991
|
-
* @param {Object} object
|
|
120992
|
-
* @return {Object}
|
|
120993
|
-
*/
|
|
120994
|
-
function generateDataPointerMap(object) {
|
|
120995
|
-
return jsonMap.stringify(object, null, 2).pointers;
|
|
120909
|
+
function _validate(object, validateFn) {
|
|
120910
|
+
const dataPointerMap = generateDataPointerMap(object);
|
|
120911
|
+
|
|
120912
|
+
const valid = validateFn(object);
|
|
120913
|
+
|
|
120914
|
+
let errors = validateFn.errors;
|
|
120915
|
+
|
|
120916
|
+
if (errors && errors.length) {
|
|
120917
|
+
|
|
120918
|
+
// @pinussilvestrus: the <ajv-errors> extensions produces a couple of
|
|
120919
|
+
// unnecessary errors when using an <errorMessage> attribute.
|
|
120920
|
+
// Therefore, we should flatten the produced errors a bit to not
|
|
120921
|
+
// confuse the consumer of this library.
|
|
120922
|
+
|
|
120923
|
+
// (1) wrap raw errors in case of custom errorMessage attribute
|
|
120924
|
+
forEach$2(errors, wrapRawErrors);
|
|
120925
|
+
|
|
120926
|
+
// (2) ignore supportive error messages (e.g. "if-then-rules")
|
|
120927
|
+
errors = ignoreSupportiveErrors(errors);
|
|
120928
|
+
|
|
120929
|
+
// (3) set data pointer for each error
|
|
120930
|
+
forEach$2(errors, function(error) {
|
|
120931
|
+
setDataPointer(error, dataPointerMap);
|
|
120932
|
+
});
|
|
120933
|
+
}
|
|
120934
|
+
|
|
120935
|
+
return {
|
|
120936
|
+
valid: valid,
|
|
120937
|
+
object: object,
|
|
120938
|
+
errors: errors
|
|
120939
|
+
};
|
|
120996
120940
|
}
|
|
120997
120941
|
|
|
120998
|
-
|
|
120999
|
-
|
|
121000
|
-
|
|
121001
|
-
|
|
121002
|
-
|
|
121003
|
-
|
|
121004
|
-
|
|
121005
|
-
|
|
121006
|
-
|
|
121007
|
-
|
|
121008
|
-
|
|
121009
|
-
|
|
121010
|
-
|
|
120942
|
+
|
|
120943
|
+
// helper //////////////
|
|
120944
|
+
function wrapRawErrors(error) {
|
|
120945
|
+
const params = error.params;
|
|
120946
|
+
|
|
120947
|
+
if (params && params.errors) {
|
|
120948
|
+
params.rawErrors = params.errors;
|
|
120949
|
+
delete params.errors;
|
|
120950
|
+
}
|
|
120951
|
+
}
|
|
120952
|
+
|
|
120953
|
+
function setDataPointer(error, dataPointerMap) {
|
|
120954
|
+
const dataPath = error.instancePath;
|
|
120955
|
+
|
|
120956
|
+
const pointer = dataPointerMap[dataPath];
|
|
120957
|
+
|
|
120958
|
+
error.dataPointer = pointer;
|
|
120959
|
+
}
|
|
120960
|
+
|
|
120961
|
+
function ignoreSupportiveErrors(errors) {
|
|
120962
|
+
return filter(errors, function(error) {
|
|
120963
|
+
return error.keyword !== 'if';
|
|
120964
|
+
});
|
|
120965
|
+
}
|
|
120966
|
+
|
|
120967
|
+
/**
|
|
120968
|
+
* Generates a key-pointer map for the object.
|
|
120969
|
+
*
|
|
120970
|
+
* Example:
|
|
120971
|
+
*
|
|
120972
|
+
* {
|
|
120973
|
+
* foo: 'bar'
|
|
120974
|
+
* }
|
|
120975
|
+
*
|
|
120976
|
+
* =>
|
|
120977
|
+
*
|
|
120978
|
+
* {
|
|
120979
|
+
* '': {
|
|
120980
|
+
* value: { line: 0, column: 0, pos: 0 },
|
|
120981
|
+
* valueEnd: { line: 2, column: 1, pos: 18 }
|
|
120982
|
+
* },
|
|
120983
|
+
* '/foo': {
|
|
120984
|
+
* key: { line: 1, column: 2, pos: 4 },
|
|
120985
|
+
* keyEnd: { line: 1, column: 7, pos: 9 },
|
|
120986
|
+
* value: { line: 1, column: 9, pos: 11 },
|
|
120987
|
+
* valueEnd: { line: 1, column: 14, pos: 16 }
|
|
120988
|
+
* }
|
|
120989
|
+
* }
|
|
120990
|
+
*
|
|
120991
|
+
* @param {Object} object
|
|
120992
|
+
* @return {Object}
|
|
120993
|
+
*/
|
|
120994
|
+
function generateDataPointerMap(object) {
|
|
120995
|
+
return jsonMap.stringify(object, null, 2).pointers;
|
|
120996
|
+
}
|
|
120997
|
+
|
|
120998
|
+
function getSchemaVersion$1() {
|
|
120999
|
+
return version$1;
|
|
121000
|
+
}
|
|
121001
|
+
|
|
121002
|
+
/**
|
|
121003
|
+
* Validate a single object.
|
|
121004
|
+
*
|
|
121005
|
+
* @param {Object} object
|
|
121006
|
+
* @return {Object} single object validation result
|
|
121007
|
+
*/
|
|
121008
|
+
function validate(object) {
|
|
121009
|
+
return _validate(object, validateTemplate$1);
|
|
121010
|
+
}
|
|
121011
121011
|
|
|
121012
121012
|
var name$1 = "@camunda/zeebe-element-templates-json-schema";
|
|
121013
|
-
var version = "0.22.
|
|
121013
|
+
var version = "0.22.3";
|
|
121014
121014
|
|
|
121015
121015
|
var standaloneZeebeValidator = {exports: {}};
|
|
121016
121016
|
|
|
@@ -121019,29 +121019,29 @@
|
|
|
121019
121019
|
function requireStandaloneZeebeValidator () {
|
|
121020
121020
|
if (hasRequiredStandaloneZeebeValidator) return standaloneZeebeValidator.exports;
|
|
121021
121021
|
hasRequiredStandaloneZeebeValidator = 1;
|
|
121022
|
-
standaloneZeebeValidator.exports = validate14;standaloneZeebeValidator.exports.default = validate14;const schema17 = {"type":"object","allOf":[{"required":["name","id","appliesTo","properties"],"properties":{"name":{"$id":"#/name","type":"string","description":"The name of the element template."},"id":{"$id":"#/id","type":"string","description":"The identifier of the element template."},"description":{"$id":"#/description","type":"string","description":"The description of the element template."},"version":{"$id":"#/version","type":"integer","description":"Optional version of the template. If you add a version to a template it will be considered unique based on its ID and version. Two templates can have the same ID if their version is different."},"isDefault":{"$id":"#/isDefault","type":"boolean","description":"Indicates whether the element template is a default template."},"deprecated":{"$id":"#/deprecated","type":["boolean","object"],"description":"Indicates whether the element template is deprecated.","properties":{"message":{"$id":"#/deprecated/message","type":"string","description":"Optional message to describe migration path."},"documentationRef":{"$id":"#/deprecated/documentationRef","type":"string","pattern":"^(https|http)://.*","description":"Optional link to migration documentation."}}},"appliesTo":{"$id":"#/appliesTo","type":"array","description":"List of BPMN types the template can be applied to.","default":[],"items":{"$id":"#/appliesTo/items","type":"string","pattern":"^[\\w\\d]+:[\\w\\d]+$","allOf":[{"examples":["bpmn:Task","bpmn:ServiceTask","bpmn:SequenceFlow","bpmn:Process","bpmn:StartEvent","bpmn:Gateway"]}],"errorMessage":{"pattern":"invalid item for \"appliesTo\", should contain namespaced property, example: \"bpmn:Task\""}}},"elementType":{"$id":"#/elementType","type":"object","description":"The BPMN type the element will be transformed into.","default":{},"required":["value"],"properties":{"value":{"$id":"#/elementType/value","type":"string","pattern":"^[\\w\\d]+:[\\w\\d]+$","allOf":[{"examples":["bpmn:ServiceTask","bpmn:UserTask","bpmn:StartEvent","bpmn:ExclusiveGateway","bpmn:ParallelGateway"]}],"errorMessage":{"pattern":"invalid item for \"elementType\", should contain namespaced property, example: \"bpmn:Task\""}}},"errorMessage":{"required":{"value":"missing elementType value"}}},"metadata":{"$id":"#/metadata","type":"object","description":"Some custom properties for further configuration.","default":{}},"entriesVisible":{"$id":"#/entriesVisible","type":"boolean","description":"Select whether non-template entries are visible in the properties panel."},"groups":{"$id":"#/groups","type":"array","description":"Custom fields can be ordered together via groups.","allOf":[{"examples":[[{"id":"group-1","label":"My Group"}]]}],"items":{"$id":"#/groups/group","type":"object","default":{},"required":["id","label"],"properties":{"id":{"$id":"#/groups/group/id","type":"string","description":"The id of the custom group"},"label":{"$id":"#/groups/group/label","type":"string","description":"The label of the custom group"}},"errorMessage":{"required":{"id":"missing id for group \"${0#}\"","label":"missing label for group \"${0#}\""}}}},"documentationRef":{"$id":"#/documentationRef","type":"string","pattern":"^(https|http)://.*","errorMessage":{"pattern":"Malformed documentation URL, must match \"^(https|http)://.*\""}}},"errorMessage":{"required":{"name":"missing template name","id":"missing template id","appliesTo":"missing appliesTo=[]","properties":"missing properties=[]"}}},{"allOf":[{"if":{"properties":{"properties":{"contains":{"properties":{"binding":{"properties":{"type":{"const":"bpmn:Message#property"}},"required":["type"]}},"required":["binding"]}}},"required":["properties"]},"then":{"required":["elementType"],"properties":{"elementType":{"required":["value"],"properties":{"value":{"enum":["bpmn:ReceiveTask","bpmn:SendTask","bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}},"allOf":[{"if":{"properties":{"value":{"enum":["bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}}},"then":{"eventDefinition":{"const":"bpmn:MessageEventDefinition"},"required":["eventDefinition"]}}]}}}},{"if":{"properties":{"properties":{"contains":{"properties":{"binding":{"properties":{"type":{"const":"bpmn:Message#zeebe:subscription#property"}},"required":["type"]}},"required":["binding"]}}},"required":["properties"]},"then":{"required":["elementType"],"properties":{"elementType":{"required":["value"],"properties":{"value":{"enum":["bpmn:ReceiveTask","bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}},"allOf":[{"if":{"properties":{"value":{"enum":["bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}}},"then":{"eventDefinition":{"const":"bpmn:MessageEventDefinition"},"required":["eventDefinition"]}}]}}}},{"if":{"properties":{"properties":{"contains":{"properties":{"binding":{"properties":{"type":{"const":"zeebe:calledElement"}},"required":["type"]}},"required":["binding"]}}},"required":["properties"]},"then":{"anyOf":[{"required":["elementType"],"properties":{"elementType":{"required":["value"],"properties":{"value":{"const":"bpmn:CallActivity"}}}}},{"required":["appliesTo"],"properties":{"appliesTo":{"const":["bpmn:CallActivity"]}}}]}}]}],"properties":{"properties":{"$ref":"#/definitions/properties","$id":"#/properties"},"engines":{"$id":"#/engines","type":"object","description":"Defines the compatibility of this element template with different engines. Keys are engine names, values are semantic version ranges.","default":{},"examples":[{"camunda":"^8.5"}],"properties":{"camunda":{"$id":"#/engines/camunda","type":"string","description":"A semantic version range that denotes compatible Camunda versions.","default":""}}},"icon":{"$id":"#/icon","type":"object","description":"Custom icon to be shown on the element","default":{},"properties":{"contents":{"$id":"#/icon/contents","type":"string","description":"The URL of an icon.","pattern":"^(https?|data):.*","errorMessage":{"pattern":"Malformed icon source, must be a valid HTTP(s) or data URL"}}},"required":["contents"],"errorMessage":{"required":{"contents":"missing icon contents"}}},"elementType":{"allOf":[{"allOf":[{"properties":{"eventDefinition":{"$id":"#/elementType/eventDefinition","enum":["bpmn:MessageEventDefinition"]}}},{"if":{"required":["eventDefinition"]},"then":{"properties":{"value":{"enum":["bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}},"required":["value"]}}]}]},"groups":{"items":{"properties":{"tooltip":{"$id":"#/groups/group/tooltip","type":"string"},"openByDefault":{"$id":"#/groups/group/openByDefault","type":"boolean","description":"Specifies whether the Group should be opened when first viewed. Defaults to true.","default":true}}}}}};const pattern0 = new RegExp("^(https|http)://.*", "u");const pattern1 = new RegExp("^[\\w\\d]+:[\\w\\d]+$", "u");const pattern4 = new RegExp("^(https?|data):.*", "u");const obj0 = {"required":"missingProperty","dependencies":"property","dependentRequired":"property"};const func0 = requireEqual().default;const schema18 = {"allOf":[{"type":"array","description":"List of properties of the element template.","allOf":[{"examples":[[{"label":"Name","type":"String","binding":{"type":"property","name":"name"}}]]}],"items":{"type":"object","default":{},"allOf":[{"if":{"properties":{"type":{"const":"Dropdown"}},"required":["type"]},"then":{"required":["choices"],"errorMessage":"must provide choices=[] with \"Dropdown\" type"}},{"definitions":{"condition":{"type":"object","required":["property"],"properties":{"type":{"$id":"#/condition/type","const":"simple","description":"The type of the condition.","default":"simple"},"property":{"$id":"#/condition/property","type":"string","description":"The id of the property to check."}},"oneOf":[{"properties":{"equals":{"type":["string","number","boolean"]}},"required":["equals"]},{"properties":{"oneOf":{"type":"array","items":{"type":["string","number"]}}},"required":["oneOf"]},{"properties":{"isActive":{"type":"boolean","description":"For `true`, activates the property when given property is active"}},"required":["isActive"]}],"errorMessage":{"required":{"property":"missing property name for condition"}}},"conditionDependingOnId":{"required":["property"],"properties":{"property":{"const":{"$data":"2/id"}}}}},"allOf":[{"$comment":"property#condition should not depend on property#id","if":{"required":["id","condition"],"properties":{"condition":{"$ref":"#/definitions/properties/allOf/0/items/allOf/1/definitions/conditionDependingOnId"}}},"then":{"not":{"required":["condition"]},"errorMessage":"Invalid condition.property, must be different than property.id"}},{"then":{"errorMessage":"Invalid condition.property, must be different than property.id"}}],"properties":{"id":{"type":"string","description":"Unique identifier of the property."},"condition":{"type":"object","description":"Condition(s) to activate the binding.","allOf":[{"examples":[{"type":"simple","property":"httpMethod","equals":"GET"},{"type":"simple","property":"httpMethod","oneOf":["POST","PUT","DELETE"]},{"allMatch":[{"type":"simple","property":"authType","equals":"Basic"},{"type":"simple","property":"httpMethod","oneOf":["POST","PUT","DELETE"]}]}]}],"oneOf":[{"$ref":"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition"},{"properties":{"allMatch":{"$id":"#/allMatch","type":"array","items":{"$ref":"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition"},"minItems":1}},"required":["allMatch"]}]}}},{"if":{"properties":{"type":{"not":{"const":"Number"}}},"required":["type"]},"then":{"properties":{"value":{"type":["string","boolean"]}}}},{"if":{"oneOf":[{"properties":{"type":{"enum":["String","Text"]}},"required":["type"]},{"not":{"required":["type"]}}]},"then":{"properties":{"placeholder":{"type":"string"}}},"else":{"not":{"required":["placeholder"]}}}],"properties":{"value":{"$id":"#/properties/property/value","type":["string","number","boolean"],"description":"The value of a control field."},"description":{"$id":"#/properties/property/description","type":"string","description":"The description of a control field."},"label":{"$id":"#/properties/property/label","type":"string","description":"The label of a control field."},"type":{"$id":"#/properties/property/type","type":"string","description":"The type of a control field."},"editable":{"$id":"#/properties/property/editable","type":"boolean","description":"Indicates whether a control field is editable or not."},"choices":{"$id":"#/properties/property/choices","type":"array","description":"The choices for dropdown fields.","default":[],"items":{"$id":"#/properties/property/choices/item","type":"object","default":{},"properties":{"name":{"$id":"#/properties/property/choices/item/name","type":"string","description":"The name of a choice."},"value":{"$id":"#/properties/property/choices/item/value","type":"string","description":"The value of a choice."},"condition":{"$ref":"#/definitions/properties/allOf/0/items/allOf/1/properties/condition"}},"required":["value","name"],"errorMessage":{"required":"{ name, value } must be specified for \"Dropdown\" choices"}}},"constraints":{"$id":"#/properties/property/constraints","type":"object","description":"The validation constraints of a control field.","allOf":[{"examples":[{"notEmpty":true}]}],"properties":{"notEmpty":{"$id":"#/properties/property/constraints/notEmpty","type":"boolean","description":"The control field must not be empty."},"minLength":{"$id":"#/properties/property/constraints/minLength","type":"number","description":"The minimal length of a control field value."},"maxLength":{"$id":"#/properties/property/constraints/maxLength","type":"number","description":"The maximal length for a control field value."},"pattern":{"$id":"#/properties/property/constraints/pattern","description":"A regular expression pattern for a constraint.","oneOf":[{"type":"object","default":{},"properties":{"value":{"$id":"#/properties/property/constraints/pattern/value","type":"string","description":"The regular expression of a pattern."},"message":{"$id":"#/properties/property/constraints/pattern/message","type":"string","description":"The validation message of a pattern."}}},{"type":"string"}]}}},"group":{"$id":"#/properties/property/group","type":"string","description":"The custom group of a control field."}}}},{"$schema":"http://json-schema.org/draft-07/schema","type":"array","description":"List of properties of the element template.","items":{"type":"object","default":{},"required":["binding"],"allOf":[{"if":{"properties":{"binding":{"properties":{"type":{"const":"property"}},"required":["type"]}},"required":["binding"]},"then":{"properties":{"type":{"enum":["String","Text","Hidden","Dropdown","Boolean","Number"],"errorMessage":"invalid property type ${0} for binding type \"property\"; must be any of { String, Text, Hidden, Dropdown, Boolean, Number }"}}}},{"if":{"properties":{"binding":{"properties":{"type":{"enum":["zeebe:input","zeebe:output","zeebe:property","zeebe:taskHeader","zeebe:taskDefinition:type","bpmn:Message#property","bpmn:Message#zeebe:subscription#property","zeebe:taskDefinition","zeebe:calledElement","zeebe:linkedResource"]}},"required":["type"]}},"required":["binding"]},"then":{"properties":{"type":{"enum":["String","Text","Hidden","Dropdown","Boolean","Number"],"errorMessage":"invalid property type ${0} for binding type ${1/binding/type}; must be any of { String, Text, Hidden, Dropdown, Boolean, Number }"}}}},{"if":{"properties":{"optional":{"const":true}},"required":["optional"]},"then":{"properties":{"binding":{"properties":{"type":{"enum":["zeebe:input","zeebe:output","zeebe:property","zeebe:taskHeader"],"errorMessage":"optional is not supported for binding type ${0}; must be any of { zeebe:input, zeebe:output, zeebe:property, zeebe:taskHeader }"}},"required":["type"]}}}},{"if":{"properties":{"optional":{"const":true}},"required":["optional"]},"then":{"properties":{"constraints":{"properties":{"notEmpty":{"const":false,"errorMessage":"optional is not allowed for truthy \"notEmpty\" constraint"}},"required":["notEmpty"]}}}},{"if":{"properties":{"feel":{"not":{"const":null}}},"required":["feel"]},"then":{"properties":{"type":{"enum":["String","Text","Number","Boolean"],"errorMessage":"feel is only supported for \"String\", \"Text\", \"Number\" and \"Boolean\" type"}},"required":["type"]}},{"if":{"properties":{"language":{"not":{"const":null}}},"required":["language"]},"then":{"properties":{"type":{"enum":["Text"],"errorMessage":"language is only supported for \"Text\" type"}}}},{"if":{"required":["value"]},"then":{"not":{"required":["generatedValue"]}}},{"if":{"properties":{"type":{"enum":["Boolean","Dropdown"]}},"required":["type"]},"then":{"not":{"required":["generatedValue"]}}},{"if":{"properties":{"type":{"enum":["String","Text"]}},"required":["feel"]},"then":{"properties":{"feel":{"enum":["optional","required"]}}}},{"if":{"properties":{"feel":{"const":"required"}},"required":["feel"]},"then":{"properties":{"value":{"type":"string"}}}},{"if":{"properties":{"binding":{"properties":{"type":{"const":"zeebe:linkedResource"}},"required":["type"]}},"required":["binding"]},"then":{"properties":{"binding":{"properties":{"linkName":{"type":"string"},"property":{"enum":["resourceId","resourceType","bindingType","versionTag"],"errorMessage":"invalid binding.property ${0}; must be any of { resourceId, resourceType, bindingType, versionTag }"}},"required":["linkName","property"]}}}},{"allOf":[{"if":{"properties":{"binding":{"properties":{"type":{"enum":["zeebe:input","zeebe:output"]}},"required":["type"]},"type":{"enum":["Boolean","Number"]}},"required":["binding","type"]},"then":{"required":["feel"],"properties":{"feel":{"enum":["optional","static"]}}}}]}],"properties":{"binding":{"$id":"#/properties/property/binding","type":"object","description":"Specifying how the property is mapped to BPMN or Zeebe extension elements and attributes.","required":["type"],"allOf":[{"if":{"properties":{"type":{"enum":["property","zeebe:property","zeebe:input","bpmn:Message#property","bpmn:Message#zeebe:subscription#property"]}},"required":["type"]},"then":{"required":["name"],"errorMessage":"property.binding ${0/type} requires name"}},{"if":{"properties":{"type":{"const":"zeebe:output"}},"required":["type"]},"then":{"required":["source"],"errorMessage":"property.binding ${0/type} requires source"}},{"if":{"properties":{"type":{"const":"zeebe:taskHeader"}},"required":["type"]},"then":{"required":["key"],"errorMessage":"property.binding ${0/type} requires key"}},{"if":{"properties":{"type":{"const":"zeebe:taskDefinition"}},"required":["type"]},"then":{"properties":{"property":{"enum":["type","retries"]}},"required":["property"]}},{"if":{"properties":{"type":{"const":"zeebe:taskDefinition:type"}},"required":["type"]},"then":{"deprecated":true}},{"if":{"properties":{"type":{"const":"zeebe:calledElement"}},"required":["type"]},"then":{"properties":{"property":{"const":"processId"}},"required":["property"]}},{"examples":[{"type":"property","name":"name"},{"type":"zeebe:input","name":"input"},{"type":"zeebe:output","source":"output"},{"type":"zeebe:property","name":"property"},{"type":"zeebe:taskHeader","key":"key"},{"type":"zeebe:taskDefinition","property":"retries"},{"type":"zeebe:taskDefinition","property":"type"}]}],"properties":{"type":{"$id":"#/properties/property/binding/type","type":"string","description":"The type of a property binding.","enum":["property","zeebe:taskDefinition:type","zeebe:input","zeebe:output","zeebe:property","zeebe:taskHeader","bpmn:Message#property","bpmn:Message#zeebe:subscription#property","zeebe:taskDefinition","zeebe:calledElement","zeebe:linkedResource"],"errorMessage":"invalid property.binding type ${0}; must be any of { property, zeebe:taskDefinition:type, zeebe:input, zeebe:output, zeebe:property, zeebe:taskHeader, bpmn:Message#property, bpmn:Message#zeebe:subscription#property, zeebe:taskDefinition, zeebe:calledElement, zeebe:linkedResource }"},"name":{"$id":"#/properties/property/binding/name","type":"string","description":"The name of a property binding."},"source":{"$id":"#/properties/property/binding/source","type":"string","description":"The source value of a property binding (zeebe:output)."},"key":{"$id":"#/properties/property/binding/key","type":"string","description":"The key value of a property binding (zeebe:taskHeader)."},"property":{"$id":"#/properties/property/binding/property","type":"string","description":"The name of the property defined in the binding."},"linkName":{"$id":"#/properties/property/binding/linkName","type":"string","description":"The `linkName` of the element (zeebe:linkedResource)."}}},"optional":{"$id":"#/optional","type":"boolean","description":"Indicates whether a property is optional. Optional bindings do not persist empty values in the underlying BPMN 2.0 XML."},"feel":{"$id":"#/properties/property/feel","type":"string","description":"Indicates whether the property can be a feel expression","enum":["optional","required","static"]},"language":{"$id":"#/properties/property/language","type":"string","description":"Indicates that the field is a custom language editor"},"generatedValue":{"$id":"#/properties/property/generatedValue","type":"object","required":["type"],"properties":{"type":{"const":"uuid"}},"description":"Sets property to a generated value according to given scheme."},"tooltip":{"$id":"#/properties/property/tooltip","type":"string","description":"Hints for the control field."}},"errorMessage":{"required":{"binding":"missing binding for property \"${0#}\""}}}}]};const schema19 = {"required":["property"],"properties":{"property":{"const":{"$data":"2/id"}}}};const schema20 = {"type":"object","required":["property"],"properties":{"type":{"$id":"#/condition/type","const":"simple","description":"The type of the condition.","default":"simple"},"property":{"$id":"#/condition/property","type":"string","description":"The id of the property to check."}},"oneOf":[{"properties":{"equals":{"type":["string","number","boolean"]}},"required":["equals"]},{"properties":{"oneOf":{"type":"array","items":{"type":["string","number"]}}},"required":["oneOf"]},{"properties":{"isActive":{"type":"boolean","description":"For `true`, activates the property when given property is active"}},"required":["isActive"]}],"errorMessage":{"required":{"property":"missing property name for condition"}}};function validate17(data, {instancePath="", parentData, parentDataProperty, rootData=data}={}){let vErrors = null;let errors = 0;if(!(data && typeof data == "object" && !Array.isArray(data))){const err0 = {instancePath,schemaPath:"#/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err0];}else {vErrors.push(err0);}errors++;}const _errs1 = errors;let valid0 = false;let passing0 = null;const _errs2 = errors;const _errs5 = errors;let valid2 = false;let passing1 = null;const _errs6 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.equals === undefined){const err1 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/required",keyword:"required",params:{missingProperty: "equals"},message:"must have required property '"+"equals"+"'"};if(vErrors === null){vErrors = [err1];}else {vErrors.push(err1);}errors++;}if(data.equals !== undefined){let data0 = data.equals;if(((typeof data0 !== "string") && (!(typeof data0 == "number"))) && (typeof data0 !== "boolean")){const err2 = {instancePath:instancePath+"/equals",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/properties/equals/type",keyword:"type",params:{type: schema20.oneOf[0].properties.equals.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err2];}else {vErrors.push(err2);}errors++;}}}var _valid1 = _errs6 === errors;if(_valid1){valid2 = true;passing1 = 0;}const _errs9 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.oneOf === undefined){const err3 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "oneOf"},message:"must have required property '"+"oneOf"+"'"};if(vErrors === null){vErrors = [err3];}else {vErrors.push(err3);}errors++;}if(data.oneOf !== undefined){let data1 = data.oneOf;if(Array.isArray(data1)){const len0 = data1.length;for(let i0=0; i0<len0; i0++){let data2 = data1[i0];if((typeof data2 !== "string") && (!(typeof data2 == "number"))){const err4 = {instancePath:instancePath+"/oneOf/" + i0,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/items/type",keyword:"type",params:{type: schema20.oneOf[1].properties.oneOf.items.type},message:"must be string,number"};if(vErrors === null){vErrors = [err4];}else {vErrors.push(err4);}errors++;}}}else {const err5 = {instancePath:instancePath+"/oneOf",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err5];}else {vErrors.push(err5);}errors++;}}}var _valid1 = _errs9 === errors;if(_valid1 && valid2){valid2 = false;passing1 = [passing1, 1];}else {if(_valid1){valid2 = true;passing1 = 1;}const _errs14 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.isActive === undefined){const err6 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/required",keyword:"required",params:{missingProperty: "isActive"},message:"must have required property '"+"isActive"+"'"};if(vErrors === null){vErrors = [err6];}else {vErrors.push(err6);}errors++;}if(data.isActive !== undefined){if(typeof data.isActive !== "boolean"){const err7 = {instancePath:instancePath+"/isActive",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/properties/isActive/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err7];}else {vErrors.push(err7);}errors++;}}}var _valid1 = _errs14 === errors;if(_valid1 && valid2){valid2 = false;passing1 = [passing1, 2];}else {if(_valid1){valid2 = true;passing1 = 2;}}}if(!valid2){const err8 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing1},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err8];}else {vErrors.push(err8);}errors++;}else {errors = _errs5;if(vErrors !== null){if(_errs5){vErrors.length = _errs5;}else {vErrors = null;}}}if(data && typeof data == "object" && !Array.isArray(data)){if(data.property === undefined){const err9 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err9];}else {vErrors.push(err9);}errors++;}if(data.type !== undefined){if("simple" !== data.type){const err10 = {instancePath:instancePath+"/type",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/type/const",keyword:"const",params:{allowedValue: "simple"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err10];}else {vErrors.push(err10);}errors++;}}if(data.property !== undefined){if(typeof data.property !== "string"){const err11 = {instancePath:instancePath+"/property",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err11];}else {vErrors.push(err11);}errors++;}}}else {const err12 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err12];}else {vErrors.push(err12);}errors++;}if(errors > 0){const emErrors0 = {"required":{"property":[]}};const templates0 = {required:{}};let emPropParams0;let emParamsErrors0;for(const err13 of vErrors){if((((((err13.keyword !== "errorMessage") && (!err13.emUsed)) && (err13.instancePath === instancePath)) && (err13.keyword in emErrors0)) && (err13.schemaPath.indexOf("#/definitions/properties/allOf/0/items/allOf/1/definitions/condition") === 0)) && (/^\/[^\/]*$/.test(err13.schemaPath.slice(68)))){emPropParams0 = obj0[err13.keyword];emParamsErrors0 = emErrors0[err13.keyword][err13.params[emPropParams0]];if(emParamsErrors0){emParamsErrors0.push(err13);err13.emUsed = true;}}}for(const key0 in emErrors0){for(const keyProp0 in emErrors0[key0]){emParamsErrors0 = emErrors0[key0][keyProp0];if(emParamsErrors0.length){const tmpl0 = templates0[key0] && templates0[key0][keyProp0];const err14 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors0},message:tmpl0 ? tmpl0() : schema20.errorMessage[key0][keyProp0]};if(vErrors === null){vErrors = [err14];}else {vErrors.push(err14);}errors++;}}}const emErrs0 = [];for(const err15 of vErrors){if(!err15.emUsed){emErrs0.push(err15);}}vErrors = emErrs0;errors = emErrs0.length;}var _valid0 = _errs2 === errors;if(_valid0){valid0 = true;passing0 = 0;}const _errs20 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.allMatch === undefined){const err16 = {instancePath,schemaPath:"#/oneOf/1/required",keyword:"required",params:{missingProperty: "allMatch"},message:"must have required property '"+"allMatch"+"'"};if(vErrors === null){vErrors = [err16];}else {vErrors.push(err16);}errors++;}if(data.allMatch !== undefined){let data6 = data.allMatch;if(Array.isArray(data6)){if(data6.length < 1){const err17 = {instancePath:instancePath+"/allMatch",schemaPath:"#/oneOf/1/properties/allMatch/minItems",keyword:"minItems",params:{limit: 1},message:"must NOT have fewer than 1 items"};if(vErrors === null){vErrors = [err17];}else {vErrors.push(err17);}errors++;}const len1 = data6.length;for(let i1=0; i1<len1; i1++){let data7 = data6[i1];const _errs26 = errors;let valid13 = false;let passing2 = null;const _errs27 = errors;if(data7 && typeof data7 == "object" && !Array.isArray(data7)){if(data7.equals === undefined){const err18 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/required",keyword:"required",params:{missingProperty: "equals"},message:"must have required property '"+"equals"+"'"};if(vErrors === null){vErrors = [err18];}else {vErrors.push(err18);}errors++;}if(data7.equals !== undefined){let data8 = data7.equals;if(((typeof data8 !== "string") && (!(typeof data8 == "number"))) && (typeof data8 !== "boolean")){const err19 = {instancePath:instancePath+"/allMatch/" + i1+"/equals",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/properties/equals/type",keyword:"type",params:{type: schema20.oneOf[0].properties.equals.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err19];}else {vErrors.push(err19);}errors++;}}}var _valid2 = _errs27 === errors;if(_valid2){valid13 = true;passing2 = 0;}const _errs30 = errors;if(data7 && typeof data7 == "object" && !Array.isArray(data7)){if(data7.oneOf === undefined){const err20 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "oneOf"},message:"must have required property '"+"oneOf"+"'"};if(vErrors === null){vErrors = [err20];}else {vErrors.push(err20);}errors++;}if(data7.oneOf !== undefined){let data9 = data7.oneOf;if(Array.isArray(data9)){const len2 = data9.length;for(let i2=0; i2<len2; i2++){let data10 = data9[i2];if((typeof data10 !== "string") && (!(typeof data10 == "number"))){const err21 = {instancePath:instancePath+"/allMatch/" + i1+"/oneOf/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/items/type",keyword:"type",params:{type: schema20.oneOf[1].properties.oneOf.items.type},message:"must be string,number"};if(vErrors === null){vErrors = [err21];}else {vErrors.push(err21);}errors++;}}}else {const err22 = {instancePath:instancePath+"/allMatch/" + i1+"/oneOf",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err22];}else {vErrors.push(err22);}errors++;}}}var _valid2 = _errs30 === errors;if(_valid2 && valid13){valid13 = false;passing2 = [passing2, 1];}else {if(_valid2){valid13 = true;passing2 = 1;}const _errs35 = errors;if(data7 && typeof data7 == "object" && !Array.isArray(data7)){if(data7.isActive === undefined){const err23 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/required",keyword:"required",params:{missingProperty: "isActive"},message:"must have required property '"+"isActive"+"'"};if(vErrors === null){vErrors = [err23];}else {vErrors.push(err23);}errors++;}if(data7.isActive !== undefined){if(typeof data7.isActive !== "boolean"){const err24 = {instancePath:instancePath+"/allMatch/" + i1+"/isActive",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/properties/isActive/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err24];}else {vErrors.push(err24);}errors++;}}}var _valid2 = _errs35 === errors;if(_valid2 && valid13){valid13 = false;passing2 = [passing2, 2];}else {if(_valid2){valid13 = true;passing2 = 2;}}}if(!valid13){const err25 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing2},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err25];}else {vErrors.push(err25);}errors++;}else {errors = _errs26;if(vErrors !== null){if(_errs26){vErrors.length = _errs26;}else {vErrors = null;}}}if(data7 && typeof data7 == "object" && !Array.isArray(data7)){if(data7.property === undefined){const err26 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err26];}else {vErrors.push(err26);}errors++;}if(data7.type !== undefined){if("simple" !== data7.type){const err27 = {instancePath:instancePath+"/allMatch/" + i1+"/type",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/type/const",keyword:"const",params:{allowedValue: "simple"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err27];}else {vErrors.push(err27);}errors++;}}if(data7.property !== undefined){if(typeof data7.property !== "string"){const err28 = {instancePath:instancePath+"/allMatch/" + i1+"/property",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err28];}else {vErrors.push(err28);}errors++;}}}else {const err29 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err29];}else {vErrors.push(err29);}errors++;}if(errors > 0){const emErrors1 = {"required":{"property":[]}};const templates1 = {required:{}};let emPropParams1;let emParamsErrors1;for(const err30 of vErrors){if((((((err30.keyword !== "errorMessage") && (!err30.emUsed)) && (err30.instancePath === instancePath+"/allMatch/" + i1)) && (err30.keyword in emErrors1)) && (err30.schemaPath.indexOf("#/definitions/properties/allOf/0/items/allOf/1/definitions/condition") === 0)) && (/^\/[^\/]*$/.test(err30.schemaPath.slice(68)))){emPropParams1 = obj0[err30.keyword];emParamsErrors1 = emErrors1[err30.keyword][err30.params[emPropParams1]];if(emParamsErrors1){emParamsErrors1.push(err30);err30.emUsed = true;}}}for(const key1 in emErrors1){for(const keyProp1 in emErrors1[key1]){emParamsErrors1 = emErrors1[key1][keyProp1];if(emParamsErrors1.length){const tmpl1 = templates1[key1] && templates1[key1][keyProp1];const err31 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors1},message:tmpl1 ? tmpl1() : schema20.errorMessage[key1][keyProp1]};if(vErrors === null){vErrors = [err31];}else {vErrors.push(err31);}errors++;}}}const emErrs1 = [];for(const err32 of vErrors){if(!err32.emUsed){emErrs1.push(err32);}}vErrors = emErrs1;errors = emErrs1.length;}}}else {const err33 = {instancePath:instancePath+"/allMatch",schemaPath:"#/oneOf/1/properties/allMatch/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err33];}else {vErrors.push(err33);}errors++;}}}var _valid0 = _errs20 === errors;if(_valid0 && valid0){valid0 = false;passing0 = [passing0, 1];}else {if(_valid0){valid0 = true;passing0 = 1;}}if(!valid0){const err34 = {instancePath,schemaPath:"#/oneOf",keyword:"oneOf",params:{passingSchemas: passing0},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err34];}else {vErrors.push(err34);}errors++;}else {errors = _errs1;if(vErrors !== null){if(_errs1){vErrors.length = _errs1;}else {vErrors = null;}}}validate17.errors = vErrors;return errors === 0;}function validate16(data, {instancePath="", parentData, parentDataProperty, rootData=data}={}){let vErrors = null;let errors = 0;if(Array.isArray(data)){const len0 = data.length;for(let i0=0; i0<len0; i0++){let data0 = data[i0];const _errs5 = errors;let valid5 = true;const _errs6 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.type === undefined) && ("type")){const err0 = {};if(vErrors === null){vErrors = [err0];}else {vErrors.push(err0);}errors++;}else {if(data0.type !== undefined){if("Dropdown" !== data0.type){const err1 = {};if(vErrors === null){vErrors = [err1];}else {vErrors.push(err1);}errors++;}}}}var _valid0 = _errs6 === errors;errors = _errs5;if(vErrors !== null){if(_errs5){vErrors.length = _errs5;}else {vErrors = null;}}if(_valid0){const _errs8 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.choices === undefined){const err2 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/0/then/required",keyword:"required",params:{missingProperty: "choices"},message:"must have required property '"+"choices"+"'"};if(vErrors === null){vErrors = [err2];}else {vErrors.push(err2);}errors++;}}if(errors > 0){const emErrs0 = [];for(const err3 of vErrors){if(((((err3.keyword !== "errorMessage") && (!err3.emUsed)) && ((err3.instancePath === instancePath+"/" + i0) || ((err3.instancePath.indexOf(instancePath+"/" + i0) === 0) && (err3.instancePath[instancePath+"/" + i0.length] === "/")))) && (err3.schemaPath.indexOf("#/allOf/0/items/allOf/0/then") === 0)) && (err3.schemaPath["#/allOf/0/items/allOf/0/then".length] === "/")){emErrs0.push(err3);err3.emUsed = true;}}if(emErrs0.length){const err4 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/0/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs0},message:"must provide choices=[] with \"Dropdown\" type"};if(vErrors === null){vErrors = [err4];}else {vErrors.push(err4);}errors++;}const emErrs1 = [];for(const err5 of vErrors){if(!err5.emUsed){emErrs1.push(err5);}}vErrors = emErrs1;errors = emErrs1.length;}var _valid0 = _errs8 === errors;valid5 = _valid0;}if(!valid5){const err6 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err6];}else {vErrors.push(err6);}errors++;}const _errs12 = errors;let valid8 = true;const _errs13 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(((data0.id === undefined) && ("id")) || ((data0.condition === undefined) && ("condition"))){const err7 = {};if(vErrors === null){vErrors = [err7];}else {vErrors.push(err7);}errors++;}else {if(data0.condition !== undefined){let data2 = data0.condition;if(data2 && typeof data2 == "object" && !Array.isArray(data2)){if((data2.property === undefined) && ("property")){const err8 = {};if(vErrors === null){vErrors = [err8];}else {vErrors.push(err8);}errors++;}else {if(data2.property !== undefined){if(!func0(data2.property, schema19.properties.property.const)){const err9 = {};if(vErrors === null){vErrors = [err9];}else {vErrors.push(err9);}errors++;}}}}}}}var _valid1 = _errs13 === errors;errors = _errs12;if(vErrors !== null){if(_errs12){vErrors.length = _errs12;}else {vErrors = null;}}if(_valid1){const _errs17 = errors;const _errs18 = errors;const _errs19 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.condition === undefined) && ("condition")){const err10 = {};if(vErrors === null){vErrors = [err10];}else {vErrors.push(err10);}errors++;}}var valid12 = _errs19 === errors;if(valid12){const err11 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/1/allOf/0/then/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors === null){vErrors = [err11];}else {vErrors.push(err11);}errors++;}else {errors = _errs18;if(vErrors !== null){if(_errs18){vErrors.length = _errs18;}else {vErrors = null;}}}if(errors > 0){const emErrs2 = [];for(const err12 of vErrors){if(((((err12.keyword !== "errorMessage") && (!err12.emUsed)) && ((err12.instancePath === instancePath+"/" + i0) || ((err12.instancePath.indexOf(instancePath+"/" + i0) === 0) && (err12.instancePath[instancePath+"/" + i0.length] === "/")))) && (err12.schemaPath.indexOf("#/allOf/0/items/allOf/1/allOf/0/then") === 0)) && (err12.schemaPath["#/allOf/0/items/allOf/1/allOf/0/then".length] === "/")){emErrs2.push(err12);err12.emUsed = true;}}if(emErrs2.length){const err13 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/1/allOf/0/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs2},message:"Invalid condition.property, must be different than property.id"};if(vErrors === null){vErrors = [err13];}else {vErrors.push(err13);}errors++;}const emErrs3 = [];for(const err14 of vErrors){if(!err14.emUsed){emErrs3.push(err14);}}vErrors = emErrs3;errors = emErrs3.length;}var _valid1 = _errs17 === errors;valid8 = _valid1;}if(!valid8){const err15 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/1/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err15];}else {vErrors.push(err15);}errors++;}if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.id !== undefined){if(typeof data0.id !== "string"){const err16 = {instancePath:instancePath+"/" + i0+"/id",schemaPath:"#/allOf/0/items/allOf/1/properties/id/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err16];}else {vErrors.push(err16);}errors++;}}if(data0.condition !== undefined){let data5 = data0.condition;if(!(data5 && typeof data5 == "object" && !Array.isArray(data5))){const err17 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err17];}else {vErrors.push(err17);}errors++;}const _errs25 = errors;let valid14 = false;let passing0 = null;const _errs26 = errors;const _errs29 = errors;let valid16 = false;let passing1 = null;const _errs30 = errors;if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.equals === undefined){const err18 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/required",keyword:"required",params:{missingProperty: "equals"},message:"must have required property '"+"equals"+"'"};if(vErrors === null){vErrors = [err18];}else {vErrors.push(err18);}errors++;}if(data5.equals !== undefined){let data6 = data5.equals;if(((typeof data6 !== "string") && (!(typeof data6 == "number"))) && (typeof data6 !== "boolean")){const err19 = {instancePath:instancePath+"/" + i0+"/condition/equals",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/properties/equals/type",keyword:"type",params:{type: schema20.oneOf[0].properties.equals.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err19];}else {vErrors.push(err19);}errors++;}}}var _valid3 = _errs30 === errors;if(_valid3){valid16 = true;passing1 = 0;}const _errs33 = errors;if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.oneOf === undefined){const err20 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "oneOf"},message:"must have required property '"+"oneOf"+"'"};if(vErrors === null){vErrors = [err20];}else {vErrors.push(err20);}errors++;}if(data5.oneOf !== undefined){let data7 = data5.oneOf;if(Array.isArray(data7)){const len1 = data7.length;for(let i1=0; i1<len1; i1++){let data8 = data7[i1];if((typeof data8 !== "string") && (!(typeof data8 == "number"))){const err21 = {instancePath:instancePath+"/" + i0+"/condition/oneOf/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/items/type",keyword:"type",params:{type: schema20.oneOf[1].properties.oneOf.items.type},message:"must be string,number"};if(vErrors === null){vErrors = [err21];}else {vErrors.push(err21);}errors++;}}}else {const err22 = {instancePath:instancePath+"/" + i0+"/condition/oneOf",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err22];}else {vErrors.push(err22);}errors++;}}}var _valid3 = _errs33 === errors;if(_valid3 && valid16){valid16 = false;passing1 = [passing1, 1];}else {if(_valid3){valid16 = true;passing1 = 1;}const _errs38 = errors;if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.isActive === undefined){const err23 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/required",keyword:"required",params:{missingProperty: "isActive"},message:"must have required property '"+"isActive"+"'"};if(vErrors === null){vErrors = [err23];}else {vErrors.push(err23);}errors++;}if(data5.isActive !== undefined){if(typeof data5.isActive !== "boolean"){const err24 = {instancePath:instancePath+"/" + i0+"/condition/isActive",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/properties/isActive/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err24];}else {vErrors.push(err24);}errors++;}}}var _valid3 = _errs38 === errors;if(_valid3 && valid16){valid16 = false;passing1 = [passing1, 2];}else {if(_valid3){valid16 = true;passing1 = 2;}}}if(!valid16){const err25 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing1},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err25];}else {vErrors.push(err25);}errors++;}else {errors = _errs29;if(vErrors !== null){if(_errs29){vErrors.length = _errs29;}else {vErrors = null;}}}if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.property === undefined){const err26 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err26];}else {vErrors.push(err26);}errors++;}if(data5.type !== undefined){if("simple" !== data5.type){const err27 = {instancePath:instancePath+"/" + i0+"/condition/type",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/type/const",keyword:"const",params:{allowedValue: "simple"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err27];}else {vErrors.push(err27);}errors++;}}if(data5.property !== undefined){if(typeof data5.property !== "string"){const err28 = {instancePath:instancePath+"/" + i0+"/condition/property",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err28];}else {vErrors.push(err28);}errors++;}}}else {const err29 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err29];}else {vErrors.push(err29);}errors++;}if(errors > 0){const emErrors0 = {"required":{"property":[]}};const templates0 = {required:{}};let emPropParams0;let emParamsErrors0;for(const err30 of vErrors){if((((((err30.keyword !== "errorMessage") && (!err30.emUsed)) && (err30.instancePath === instancePath+"/" + i0+"/condition")) && (err30.keyword in emErrors0)) && (err30.schemaPath.indexOf("#/definitions/properties/allOf/0/items/allOf/1/definitions/condition") === 0)) && (/^\/[^\/]*$/.test(err30.schemaPath.slice(68)))){emPropParams0 = obj0[err30.keyword];emParamsErrors0 = emErrors0[err30.keyword][err30.params[emPropParams0]];if(emParamsErrors0){emParamsErrors0.push(err30);err30.emUsed = true;}}}for(const key0 in emErrors0){for(const keyProp0 in emErrors0[key0]){emParamsErrors0 = emErrors0[key0][keyProp0];if(emParamsErrors0.length){const tmpl0 = templates0[key0] && templates0[key0][keyProp0];const err31 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors0},message:tmpl0 ? tmpl0() : schema20.errorMessage[key0][keyProp0]};if(vErrors === null){vErrors = [err31];}else {vErrors.push(err31);}errors++;}}}const emErrs4 = [];for(const err32 of vErrors){if(!err32.emUsed){emErrs4.push(err32);}}vErrors = emErrs4;errors = emErrs4.length;}var _valid2 = _errs26 === errors;if(_valid2){valid14 = true;passing0 = 0;}const _errs44 = errors;if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.allMatch === undefined){const err33 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "allMatch"},message:"must have required property '"+"allMatch"+"'"};if(vErrors === null){vErrors = [err33];}else {vErrors.push(err33);}errors++;}if(data5.allMatch !== undefined){let data12 = data5.allMatch;if(Array.isArray(data12)){if(data12.length < 1){const err34 = {instancePath:instancePath+"/" + i0+"/condition/allMatch",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/oneOf/1/properties/allMatch/minItems",keyword:"minItems",params:{limit: 1},message:"must NOT have fewer than 1 items"};if(vErrors === null){vErrors = [err34];}else {vErrors.push(err34);}errors++;}const len2 = data12.length;for(let i2=0; i2<len2; i2++){let data13 = data12[i2];const _errs50 = errors;let valid27 = false;let passing2 = null;const _errs51 = errors;if(data13 && typeof data13 == "object" && !Array.isArray(data13)){if(data13.equals === undefined){const err35 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/required",keyword:"required",params:{missingProperty: "equals"},message:"must have required property '"+"equals"+"'"};if(vErrors === null){vErrors = [err35];}else {vErrors.push(err35);}errors++;}if(data13.equals !== undefined){let data14 = data13.equals;if(((typeof data14 !== "string") && (!(typeof data14 == "number"))) && (typeof data14 !== "boolean")){const err36 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/equals",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/properties/equals/type",keyword:"type",params:{type: schema20.oneOf[0].properties.equals.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err36];}else {vErrors.push(err36);}errors++;}}}var _valid4 = _errs51 === errors;if(_valid4){valid27 = true;passing2 = 0;}const _errs54 = errors;if(data13 && typeof data13 == "object" && !Array.isArray(data13)){if(data13.oneOf === undefined){const err37 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "oneOf"},message:"must have required property '"+"oneOf"+"'"};if(vErrors === null){vErrors = [err37];}else {vErrors.push(err37);}errors++;}if(data13.oneOf !== undefined){let data15 = data13.oneOf;if(Array.isArray(data15)){const len3 = data15.length;for(let i3=0; i3<len3; i3++){let data16 = data15[i3];if((typeof data16 !== "string") && (!(typeof data16 == "number"))){const err38 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/oneOf/" + i3,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/items/type",keyword:"type",params:{type: schema20.oneOf[1].properties.oneOf.items.type},message:"must be string,number"};if(vErrors === null){vErrors = [err38];}else {vErrors.push(err38);}errors++;}}}else {const err39 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/oneOf",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err39];}else {vErrors.push(err39);}errors++;}}}var _valid4 = _errs54 === errors;if(_valid4 && valid27){valid27 = false;passing2 = [passing2, 1];}else {if(_valid4){valid27 = true;passing2 = 1;}const _errs59 = errors;if(data13 && typeof data13 == "object" && !Array.isArray(data13)){if(data13.isActive === undefined){const err40 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/required",keyword:"required",params:{missingProperty: "isActive"},message:"must have required property '"+"isActive"+"'"};if(vErrors === null){vErrors = [err40];}else {vErrors.push(err40);}errors++;}if(data13.isActive !== undefined){if(typeof data13.isActive !== "boolean"){const err41 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/isActive",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/properties/isActive/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err41];}else {vErrors.push(err41);}errors++;}}}var _valid4 = _errs59 === errors;if(_valid4 && valid27){valid27 = false;passing2 = [passing2, 2];}else {if(_valid4){valid27 = true;passing2 = 2;}}}if(!valid27){const err42 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing2},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err42];}else {vErrors.push(err42);}errors++;}else {errors = _errs50;if(vErrors !== null){if(_errs50){vErrors.length = _errs50;}else {vErrors = null;}}}if(data13 && typeof data13 == "object" && !Array.isArray(data13)){if(data13.property === undefined){const err43 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err43];}else {vErrors.push(err43);}errors++;}if(data13.type !== undefined){if("simple" !== data13.type){const err44 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/type",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/type/const",keyword:"const",params:{allowedValue: "simple"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err44];}else {vErrors.push(err44);}errors++;}}if(data13.property !== undefined){if(typeof data13.property !== "string"){const err45 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/property",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err45];}else {vErrors.push(err45);}errors++;}}}else {const err46 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err46];}else {vErrors.push(err46);}errors++;}if(errors > 0){const emErrors1 = {"required":{"property":[]}};const templates1 = {required:{}};let emPropParams1;let emParamsErrors1;for(const err47 of vErrors){if((((((err47.keyword !== "errorMessage") && (!err47.emUsed)) && (err47.instancePath === instancePath+"/" + i0+"/condition/allMatch/" + i2)) && (err47.keyword in emErrors1)) && (err47.schemaPath.indexOf("#/definitions/properties/allOf/0/items/allOf/1/definitions/condition") === 0)) && (/^\/[^\/]*$/.test(err47.schemaPath.slice(68)))){emPropParams1 = obj0[err47.keyword];emParamsErrors1 = emErrors1[err47.keyword][err47.params[emPropParams1]];if(emParamsErrors1){emParamsErrors1.push(err47);err47.emUsed = true;}}}for(const key1 in emErrors1){for(const keyProp1 in emErrors1[key1]){emParamsErrors1 = emErrors1[key1][keyProp1];if(emParamsErrors1.length){const tmpl1 = templates1[key1] && templates1[key1][keyProp1];const err48 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors1},message:tmpl1 ? tmpl1() : schema20.errorMessage[key1][keyProp1]};if(vErrors === null){vErrors = [err48];}else {vErrors.push(err48);}errors++;}}}const emErrs5 = [];for(const err49 of vErrors){if(!err49.emUsed){emErrs5.push(err49);}}vErrors = emErrs5;errors = emErrs5.length;}}}else {const err50 = {instancePath:instancePath+"/" + i0+"/condition/allMatch",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/oneOf/1/properties/allMatch/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err50];}else {vErrors.push(err50);}errors++;}}}var _valid2 = _errs44 === errors;if(_valid2 && valid14){valid14 = false;passing0 = [passing0, 1];}else {if(_valid2){valid14 = true;passing0 = 1;}}if(!valid14){const err51 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing0},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err51];}else {vErrors.push(err51);}errors++;}else {errors = _errs25;if(vErrors !== null){if(_errs25){vErrors.length = _errs25;}else {vErrors = null;}}}}}const _errs66 = errors;let valid35 = true;const _errs67 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.type === undefined) && ("type")){const err52 = {};if(vErrors === null){vErrors = [err52];}else {vErrors.push(err52);}errors++;}else {if(data0.type !== undefined){const _errs69 = errors;const _errs70 = errors;if("Number" !== data0.type){const err53 = {};if(vErrors === null){vErrors = [err53];}else {vErrors.push(err53);}errors++;}var valid37 = _errs70 === errors;if(valid37){const err54 = {};if(vErrors === null){vErrors = [err54];}else {vErrors.push(err54);}errors++;}else {errors = _errs69;if(vErrors !== null){if(_errs69){vErrors.length = _errs69;}else {vErrors = null;}}}}}}var _valid5 = _errs67 === errors;errors = _errs66;if(vErrors !== null){if(_errs66){vErrors.length = _errs66;}else {vErrors = null;}}if(_valid5){const _errs71 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.value !== undefined){let data21 = data0.value;if((typeof data21 !== "string") && (typeof data21 !== "boolean")){const err55 = {instancePath:instancePath+"/" + i0+"/value",schemaPath:"#/allOf/0/items/allOf/2/then/properties/value/type",keyword:"type",params:{type: schema18.allOf[0].items.allOf[2].then.properties.value.type},message:"must be string,boolean"};if(vErrors === null){vErrors = [err55];}else {vErrors.push(err55);}errors++;}}}var _valid5 = _errs71 === errors;valid35 = _valid5;}if(!valid35){const err56 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/2/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err56];}else {vErrors.push(err56);}errors++;}const _errs75 = errors;let valid39 = true;const _errs76 = errors;const _errs77 = errors;let valid40 = false;const _errs78 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.type === undefined) && ("type")){const err57 = {};if(vErrors === null){vErrors = [err57];}else {vErrors.push(err57);}errors++;}else {if(data0.type !== undefined){let data22 = data0.type;if(!((data22 === "String") || (data22 === "Text"))){const err58 = {};if(vErrors === null){vErrors = [err58];}else {vErrors.push(err58);}errors++;}}}}var _valid7 = _errs78 === errors;if(_valid7){valid40 = true;}const _errs80 = errors;const _errs81 = errors;const _errs82 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.type === undefined) && ("type")){const err59 = {};if(vErrors === null){vErrors = [err59];}else {vErrors.push(err59);}errors++;}}var valid42 = _errs82 === errors;if(valid42){const err60 = {};if(vErrors === null){vErrors = [err60];}else {vErrors.push(err60);}errors++;}else {errors = _errs81;if(vErrors !== null){if(_errs81){vErrors.length = _errs81;}else {vErrors = null;}}}var _valid7 = _errs80 === errors;if(_valid7 && valid40){valid40 = false;}else {if(_valid7){valid40 = true;}}if(!valid40){const err61 = {};if(vErrors === null){vErrors = [err61];}else {vErrors.push(err61);}errors++;}else {errors = _errs77;if(vErrors !== null){if(_errs77){vErrors.length = _errs77;}else {vErrors = null;}}}var _valid6 = _errs76 === errors;errors = _errs75;if(vErrors !== null){if(_errs75){vErrors.length = _errs75;}else {vErrors = null;}}let ifClause0;if(_valid6){const _errs83 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.placeholder !== undefined){if(typeof data0.placeholder !== "string"){const err62 = {instancePath:instancePath+"/" + i0+"/placeholder",schemaPath:"#/allOf/0/items/allOf/3/then/properties/placeholder/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err62];}else {vErrors.push(err62);}errors++;}}}var _valid6 = _errs83 === errors;valid39 = _valid6;ifClause0 = "then";}else {const _errs86 = errors;const _errs87 = errors;const _errs88 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.placeholder === undefined) && ("placeholder")){const err63 = {};if(vErrors === null){vErrors = [err63];}else {vErrors.push(err63);}errors++;}}var valid44 = _errs88 === errors;if(valid44){const err64 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/3/else/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors === null){vErrors = [err64];}else {vErrors.push(err64);}errors++;}else {errors = _errs87;if(vErrors !== null){if(_errs87){vErrors.length = _errs87;}else {vErrors = null;}}}var _valid6 = _errs86 === errors;valid39 = _valid6;ifClause0 = "else";}if(!valid39){const err65 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/3/if",keyword:"if",params:{failingKeyword: ifClause0},message:"must match \""+ifClause0+"\" schema"};if(vErrors === null){vErrors = [err65];}else {vErrors.push(err65);}errors++;}if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.value !== undefined){let data24 = data0.value;if(((typeof data24 !== "string") && (!(typeof data24 == "number"))) && (typeof data24 !== "boolean")){const err66 = {instancePath:instancePath+"/" + i0+"/value",schemaPath:"#/allOf/0/items/properties/value/type",keyword:"type",params:{type: schema18.allOf[0].items.properties.value.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err66];}else {vErrors.push(err66);}errors++;}}if(data0.description !== undefined){if(typeof data0.description !== "string"){const err67 = {instancePath:instancePath+"/" + i0+"/description",schemaPath:"#/allOf/0/items/properties/description/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err67];}else {vErrors.push(err67);}errors++;}}if(data0.label !== undefined){if(typeof data0.label !== "string"){const err68 = {instancePath:instancePath+"/" + i0+"/label",schemaPath:"#/allOf/0/items/properties/label/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err68];}else {vErrors.push(err68);}errors++;}}if(data0.type !== undefined){if(typeof data0.type !== "string"){const err69 = {instancePath:instancePath+"/" + i0+"/type",schemaPath:"#/allOf/0/items/properties/type/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err69];}else {vErrors.push(err69);}errors++;}}if(data0.editable !== undefined){if(typeof data0.editable !== "boolean"){const err70 = {instancePath:instancePath+"/" + i0+"/editable",schemaPath:"#/allOf/0/items/properties/editable/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err70];}else {vErrors.push(err70);}errors++;}}if(data0.choices !== undefined){let data29 = data0.choices;if(Array.isArray(data29)){const len4 = data29.length;for(let i4=0; i4<len4; i4++){let data30 = data29[i4];if(data30 && typeof data30 == "object" && !Array.isArray(data30)){if(data30.value === undefined){const err71 = {instancePath:instancePath+"/" + i0+"/choices/" + i4,schemaPath:"#/allOf/0/items/properties/choices/items/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err71];}else {vErrors.push(err71);}errors++;}if(data30.name === undefined){const err72 = {instancePath:instancePath+"/" + i0+"/choices/" + i4,schemaPath:"#/allOf/0/items/properties/choices/items/required",keyword:"required",params:{missingProperty: "name"},message:"must have required property '"+"name"+"'"};if(vErrors === null){vErrors = [err72];}else {vErrors.push(err72);}errors++;}if(data30.name !== undefined){if(typeof data30.name !== "string"){const err73 = {instancePath:instancePath+"/" + i0+"/choices/" + i4+"/name",schemaPath:"#/allOf/0/items/properties/choices/items/properties/name/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err73];}else {vErrors.push(err73);}errors++;}}if(data30.value !== undefined){if(typeof data30.value !== "string"){const err74 = {instancePath:instancePath+"/" + i0+"/choices/" + i4+"/value",schemaPath:"#/allOf/0/items/properties/choices/items/properties/value/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err74];}else {vErrors.push(err74);}errors++;}}if(data30.condition !== undefined){if(!(validate17(data30.condition, {instancePath:instancePath+"/" + i0+"/choices/" + i4+"/condition",parentData:data30,parentDataProperty:"condition",rootData}))){vErrors = vErrors === null ? validate17.errors : vErrors.concat(validate17.errors);errors = vErrors.length;}}}else {const err75 = {instancePath:instancePath+"/" + i0+"/choices/" + i4,schemaPath:"#/allOf/0/items/properties/choices/items/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err75];}else {vErrors.push(err75);}errors++;}if(errors > 0){const emErrors2 = {"required":[]};const templates2 = {};for(const err76 of vErrors){if((((((err76.keyword !== "errorMessage") && (!err76.emUsed)) && (err76.instancePath === instancePath+"/" + i0+"/choices/" + i4)) && (err76.keyword in emErrors2)) && (err76.schemaPath.indexOf("#/allOf/0/items/properties/choices/items") === 0)) && (/^\/[^\/]*$/.test(err76.schemaPath.slice(40)))){emErrors2[err76.keyword].push(err76);err76.emUsed = true;}}for(const key2 in emErrors2){if(emErrors2[key2].length){const err77 = {instancePath:instancePath+"/" + i0+"/choices/" + i4,schemaPath:"#/allOf/0/items/properties/choices/items/errorMessage",keyword:"errorMessage",params:{errors: emErrors2[key2]},message:key2 in templates2 ? templates2[key2]() : schema18.allOf[0].items.properties.choices.items.errorMessage[key2]};if(vErrors === null){vErrors = [err77];}else {vErrors.push(err77);}errors++;}}const emErrs6 = [];for(const err78 of vErrors){if(!err78.emUsed){emErrs6.push(err78);}}vErrors = emErrs6;errors = emErrs6.length;}}}else {const err79 = {instancePath:instancePath+"/" + i0+"/choices",schemaPath:"#/allOf/0/items/properties/choices/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err79];}else {vErrors.push(err79);}errors++;}}if(data0.constraints !== undefined){let data34 = data0.constraints;if(data34 && typeof data34 == "object" && !Array.isArray(data34)){if(data34.notEmpty !== undefined){if(typeof data34.notEmpty !== "boolean"){const err80 = {instancePath:instancePath+"/" + i0+"/constraints/notEmpty",schemaPath:"#/allOf/0/items/properties/constraints/properties/notEmpty/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err80];}else {vErrors.push(err80);}errors++;}}if(data34.minLength !== undefined){if(!(typeof data34.minLength == "number")){const err81 = {instancePath:instancePath+"/" + i0+"/constraints/minLength",schemaPath:"#/allOf/0/items/properties/constraints/properties/minLength/type",keyword:"type",params:{type: "number"},message:"must be number"};if(vErrors === null){vErrors = [err81];}else {vErrors.push(err81);}errors++;}}if(data34.maxLength !== undefined){if(!(typeof data34.maxLength == "number")){const err82 = {instancePath:instancePath+"/" + i0+"/constraints/maxLength",schemaPath:"#/allOf/0/items/properties/constraints/properties/maxLength/type",keyword:"type",params:{type: "number"},message:"must be number"};if(vErrors === null){vErrors = [err82];}else {vErrors.push(err82);}errors++;}}if(data34.pattern !== undefined){let data38 = data34.pattern;const _errs117 = errors;let valid51 = false;let passing4 = null;const _errs118 = errors;if(data38 && typeof data38 == "object" && !Array.isArray(data38)){if(data38.value !== undefined){if(typeof data38.value !== "string"){const err83 = {instancePath:instancePath+"/" + i0+"/constraints/pattern/value",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf/0/properties/value/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err83];}else {vErrors.push(err83);}errors++;}}if(data38.message !== undefined){if(typeof data38.message !== "string"){const err84 = {instancePath:instancePath+"/" + i0+"/constraints/pattern/message",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf/0/properties/message/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err84];}else {vErrors.push(err84);}errors++;}}}else {const err85 = {instancePath:instancePath+"/" + i0+"/constraints/pattern",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf/0/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err85];}else {vErrors.push(err85);}errors++;}var _valid8 = _errs118 === errors;if(_valid8){valid51 = true;passing4 = 0;}const _errs124 = errors;if(typeof data38 !== "string"){const err86 = {instancePath:instancePath+"/" + i0+"/constraints/pattern",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf/1/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err86];}else {vErrors.push(err86);}errors++;}var _valid8 = _errs124 === errors;if(_valid8 && valid51){valid51 = false;passing4 = [passing4, 1];}else {if(_valid8){valid51 = true;passing4 = 1;}}if(!valid51){const err87 = {instancePath:instancePath+"/" + i0+"/constraints/pattern",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf",keyword:"oneOf",params:{passingSchemas: passing4},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err87];}else {vErrors.push(err87);}errors++;}else {errors = _errs117;if(vErrors !== null){if(_errs117){vErrors.length = _errs117;}else {vErrors = null;}}}}}else {const err88 = {instancePath:instancePath+"/" + i0+"/constraints",schemaPath:"#/allOf/0/items/properties/constraints/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err88];}else {vErrors.push(err88);}errors++;}}if(data0.group !== undefined){if(typeof data0.group !== "string"){const err89 = {instancePath:instancePath+"/" + i0+"/group",schemaPath:"#/allOf/0/items/properties/group/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err89];}else {vErrors.push(err89);}errors++;}}}else {const err90 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err90];}else {vErrors.push(err90);}errors++;}}}else {const err91 = {instancePath,schemaPath:"#/allOf/0/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err91];}else {vErrors.push(err91);}errors++;}if(Array.isArray(data)){const len5 = data.length;for(let i5=0; i5<len5; i5++){let data42 = data[i5];const _errs133 = errors;let valid56 = true;const _errs134 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.binding === undefined) && ("binding")){const err92 = {};if(vErrors === null){vErrors = [err92];}else {vErrors.push(err92);}errors++;}else {if(data42.binding !== undefined){let data43 = data42.binding;if(data43 && typeof data43 == "object" && !Array.isArray(data43)){if((data43.type === undefined) && ("type")){const err93 = {};if(vErrors === null){vErrors = [err93];}else {vErrors.push(err93);}errors++;}else {if(data43.type !== undefined){if("property" !== data43.type){const err94 = {};if(vErrors === null){vErrors = [err94];}else {vErrors.push(err94);}errors++;}}}}}}}var _valid9 = _errs134 === errors;errors = _errs133;if(vErrors !== null){if(_errs133){vErrors.length = _errs133;}else {vErrors = null;}}if(_valid9){const _errs137 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.type !== undefined){let data45 = data42.type;if(!((((((data45 === "String") || (data45 === "Text")) || (data45 === "Hidden")) || (data45 === "Dropdown")) || (data45 === "Boolean")) || (data45 === "Number"))){const err95 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/0/then/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[0].then.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err95];}else {vErrors.push(err95);}errors++;}if(errors > 0){const emErrs7 = [];for(const err96 of vErrors){if(((((err96.keyword !== "errorMessage") && (!err96.emUsed)) && ((err96.instancePath === instancePath+"/" + i5+"/type") || ((err96.instancePath.indexOf(instancePath+"/" + i5+"/type") === 0) && (err96.instancePath[instancePath+"/" + i5+"/type".length] === "/")))) && (err96.schemaPath.indexOf("#/allOf/1/items/allOf/0/then/properties/type") === 0)) && (err96.schemaPath["#/allOf/1/items/allOf/0/then/properties/type".length] === "/")){emErrs7.push(err96);err96.emUsed = true;}}if(emErrs7.length){const err97 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/0/then/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs7},message:"invalid property type " + JSON.stringify(data45) + " for binding type \"property\"; must be any of { String, Text, Hidden, Dropdown, Boolean, Number }"};if(vErrors === null){vErrors = [err97];}else {vErrors.push(err97);}errors++;}const emErrs8 = [];for(const err98 of vErrors){if(!err98.emUsed){emErrs8.push(err98);}}vErrors = emErrs8;errors = emErrs8.length;}}}var _valid9 = _errs137 === errors;valid56 = _valid9;}if(!valid56){const err99 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err99];}else {vErrors.push(err99);}errors++;}const _errs140 = errors;let valid60 = true;const _errs141 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.binding === undefined) && ("binding")){const err100 = {};if(vErrors === null){vErrors = [err100];}else {vErrors.push(err100);}errors++;}else {if(data42.binding !== undefined){let data46 = data42.binding;if(data46 && typeof data46 == "object" && !Array.isArray(data46)){if((data46.type === undefined) && ("type")){const err101 = {};if(vErrors === null){vErrors = [err101];}else {vErrors.push(err101);}errors++;}else {if(data46.type !== undefined){let data47 = data46.type;if(!((((((((((data47 === "zeebe:input") || (data47 === "zeebe:output")) || (data47 === "zeebe:property")) || (data47 === "zeebe:taskHeader")) || (data47 === "zeebe:taskDefinition:type")) || (data47 === "bpmn:Message#property")) || (data47 === "bpmn:Message#zeebe:subscription#property")) || (data47 === "zeebe:taskDefinition")) || (data47 === "zeebe:calledElement")) || (data47 === "zeebe:linkedResource"))){const err102 = {};if(vErrors === null){vErrors = [err102];}else {vErrors.push(err102);}errors++;}}}}}}}var _valid10 = _errs141 === errors;errors = _errs140;if(vErrors !== null){if(_errs140){vErrors.length = _errs140;}else {vErrors = null;}}if(_valid10){const _errs144 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.type !== undefined){let data48 = data42.type;if(!((((((data48 === "String") || (data48 === "Text")) || (data48 === "Hidden")) || (data48 === "Dropdown")) || (data48 === "Boolean")) || (data48 === "Number"))){const err103 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/1/then/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[1].then.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err103];}else {vErrors.push(err103);}errors++;}if(errors > 0){const emErrs9 = [];for(const err104 of vErrors){if(((((err104.keyword !== "errorMessage") && (!err104.emUsed)) && ((err104.instancePath === instancePath+"/" + i5+"/type") || ((err104.instancePath.indexOf(instancePath+"/" + i5+"/type") === 0) && (err104.instancePath[instancePath+"/" + i5+"/type".length] === "/")))) && (err104.schemaPath.indexOf("#/allOf/1/items/allOf/1/then/properties/type") === 0)) && (err104.schemaPath["#/allOf/1/items/allOf/1/then/properties/type".length] === "/")){emErrs9.push(err104);err104.emUsed = true;}}if(emErrs9.length){const err105 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/1/then/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs9},message:"invalid property type " + JSON.stringify(data48) + " for binding type " + JSON.stringify(data42 && data42.binding && data42.binding.type) + "; must be any of { String, Text, Hidden, Dropdown, Boolean, Number }"};if(vErrors === null){vErrors = [err105];}else {vErrors.push(err105);}errors++;}const emErrs10 = [];for(const err106 of vErrors){if(!err106.emUsed){emErrs10.push(err106);}}vErrors = emErrs10;errors = emErrs10.length;}}}var _valid10 = _errs144 === errors;valid60 = _valid10;}if(!valid60){const err107 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/1/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err107];}else {vErrors.push(err107);}errors++;}const _errs147 = errors;let valid64 = true;const _errs148 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.optional === undefined) && ("optional")){const err108 = {};if(vErrors === null){vErrors = [err108];}else {vErrors.push(err108);}errors++;}else {if(data42.optional !== undefined){if(true !== data42.optional){const err109 = {};if(vErrors === null){vErrors = [err109];}else {vErrors.push(err109);}errors++;}}}}var _valid11 = _errs148 === errors;errors = _errs147;if(vErrors !== null){if(_errs147){vErrors.length = _errs147;}else {vErrors = null;}}if(_valid11){const _errs150 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.binding !== undefined){let data50 = data42.binding;if(data50 && typeof data50 == "object" && !Array.isArray(data50)){if(data50.type === undefined){const err110 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/allOf/2/then/properties/binding/required",keyword:"required",params:{missingProperty: "type"},message:"must have required property '"+"type"+"'"};if(vErrors === null){vErrors = [err110];}else {vErrors.push(err110);}errors++;}if(data50.type !== undefined){let data51 = data50.type;if(!((((data51 === "zeebe:input") || (data51 === "zeebe:output")) || (data51 === "zeebe:property")) || (data51 === "zeebe:taskHeader"))){const err111 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/allOf/2/then/properties/binding/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[2].then.properties.binding.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err111];}else {vErrors.push(err111);}errors++;}if(errors > 0){const emErrs11 = [];for(const err112 of vErrors){if(((((err112.keyword !== "errorMessage") && (!err112.emUsed)) && ((err112.instancePath === instancePath+"/" + i5+"/binding/type") || ((err112.instancePath.indexOf(instancePath+"/" + i5+"/binding/type") === 0) && (err112.instancePath[instancePath+"/" + i5+"/binding/type".length] === "/")))) && (err112.schemaPath.indexOf("#/allOf/1/items/allOf/2/then/properties/binding/properties/type") === 0)) && (err112.schemaPath["#/allOf/1/items/allOf/2/then/properties/binding/properties/type".length] === "/")){emErrs11.push(err112);err112.emUsed = true;}}if(emErrs11.length){const err113 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/allOf/2/then/properties/binding/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs11},message:"optional is not supported for binding type " + JSON.stringify(data51) + "; must be any of { zeebe:input, zeebe:output, zeebe:property, zeebe:taskHeader }"};if(vErrors === null){vErrors = [err113];}else {vErrors.push(err113);}errors++;}const emErrs12 = [];for(const err114 of vErrors){if(!err114.emUsed){emErrs12.push(err114);}}vErrors = emErrs12;errors = emErrs12.length;}}}}}var _valid11 = _errs150 === errors;valid64 = _valid11;}if(!valid64){const err115 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/2/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err115];}else {vErrors.push(err115);}errors++;}const _errs154 = errors;let valid68 = true;const _errs155 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.optional === undefined) && ("optional")){const err116 = {};if(vErrors === null){vErrors = [err116];}else {vErrors.push(err116);}errors++;}else {if(data42.optional !== undefined){if(true !== data42.optional){const err117 = {};if(vErrors === null){vErrors = [err117];}else {vErrors.push(err117);}errors++;}}}}var _valid12 = _errs155 === errors;errors = _errs154;if(vErrors !== null){if(_errs154){vErrors.length = _errs154;}else {vErrors = null;}}if(_valid12){const _errs157 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.constraints !== undefined){let data53 = data42.constraints;if(data53 && typeof data53 == "object" && !Array.isArray(data53)){if(data53.notEmpty === undefined){const err118 = {instancePath:instancePath+"/" + i5+"/constraints",schemaPath:"#/allOf/1/items/allOf/3/then/properties/constraints/required",keyword:"required",params:{missingProperty: "notEmpty"},message:"must have required property '"+"notEmpty"+"'"};if(vErrors === null){vErrors = [err118];}else {vErrors.push(err118);}errors++;}if(data53.notEmpty !== undefined){if(false !== data53.notEmpty){const err119 = {instancePath:instancePath+"/" + i5+"/constraints/notEmpty",schemaPath:"#/allOf/1/items/allOf/3/then/properties/constraints/properties/notEmpty/const",keyword:"const",params:{allowedValue: false},message:"must be equal to constant"};if(vErrors === null){vErrors = [err119];}else {vErrors.push(err119);}errors++;}if(errors > 0){const emErrs13 = [];for(const err120 of vErrors){if(((((err120.keyword !== "errorMessage") && (!err120.emUsed)) && ((err120.instancePath === instancePath+"/" + i5+"/constraints/notEmpty") || ((err120.instancePath.indexOf(instancePath+"/" + i5+"/constraints/notEmpty") === 0) && (err120.instancePath[instancePath+"/" + i5+"/constraints/notEmpty".length] === "/")))) && (err120.schemaPath.indexOf("#/allOf/1/items/allOf/3/then/properties/constraints/properties/notEmpty") === 0)) && (err120.schemaPath["#/allOf/1/items/allOf/3/then/properties/constraints/properties/notEmpty".length] === "/")){emErrs13.push(err120);err120.emUsed = true;}}if(emErrs13.length){const err121 = {instancePath:instancePath+"/" + i5+"/constraints/notEmpty",schemaPath:"#/allOf/1/items/allOf/3/then/properties/constraints/properties/notEmpty/errorMessage",keyword:"errorMessage",params:{errors: emErrs13},message:"optional is not allowed for truthy \"notEmpty\" constraint"};if(vErrors === null){vErrors = [err121];}else {vErrors.push(err121);}errors++;}const emErrs14 = [];for(const err122 of vErrors){if(!err122.emUsed){emErrs14.push(err122);}}vErrors = emErrs14;errors = emErrs14.length;}}}}}var _valid12 = _errs157 === errors;valid68 = _valid12;}if(!valid68){const err123 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/3/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err123];}else {vErrors.push(err123);}errors++;}const _errs161 = errors;let valid72 = true;const _errs162 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.feel === undefined) && ("feel")){const err124 = {};if(vErrors === null){vErrors = [err124];}else {vErrors.push(err124);}errors++;}else {if(data42.feel !== undefined){const _errs164 = errors;const _errs165 = errors;if(null !== data42.feel){const err125 = {};if(vErrors === null){vErrors = [err125];}else {vErrors.push(err125);}errors++;}var valid74 = _errs165 === errors;if(valid74){const err126 = {};if(vErrors === null){vErrors = [err126];}else {vErrors.push(err126);}errors++;}else {errors = _errs164;if(vErrors !== null){if(_errs164){vErrors.length = _errs164;}else {vErrors = null;}}}}}}var _valid13 = _errs162 === errors;errors = _errs161;if(vErrors !== null){if(_errs161){vErrors.length = _errs161;}else {vErrors = null;}}if(_valid13){const _errs166 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.type === undefined){const err127 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/4/then/required",keyword:"required",params:{missingProperty: "type"},message:"must have required property '"+"type"+"'"};if(vErrors === null){vErrors = [err127];}else {vErrors.push(err127);}errors++;}if(data42.type !== undefined){let data56 = data42.type;if(!((((data56 === "String") || (data56 === "Text")) || (data56 === "Number")) || (data56 === "Boolean"))){const err128 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/4/then/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[4].then.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err128];}else {vErrors.push(err128);}errors++;}if(errors > 0){const emErrs15 = [];for(const err129 of vErrors){if(((((err129.keyword !== "errorMessage") && (!err129.emUsed)) && ((err129.instancePath === instancePath+"/" + i5+"/type") || ((err129.instancePath.indexOf(instancePath+"/" + i5+"/type") === 0) && (err129.instancePath[instancePath+"/" + i5+"/type".length] === "/")))) && (err129.schemaPath.indexOf("#/allOf/1/items/allOf/4/then/properties/type") === 0)) && (err129.schemaPath["#/allOf/1/items/allOf/4/then/properties/type".length] === "/")){emErrs15.push(err129);err129.emUsed = true;}}if(emErrs15.length){const err130 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/4/then/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs15},message:"feel is only supported for \"String\", \"Text\", \"Number\" and \"Boolean\" type"};if(vErrors === null){vErrors = [err130];}else {vErrors.push(err130);}errors++;}const emErrs16 = [];for(const err131 of vErrors){if(!err131.emUsed){emErrs16.push(err131);}}vErrors = emErrs16;errors = emErrs16.length;}}}var _valid13 = _errs166 === errors;valid72 = _valid13;}if(!valid72){const err132 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/4/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err132];}else {vErrors.push(err132);}errors++;}const _errs169 = errors;let valid76 = true;const _errs170 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.language === undefined) && ("language")){const err133 = {};if(vErrors === null){vErrors = [err133];}else {vErrors.push(err133);}errors++;}else {if(data42.language !== undefined){const _errs172 = errors;const _errs173 = errors;if(null !== data42.language){const err134 = {};if(vErrors === null){vErrors = [err134];}else {vErrors.push(err134);}errors++;}var valid78 = _errs173 === errors;if(valid78){const err135 = {};if(vErrors === null){vErrors = [err135];}else {vErrors.push(err135);}errors++;}else {errors = _errs172;if(vErrors !== null){if(_errs172){vErrors.length = _errs172;}else {vErrors = null;}}}}}}var _valid14 = _errs170 === errors;errors = _errs169;if(vErrors !== null){if(_errs169){vErrors.length = _errs169;}else {vErrors = null;}}if(_valid14){const _errs174 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.type !== undefined){if(!(data42.type === "Text")){const err136 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/5/then/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[5].then.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err136];}else {vErrors.push(err136);}errors++;}if(errors > 0){const emErrs17 = [];for(const err137 of vErrors){if(((((err137.keyword !== "errorMessage") && (!err137.emUsed)) && ((err137.instancePath === instancePath+"/" + i5+"/type") || ((err137.instancePath.indexOf(instancePath+"/" + i5+"/type") === 0) && (err137.instancePath[instancePath+"/" + i5+"/type".length] === "/")))) && (err137.schemaPath.indexOf("#/allOf/1/items/allOf/5/then/properties/type") === 0)) && (err137.schemaPath["#/allOf/1/items/allOf/5/then/properties/type".length] === "/")){emErrs17.push(err137);err137.emUsed = true;}}if(emErrs17.length){const err138 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/5/then/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs17},message:"language is only supported for \"Text\" type"};if(vErrors === null){vErrors = [err138];}else {vErrors.push(err138);}errors++;}const emErrs18 = [];for(const err139 of vErrors){if(!err139.emUsed){emErrs18.push(err139);}}vErrors = emErrs18;errors = emErrs18.length;}}}var _valid14 = _errs174 === errors;valid76 = _valid14;}if(!valid76){const err140 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/5/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err140];}else {vErrors.push(err140);}errors++;}const _errs177 = errors;let valid80 = true;const _errs178 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.value === undefined) && ("value")){const err141 = {};if(vErrors === null){vErrors = [err141];}else {vErrors.push(err141);}errors++;}}var _valid15 = _errs178 === errors;errors = _errs177;if(vErrors !== null){if(_errs177){vErrors.length = _errs177;}else {vErrors = null;}}if(_valid15){const _errs179 = errors;const _errs180 = errors;const _errs181 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.generatedValue === undefined) && ("generatedValue")){const err142 = {};if(vErrors === null){vErrors = [err142];}else {vErrors.push(err142);}errors++;}}var valid81 = _errs181 === errors;if(valid81){const err143 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/6/then/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors === null){vErrors = [err143];}else {vErrors.push(err143);}errors++;}else {errors = _errs180;if(vErrors !== null){if(_errs180){vErrors.length = _errs180;}else {vErrors = null;}}}var _valid15 = _errs179 === errors;valid80 = _valid15;}if(!valid80){const err144 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/6/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err144];}else {vErrors.push(err144);}errors++;}const _errs183 = errors;let valid82 = true;const _errs184 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.type === undefined) && ("type")){const err145 = {};if(vErrors === null){vErrors = [err145];}else {vErrors.push(err145);}errors++;}else {if(data42.type !== undefined){let data59 = data42.type;if(!((data59 === "Boolean") || (data59 === "Dropdown"))){const err146 = {};if(vErrors === null){vErrors = [err146];}else {vErrors.push(err146);}errors++;}}}}var _valid16 = _errs184 === errors;errors = _errs183;if(vErrors !== null){if(_errs183){vErrors.length = _errs183;}else {vErrors = null;}}if(_valid16){const _errs186 = errors;const _errs187 = errors;const _errs188 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.generatedValue === undefined) && ("generatedValue")){const err147 = {};if(vErrors === null){vErrors = [err147];}else {vErrors.push(err147);}errors++;}}var valid84 = _errs188 === errors;if(valid84){const err148 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/7/then/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors === null){vErrors = [err148];}else {vErrors.push(err148);}errors++;}else {errors = _errs187;if(vErrors !== null){if(_errs187){vErrors.length = _errs187;}else {vErrors = null;}}}var _valid16 = _errs186 === errors;valid82 = _valid16;}if(!valid82){const err149 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/7/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err149];}else {vErrors.push(err149);}errors++;}const _errs190 = errors;let valid85 = true;const _errs191 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.feel === undefined) && ("feel")){const err150 = {};if(vErrors === null){vErrors = [err150];}else {vErrors.push(err150);}errors++;}else {if(data42.type !== undefined){let data60 = data42.type;if(!((data60 === "String") || (data60 === "Text"))){const err151 = {};if(vErrors === null){vErrors = [err151];}else {vErrors.push(err151);}errors++;}}}}var _valid17 = _errs191 === errors;errors = _errs190;if(vErrors !== null){if(_errs190){vErrors.length = _errs190;}else {vErrors = null;}}if(_valid17){const _errs193 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.feel !== undefined){let data61 = data42.feel;if(!((data61 === "optional") || (data61 === "required"))){const err152 = {instancePath:instancePath+"/" + i5+"/feel",schemaPath:"#/allOf/1/items/allOf/8/then/properties/feel/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[8].then.properties.feel.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err152];}else {vErrors.push(err152);}errors++;}}}var _valid17 = _errs193 === errors;valid85 = _valid17;}if(!valid85){const err153 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/8/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err153];}else {vErrors.push(err153);}errors++;}const _errs196 = errors;let valid88 = true;const _errs197 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.feel === undefined) && ("feel")){const err154 = {};if(vErrors === null){vErrors = [err154];}else {vErrors.push(err154);}errors++;}else {if(data42.feel !== undefined){if("required" !== data42.feel){const err155 = {};if(vErrors === null){vErrors = [err155];}else {vErrors.push(err155);}errors++;}}}}var _valid18 = _errs197 === errors;errors = _errs196;if(vErrors !== null){if(_errs196){vErrors.length = _errs196;}else {vErrors = null;}}if(_valid18){const _errs199 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.value !== undefined){if(typeof data42.value !== "string"){const err156 = {instancePath:instancePath+"/" + i5+"/value",schemaPath:"#/allOf/1/items/allOf/9/then/properties/value/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err156];}else {vErrors.push(err156);}errors++;}}}var _valid18 = _errs199 === errors;valid88 = _valid18;}if(!valid88){const err157 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/9/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err157];}else {vErrors.push(err157);}errors++;}const _errs203 = errors;let valid91 = true;const _errs204 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.binding === undefined) && ("binding")){const err158 = {};if(vErrors === null){vErrors = [err158];}else {vErrors.push(err158);}errors++;}else {if(data42.binding !== undefined){let data64 = data42.binding;if(data64 && typeof data64 == "object" && !Array.isArray(data64)){if((data64.type === undefined) && ("type")){const err159 = {};if(vErrors === null){vErrors = [err159];}else {vErrors.push(err159);}errors++;}else {if(data64.type !== undefined){if("zeebe:linkedResource" !== data64.type){const err160 = {};if(vErrors === null){vErrors = [err160];}else {vErrors.push(err160);}errors++;}}}}}}}var _valid19 = _errs204 === errors;errors = _errs203;if(vErrors !== null){if(_errs203){vErrors.length = _errs203;}else {vErrors = null;}}if(_valid19){const _errs207 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.binding !== undefined){let data66 = data42.binding;if(data66 && typeof data66 == "object" && !Array.isArray(data66)){if(data66.linkName === undefined){const err161 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/required",keyword:"required",params:{missingProperty: "linkName"},message:"must have required property '"+"linkName"+"'"};if(vErrors === null){vErrors = [err161];}else {vErrors.push(err161);}errors++;}if(data66.property === undefined){const err162 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err162];}else {vErrors.push(err162);}errors++;}if(data66.linkName !== undefined){if(typeof data66.linkName !== "string"){const err163 = {instancePath:instancePath+"/" + i5+"/binding/linkName",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/properties/linkName/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err163];}else {vErrors.push(err163);}errors++;}}if(data66.property !== undefined){let data68 = data66.property;if(!((((data68 === "resourceId") || (data68 === "resourceType")) || (data68 === "bindingType")) || (data68 === "versionTag"))){const err164 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/properties/property/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[10].then.properties.binding.properties.property.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err164];}else {vErrors.push(err164);}errors++;}if(errors > 0){const emErrs19 = [];for(const err165 of vErrors){if(((((err165.keyword !== "errorMessage") && (!err165.emUsed)) && ((err165.instancePath === instancePath+"/" + i5+"/binding/property") || ((err165.instancePath.indexOf(instancePath+"/" + i5+"/binding/property") === 0) && (err165.instancePath[instancePath+"/" + i5+"/binding/property".length] === "/")))) && (err165.schemaPath.indexOf("#/allOf/1/items/allOf/10/then/properties/binding/properties/property") === 0)) && (err165.schemaPath["#/allOf/1/items/allOf/10/then/properties/binding/properties/property".length] === "/")){emErrs19.push(err165);err165.emUsed = true;}}if(emErrs19.length){const err166 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/properties/property/errorMessage",keyword:"errorMessage",params:{errors: emErrs19},message:"invalid binding.property " + JSON.stringify(data68) + "; must be any of { resourceId, resourceType, bindingType, versionTag }"};if(vErrors === null){vErrors = [err166];}else {vErrors.push(err166);}errors++;}const emErrs20 = [];for(const err167 of vErrors){if(!err167.emUsed){emErrs20.push(err167);}}vErrors = emErrs20;errors = emErrs20.length;}}}}}var _valid19 = _errs207 === errors;valid91 = _valid19;}if(!valid91){const err168 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/10/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err168];}else {vErrors.push(err168);}errors++;}const _errs214 = errors;let valid97 = true;const _errs215 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(((data42.binding === undefined) && ("binding")) || ((data42.type === undefined) && ("type"))){const err169 = {};if(vErrors === null){vErrors = [err169];}else {vErrors.push(err169);}errors++;}else {if(data42.binding !== undefined){let data69 = data42.binding;const _errs216 = errors;if(data69 && typeof data69 == "object" && !Array.isArray(data69)){if((data69.type === undefined) && ("type")){const err170 = {};if(vErrors === null){vErrors = [err170];}else {vErrors.push(err170);}errors++;}else {if(data69.type !== undefined){let data70 = data69.type;if(!((data70 === "zeebe:input") || (data70 === "zeebe:output"))){const err171 = {};if(vErrors === null){vErrors = [err171];}else {vErrors.push(err171);}errors++;}}}}var valid98 = _errs216 === errors;}else {var valid98 = true;}if(valid98){if(data42.type !== undefined){let data71 = data42.type;const _errs218 = errors;if(!((data71 === "Boolean") || (data71 === "Number"))){const err172 = {};if(vErrors === null){vErrors = [err172];}else {vErrors.push(err172);}errors++;}var valid98 = _errs218 === errors;}else {var valid98 = true;}}}}var _valid20 = _errs215 === errors;errors = _errs214;if(vErrors !== null){if(_errs214){vErrors.length = _errs214;}else {vErrors = null;}}if(_valid20){const _errs219 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.feel === undefined){const err173 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/11/allOf/0/then/required",keyword:"required",params:{missingProperty: "feel"},message:"must have required property '"+"feel"+"'"};if(vErrors === null){vErrors = [err173];}else {vErrors.push(err173);}errors++;}if(data42.feel !== undefined){let data72 = data42.feel;if(!((data72 === "optional") || (data72 === "static"))){const err174 = {instancePath:instancePath+"/" + i5+"/feel",schemaPath:"#/allOf/1/items/allOf/11/allOf/0/then/properties/feel/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[11].allOf[0].then.properties.feel.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err174];}else {vErrors.push(err174);}errors++;}}}var _valid20 = _errs219 === errors;valid97 = _valid20;}if(!valid97){const err175 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/11/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err175];}else {vErrors.push(err175);}errors++;}if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.binding === undefined){const err176 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/required",keyword:"required",params:{missingProperty: "binding"},message:"must have required property '"+"binding"+"'"};if(vErrors === null){vErrors = [err176];}else {vErrors.push(err176);}errors++;}if(data42.binding !== undefined){let data73 = data42.binding;const _errs224 = errors;let valid103 = true;const _errs225 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if((data73.type === undefined) && ("type")){const err177 = {};if(vErrors === null){vErrors = [err177];}else {vErrors.push(err177);}errors++;}else {if(data73.type !== undefined){let data74 = data73.type;if(!(((((data74 === "property") || (data74 === "zeebe:property")) || (data74 === "zeebe:input")) || (data74 === "bpmn:Message#property")) || (data74 === "bpmn:Message#zeebe:subscription#property"))){const err178 = {};if(vErrors === null){vErrors = [err178];}else {vErrors.push(err178);}errors++;}}}}var _valid21 = _errs225 === errors;errors = _errs224;if(vErrors !== null){if(_errs224){vErrors.length = _errs224;}else {vErrors = null;}}if(_valid21){const _errs227 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if(data73.name === undefined){const err179 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/0/then/required",keyword:"required",params:{missingProperty: "name"},message:"must have required property '"+"name"+"'"};if(vErrors === null){vErrors = [err179];}else {vErrors.push(err179);}errors++;}}if(errors > 0){const emErrs21 = [];for(const err180 of vErrors){if(((((err180.keyword !== "errorMessage") && (!err180.emUsed)) && ((err180.instancePath === instancePath+"/" + i5+"/binding") || ((err180.instancePath.indexOf(instancePath+"/" + i5+"/binding") === 0) && (err180.instancePath[instancePath+"/" + i5+"/binding".length] === "/")))) && (err180.schemaPath.indexOf("#/allOf/1/items/properties/binding/allOf/0/then") === 0)) && (err180.schemaPath["#/allOf/1/items/properties/binding/allOf/0/then".length] === "/")){emErrs21.push(err180);err180.emUsed = true;}}if(emErrs21.length){const err181 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/0/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs21},message:"property.binding " + JSON.stringify(data73 && data73.type) + " requires name"};if(vErrors === null){vErrors = [err181];}else {vErrors.push(err181);}errors++;}const emErrs22 = [];for(const err182 of vErrors){if(!err182.emUsed){emErrs22.push(err182);}}vErrors = emErrs22;errors = emErrs22.length;}var _valid21 = _errs227 === errors;valid103 = _valid21;}if(!valid103){const err183 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err183];}else {vErrors.push(err183);}errors++;}const _errs229 = errors;let valid105 = true;const _errs230 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if((data73.type === undefined) && ("type")){const err184 = {};if(vErrors === null){vErrors = [err184];}else {vErrors.push(err184);}errors++;}else {if(data73.type !== undefined){if("zeebe:output" !== data73.type){const err185 = {};if(vErrors === null){vErrors = [err185];}else {vErrors.push(err185);}errors++;}}}}var _valid22 = _errs230 === errors;errors = _errs229;if(vErrors !== null){if(_errs229){vErrors.length = _errs229;}else {vErrors = null;}}if(_valid22){const _errs232 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if(data73.source === undefined){const err186 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/1/then/required",keyword:"required",params:{missingProperty: "source"},message:"must have required property '"+"source"+"'"};if(vErrors === null){vErrors = [err186];}else {vErrors.push(err186);}errors++;}}if(errors > 0){const emErrs23 = [];for(const err187 of vErrors){if(((((err187.keyword !== "errorMessage") && (!err187.emUsed)) && ((err187.instancePath === instancePath+"/" + i5+"/binding") || ((err187.instancePath.indexOf(instancePath+"/" + i5+"/binding") === 0) && (err187.instancePath[instancePath+"/" + i5+"/binding".length] === "/")))) && (err187.schemaPath.indexOf("#/allOf/1/items/properties/binding/allOf/1/then") === 0)) && (err187.schemaPath["#/allOf/1/items/properties/binding/allOf/1/then".length] === "/")){emErrs23.push(err187);err187.emUsed = true;}}if(emErrs23.length){const err188 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/1/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs23},message:"property.binding " + JSON.stringify(data73 && data73.type) + " requires source"};if(vErrors === null){vErrors = [err188];}else {vErrors.push(err188);}errors++;}const emErrs24 = [];for(const err189 of vErrors){if(!err189.emUsed){emErrs24.push(err189);}}vErrors = emErrs24;errors = emErrs24.length;}var _valid22 = _errs232 === errors;valid105 = _valid22;}if(!valid105){const err190 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/1/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err190];}else {vErrors.push(err190);}errors++;}const _errs234 = errors;let valid107 = true;const _errs235 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if((data73.type === undefined) && ("type")){const err191 = {};if(vErrors === null){vErrors = [err191];}else {vErrors.push(err191);}errors++;}else {if(data73.type !== undefined){if("zeebe:taskHeader" !== data73.type){const err192 = {};if(vErrors === null){vErrors = [err192];}else {vErrors.push(err192);}errors++;}}}}var _valid23 = _errs235 === errors;errors = _errs234;if(vErrors !== null){if(_errs234){vErrors.length = _errs234;}else {vErrors = null;}}if(_valid23){const _errs237 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if(data73.key === undefined){const err193 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/2/then/required",keyword:"required",params:{missingProperty: "key"},message:"must have required property '"+"key"+"'"};if(vErrors === null){vErrors = [err193];}else {vErrors.push(err193);}errors++;}}if(errors > 0){const emErrs25 = [];for(const err194 of vErrors){if(((((err194.keyword !== "errorMessage") && (!err194.emUsed)) && ((err194.instancePath === instancePath+"/" + i5+"/binding") || ((err194.instancePath.indexOf(instancePath+"/" + i5+"/binding") === 0) && (err194.instancePath[instancePath+"/" + i5+"/binding".length] === "/")))) && (err194.schemaPath.indexOf("#/allOf/1/items/properties/binding/allOf/2/then") === 0)) && (err194.schemaPath["#/allOf/1/items/properties/binding/allOf/2/then".length] === "/")){emErrs25.push(err194);err194.emUsed = true;}}if(emErrs25.length){const err195 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/2/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs25},message:"property.binding " + JSON.stringify(data73 && data73.type) + " requires key"};if(vErrors === null){vErrors = [err195];}else {vErrors.push(err195);}errors++;}const emErrs26 = [];for(const err196 of vErrors){if(!err196.emUsed){emErrs26.push(err196);}}vErrors = emErrs26;errors = emErrs26.length;}var _valid23 = _errs237 === errors;valid107 = _valid23;}if(!valid107){const err197 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/2/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err197];}else {vErrors.push(err197);}errors++;}const _errs239 = errors;let valid109 = true;const _errs240 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if((data73.type === undefined) && ("type")){const err198 = {};if(vErrors === null){vErrors = [err198];}else {vErrors.push(err198);}errors++;}else {if(data73.type !== undefined){if("zeebe:taskDefinition" !== data73.type){const err199 = {};if(vErrors === null){vErrors = [err199];}else {vErrors.push(err199);}errors++;}}}}var _valid24 = _errs240 === errors;errors = _errs239;if(vErrors !== null){if(_errs239){vErrors.length = _errs239;}else {vErrors = null;}}if(_valid24){const _errs242 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if(data73.property === undefined){const err200 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/3/then/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err200];}else {vErrors.push(err200);}errors++;}if(data73.property !== undefined){let data78 = data73.property;if(!((data78 === "type") || (data78 === "retries"))){const err201 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/properties/binding/allOf/3/then/properties/property/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.properties.binding.allOf[3].then.properties.property.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err201];}else {vErrors.push(err201);}errors++;}}}var _valid24 = _errs242 === errors;valid109 = _valid24;}if(!valid109){const err202 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/3/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err202];}else {vErrors.push(err202);}errors++;}const _errs247 = errors;let valid112 = true;const _errs248 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if((data73.type === undefined) && ("type")){const err203 = {};if(vErrors === null){vErrors = [err203];}else {vErrors.push(err203);}errors++;}else {if(data73.type !== undefined){if("zeebe:calledElement" !== data73.type){const err204 = {};if(vErrors === null){vErrors = [err204];}else {vErrors.push(err204);}errors++;}}}}var _valid25 = _errs248 === errors;errors = _errs247;if(vErrors !== null){if(_errs247){vErrors.length = _errs247;}else {vErrors = null;}}if(_valid25){const _errs250 = errors;if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if(data73.property === undefined){const err205 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/5/then/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err205];}else {vErrors.push(err205);}errors++;}if(data73.property !== undefined){if("processId" !== data73.property){const err206 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/properties/binding/allOf/5/then/properties/property/const",keyword:"const",params:{allowedValue: "processId"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err206];}else {vErrors.push(err206);}errors++;}}}var _valid25 = _errs250 === errors;valid112 = _valid25;}if(!valid112){const err207 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/5/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err207];}else {vErrors.push(err207);}errors++;}if(data73 && typeof data73 == "object" && !Array.isArray(data73)){if(data73.type === undefined){const err208 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/required",keyword:"required",params:{missingProperty: "type"},message:"must have required property '"+"type"+"'"};if(vErrors === null){vErrors = [err208];}else {vErrors.push(err208);}errors++;}if(data73.type !== undefined){let data81 = data73.type;if(typeof data81 !== "string"){const err209 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/properties/binding/properties/type/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err209];}else {vErrors.push(err209);}errors++;}if(!(((((((((((data81 === "property") || (data81 === "zeebe:taskDefinition:type")) || (data81 === "zeebe:input")) || (data81 === "zeebe:output")) || (data81 === "zeebe:property")) || (data81 === "zeebe:taskHeader")) || (data81 === "bpmn:Message#property")) || (data81 === "bpmn:Message#zeebe:subscription#property")) || (data81 === "zeebe:taskDefinition")) || (data81 === "zeebe:calledElement")) || (data81 === "zeebe:linkedResource"))){const err210 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/properties/binding/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.properties.binding.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err210];}else {vErrors.push(err210);}errors++;}if(errors > 0){const emErrs27 = [];for(const err211 of vErrors){if(((((err211.keyword !== "errorMessage") && (!err211.emUsed)) && ((err211.instancePath === instancePath+"/" + i5+"/binding/type") || ((err211.instancePath.indexOf(instancePath+"/" + i5+"/binding/type") === 0) && (err211.instancePath[instancePath+"/" + i5+"/binding/type".length] === "/")))) && (err211.schemaPath.indexOf("#/allOf/1/items/properties/binding/properties/type") === 0)) && (err211.schemaPath["#/allOf/1/items/properties/binding/properties/type".length] === "/")){emErrs27.push(err211);err211.emUsed = true;}}if(emErrs27.length){const err212 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/properties/binding/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs27},message:"invalid property.binding type " + JSON.stringify(data81) + "; must be any of { property, zeebe:taskDefinition:type, zeebe:input, zeebe:output, zeebe:property, zeebe:taskHeader, bpmn:Message#property, bpmn:Message#zeebe:subscription#property, zeebe:taskDefinition, zeebe:calledElement, zeebe:linkedResource }"};if(vErrors === null){vErrors = [err212];}else {vErrors.push(err212);}errors++;}const emErrs28 = [];for(const err213 of vErrors){if(!err213.emUsed){emErrs28.push(err213);}}vErrors = emErrs28;errors = emErrs28.length;}}if(data73.name !== undefined){if(typeof data73.name !== "string"){const err214 = {instancePath:instancePath+"/" + i5+"/binding/name",schemaPath:"#/allOf/1/items/properties/binding/properties/name/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err214];}else {vErrors.push(err214);}errors++;}}if(data73.source !== undefined){if(typeof data73.source !== "string"){const err215 = {instancePath:instancePath+"/" + i5+"/binding/source",schemaPath:"#/allOf/1/items/properties/binding/properties/source/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err215];}else {vErrors.push(err215);}errors++;}}if(data73.key !== undefined){if(typeof data73.key !== "string"){const err216 = {instancePath:instancePath+"/" + i5+"/binding/key",schemaPath:"#/allOf/1/items/properties/binding/properties/key/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err216];}else {vErrors.push(err216);}errors++;}}if(data73.property !== undefined){if(typeof data73.property !== "string"){const err217 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/properties/binding/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err217];}else {vErrors.push(err217);}errors++;}}if(data73.linkName !== undefined){if(typeof data73.linkName !== "string"){const err218 = {instancePath:instancePath+"/" + i5+"/binding/linkName",schemaPath:"#/allOf/1/items/properties/binding/properties/linkName/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err218];}else {vErrors.push(err218);}errors++;}}}else {const err219 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err219];}else {vErrors.push(err219);}errors++;}}if(data42.optional !== undefined){if(typeof data42.optional !== "boolean"){const err220 = {instancePath:instancePath+"/" + i5+"/optional",schemaPath:"#/allOf/1/items/properties/optional/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err220];}else {vErrors.push(err220);}errors++;}}if(data42.feel !== undefined){let data88 = data42.feel;if(typeof data88 !== "string"){const err221 = {instancePath:instancePath+"/" + i5+"/feel",schemaPath:"#/allOf/1/items/properties/feel/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err221];}else {vErrors.push(err221);}errors++;}if(!(((data88 === "optional") || (data88 === "required")) || (data88 === "static"))){const err222 = {instancePath:instancePath+"/" + i5+"/feel",schemaPath:"#/allOf/1/items/properties/feel/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.properties.feel.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err222];}else {vErrors.push(err222);}errors++;}}if(data42.language !== undefined){if(typeof data42.language !== "string"){const err223 = {instancePath:instancePath+"/" + i5+"/language",schemaPath:"#/allOf/1/items/properties/language/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err223];}else {vErrors.push(err223);}errors++;}}if(data42.generatedValue !== undefined){let data90 = data42.generatedValue;if(data90 && typeof data90 == "object" && !Array.isArray(data90)){if(data90.type === undefined){const err224 = {instancePath:instancePath+"/" + i5+"/generatedValue",schemaPath:"#/allOf/1/items/properties/generatedValue/required",keyword:"required",params:{missingProperty: "type"},message:"must have required property '"+"type"+"'"};if(vErrors === null){vErrors = [err224];}else {vErrors.push(err224);}errors++;}if(data90.type !== undefined){if("uuid" !== data90.type){const err225 = {instancePath:instancePath+"/" + i5+"/generatedValue/type",schemaPath:"#/allOf/1/items/properties/generatedValue/properties/type/const",keyword:"const",params:{allowedValue: "uuid"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err225];}else {vErrors.push(err225);}errors++;}}}else {const err226 = {instancePath:instancePath+"/" + i5+"/generatedValue",schemaPath:"#/allOf/1/items/properties/generatedValue/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err226];}else {vErrors.push(err226);}errors++;}}if(data42.tooltip !== undefined){if(typeof data42.tooltip !== "string"){const err227 = {instancePath:instancePath+"/" + i5+"/tooltip",schemaPath:"#/allOf/1/items/properties/tooltip/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err227];}else {vErrors.push(err227);}errors++;}}}else {const err228 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err228];}else {vErrors.push(err228);}errors++;}if(errors > 0){const emErrors3 = {"required":{"binding":[]}};const templates3 = {required:{binding:function(){return "missing binding for property \"" + JSON.stringify(i5) + "\""}}};let emPropParams2;let emParamsErrors2;for(const err229 of vErrors){if((((((err229.keyword !== "errorMessage") && (!err229.emUsed)) && (err229.instancePath === instancePath+"/" + i5)) && (err229.keyword in emErrors3)) && (err229.schemaPath.indexOf("#/allOf/1/items") === 0)) && (/^\/[^\/]*$/.test(err229.schemaPath.slice(15)))){emPropParams2 = obj0[err229.keyword];emParamsErrors2 = emErrors3[err229.keyword][err229.params[emPropParams2]];if(emParamsErrors2){emParamsErrors2.push(err229);err229.emUsed = true;}}}for(const key3 in emErrors3){for(const keyProp2 in emErrors3[key3]){emParamsErrors2 = emErrors3[key3][keyProp2];if(emParamsErrors2.length){const tmpl2 = templates3[key3] && templates3[key3][keyProp2];const err230 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors2},message:tmpl2 ? tmpl2() : schema18.allOf[1].items.errorMessage[key3][keyProp2]};if(vErrors === null){vErrors = [err230];}else {vErrors.push(err230);}errors++;}}}const emErrs29 = [];for(const err231 of vErrors){if(!err231.emUsed){emErrs29.push(err231);}}vErrors = emErrs29;errors = emErrs29.length;}}}else {const err232 = {instancePath,schemaPath:"#/allOf/1/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err232];}else {vErrors.push(err232);}errors++;}validate16.errors = vErrors;return errors === 0;}function validate15(data, {instancePath="", parentData, parentDataProperty, rootData=data}={}){let vErrors = null;let errors = 0;if(data && typeof data == "object" && !Array.isArray(data)){if(data.name === undefined){const err0 = {instancePath,schemaPath:"#/allOf/0/required",keyword:"required",params:{missingProperty: "name"},message:"must have required property '"+"name"+"'"};if(vErrors === null){vErrors = [err0];}else {vErrors.push(err0);}errors++;}if(data.id === undefined){const err1 = {instancePath,schemaPath:"#/allOf/0/required",keyword:"required",params:{missingProperty: "id"},message:"must have required property '"+"id"+"'"};if(vErrors === null){vErrors = [err1];}else {vErrors.push(err1);}errors++;}if(data.appliesTo === undefined){const err2 = {instancePath,schemaPath:"#/allOf/0/required",keyword:"required",params:{missingProperty: "appliesTo"},message:"must have required property '"+"appliesTo"+"'"};if(vErrors === null){vErrors = [err2];}else {vErrors.push(err2);}errors++;}if(data.properties === undefined){const err3 = {instancePath,schemaPath:"#/allOf/0/required",keyword:"required",params:{missingProperty: "properties"},message:"must have required property '"+"properties"+"'"};if(vErrors === null){vErrors = [err3];}else {vErrors.push(err3);}errors++;}if(data.name !== undefined){if(typeof data.name !== "string"){const err4 = {instancePath:instancePath+"/name",schemaPath:"#/allOf/0/properties/name/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err4];}else {vErrors.push(err4);}errors++;}}if(data.id !== undefined){if(typeof data.id !== "string"){const err5 = {instancePath:instancePath+"/id",schemaPath:"#/allOf/0/properties/id/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err5];}else {vErrors.push(err5);}errors++;}}if(data.description !== undefined){if(typeof data.description !== "string"){const err6 = {instancePath:instancePath+"/description",schemaPath:"#/allOf/0/properties/description/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err6];}else {vErrors.push(err6);}errors++;}}if(data.version !== undefined){let data3 = data.version;if(!((typeof data3 == "number") && (!(data3 % 1) && !isNaN(data3)))){const err7 = {instancePath:instancePath+"/version",schemaPath:"#/allOf/0/properties/version/type",keyword:"type",params:{type: "integer"},message:"must be integer"};if(vErrors === null){vErrors = [err7];}else {vErrors.push(err7);}errors++;}}if(data.isDefault !== undefined){if(typeof data.isDefault !== "boolean"){const err8 = {instancePath:instancePath+"/isDefault",schemaPath:"#/allOf/0/properties/isDefault/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err8];}else {vErrors.push(err8);}errors++;}}if(data.deprecated !== undefined){let data5 = data.deprecated;if((typeof data5 !== "boolean") && (!(data5 && typeof data5 == "object" && !Array.isArray(data5)))){const err9 = {instancePath:instancePath+"/deprecated",schemaPath:"#/allOf/0/properties/deprecated/type",keyword:"type",params:{type: schema17.allOf[0].properties.deprecated.type},message:"must be boolean,object"};if(vErrors === null){vErrors = [err9];}else {vErrors.push(err9);}errors++;}if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.message !== undefined){if(typeof data5.message !== "string"){const err10 = {instancePath:instancePath+"/deprecated/message",schemaPath:"#/allOf/0/properties/deprecated/properties/message/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err10];}else {vErrors.push(err10);}errors++;}}if(data5.documentationRef !== undefined){let data7 = data5.documentationRef;if(typeof data7 === "string"){if(!pattern0.test(data7)){const err11 = {instancePath:instancePath+"/deprecated/documentationRef",schemaPath:"#/allOf/0/properties/deprecated/properties/documentationRef/pattern",keyword:"pattern",params:{pattern: "^(https|http)://.*"},message:"must match pattern \""+"^(https|http)://.*"+"\""};if(vErrors === null){vErrors = [err11];}else {vErrors.push(err11);}errors++;}}else {const err12 = {instancePath:instancePath+"/deprecated/documentationRef",schemaPath:"#/allOf/0/properties/deprecated/properties/documentationRef/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err12];}else {vErrors.push(err12);}errors++;}}}}if(data.appliesTo !== undefined){let data8 = data.appliesTo;if(Array.isArray(data8)){const len0 = data8.length;for(let i0=0; i0<len0; i0++){let data9 = data8[i0];if(typeof data9 === "string"){if(!pattern1.test(data9)){const err13 = {instancePath:instancePath+"/appliesTo/" + i0,schemaPath:"#/allOf/0/properties/appliesTo/items/pattern",keyword:"pattern",params:{pattern: "^[\\w\\d]+:[\\w\\d]+$"},message:"must match pattern \""+"^[\\w\\d]+:[\\w\\d]+$"+"\""};if(vErrors === null){vErrors = [err13];}else {vErrors.push(err13);}errors++;}}else {const err14 = {instancePath:instancePath+"/appliesTo/" + i0,schemaPath:"#/allOf/0/properties/appliesTo/items/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err14];}else {vErrors.push(err14);}errors++;}if(errors > 0){const emErrors0 = {"pattern":[]};const templates0 = {};for(const err15 of vErrors){if((((((err15.keyword !== "errorMessage") && (!err15.emUsed)) && (err15.instancePath === instancePath+"/appliesTo/" + i0)) && (err15.keyword in emErrors0)) && (err15.schemaPath.indexOf("#/allOf/0/properties/appliesTo/items") === 0)) && (/^\/[^\/]*$/.test(err15.schemaPath.slice(36)))){emErrors0[err15.keyword].push(err15);err15.emUsed = true;}}for(const key0 in emErrors0){if(emErrors0[key0].length){const err16 = {instancePath:instancePath+"/appliesTo/" + i0,schemaPath:"#/allOf/0/properties/appliesTo/items/errorMessage",keyword:"errorMessage",params:{errors: emErrors0[key0]},message:key0 in templates0 ? templates0[key0]() : schema17.allOf[0].properties.appliesTo.items.errorMessage[key0]};if(vErrors === null){vErrors = [err16];}else {vErrors.push(err16);}errors++;}}const emErrs0 = [];for(const err17 of vErrors){if(!err17.emUsed){emErrs0.push(err17);}}vErrors = emErrs0;errors = emErrs0.length;}}}else {const err18 = {instancePath:instancePath+"/appliesTo",schemaPath:"#/allOf/0/properties/appliesTo/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err18];}else {vErrors.push(err18);}errors++;}}if(data.elementType !== undefined){let data10 = data.elementType;if(data10 && typeof data10 == "object" && !Array.isArray(data10)){if(data10.value === undefined){const err19 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/0/properties/elementType/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err19];}else {vErrors.push(err19);}errors++;}if(data10.value !== undefined){let data11 = data10.value;if(typeof data11 === "string"){if(!pattern1.test(data11)){const err20 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/0/properties/elementType/properties/value/pattern",keyword:"pattern",params:{pattern: "^[\\w\\d]+:[\\w\\d]+$"},message:"must match pattern \""+"^[\\w\\d]+:[\\w\\d]+$"+"\""};if(vErrors === null){vErrors = [err20];}else {vErrors.push(err20);}errors++;}}else {const err21 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/0/properties/elementType/properties/value/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err21];}else {vErrors.push(err21);}errors++;}if(errors > 0){const emErrors1 = {"pattern":[]};const templates1 = {};for(const err22 of vErrors){if((((((err22.keyword !== "errorMessage") && (!err22.emUsed)) && (err22.instancePath === instancePath+"/elementType/value")) && (err22.keyword in emErrors1)) && (err22.schemaPath.indexOf("#/allOf/0/properties/elementType/properties/value") === 0)) && (/^\/[^\/]*$/.test(err22.schemaPath.slice(49)))){emErrors1[err22.keyword].push(err22);err22.emUsed = true;}}for(const key1 in emErrors1){if(emErrors1[key1].length){const err23 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/0/properties/elementType/properties/value/errorMessage",keyword:"errorMessage",params:{errors: emErrors1[key1]},message:key1 in templates1 ? templates1[key1]() : schema17.allOf[0].properties.elementType.properties.value.errorMessage[key1]};if(vErrors === null){vErrors = [err23];}else {vErrors.push(err23);}errors++;}}const emErrs1 = [];for(const err24 of vErrors){if(!err24.emUsed){emErrs1.push(err24);}}vErrors = emErrs1;errors = emErrs1.length;}}}else {const err25 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/0/properties/elementType/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err25];}else {vErrors.push(err25);}errors++;}if(errors > 0){const emErrors2 = {"required":{"value":[]}};const templates2 = {required:{}};let emPropParams0;let emParamsErrors0;for(const err26 of vErrors){if((((((err26.keyword !== "errorMessage") && (!err26.emUsed)) && (err26.instancePath === instancePath+"/elementType")) && (err26.keyword in emErrors2)) && (err26.schemaPath.indexOf("#/allOf/0/properties/elementType") === 0)) && (/^\/[^\/]*$/.test(err26.schemaPath.slice(32)))){emPropParams0 = obj0[err26.keyword];emParamsErrors0 = emErrors2[err26.keyword][err26.params[emPropParams0]];if(emParamsErrors0){emParamsErrors0.push(err26);err26.emUsed = true;}}}for(const key2 in emErrors2){for(const keyProp0 in emErrors2[key2]){emParamsErrors0 = emErrors2[key2][keyProp0];if(emParamsErrors0.length){const tmpl0 = templates2[key2] && templates2[key2][keyProp0];const err27 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/0/properties/elementType/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors0},message:tmpl0 ? tmpl0() : schema17.allOf[0].properties.elementType.errorMessage[key2][keyProp0]};if(vErrors === null){vErrors = [err27];}else {vErrors.push(err27);}errors++;}}}const emErrs2 = [];for(const err28 of vErrors){if(!err28.emUsed){emErrs2.push(err28);}}vErrors = emErrs2;errors = emErrs2.length;}}if(data.metadata !== undefined){let data12 = data.metadata;if(!(data12 && typeof data12 == "object" && !Array.isArray(data12))){const err29 = {instancePath:instancePath+"/metadata",schemaPath:"#/allOf/0/properties/metadata/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err29];}else {vErrors.push(err29);}errors++;}}if(data.entriesVisible !== undefined){if(typeof data.entriesVisible !== "boolean"){const err30 = {instancePath:instancePath+"/entriesVisible",schemaPath:"#/allOf/0/properties/entriesVisible/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err30];}else {vErrors.push(err30);}errors++;}}if(data.groups !== undefined){let data14 = data.groups;if(Array.isArray(data14)){const len1 = data14.length;for(let i1=0; i1<len1; i1++){let data15 = data14[i1];if(data15 && typeof data15 == "object" && !Array.isArray(data15)){if(data15.id === undefined){const err31 = {instancePath:instancePath+"/groups/" + i1,schemaPath:"#/allOf/0/properties/groups/items/required",keyword:"required",params:{missingProperty: "id"},message:"must have required property '"+"id"+"'"};if(vErrors === null){vErrors = [err31];}else {vErrors.push(err31);}errors++;}if(data15.label === undefined){const err32 = {instancePath:instancePath+"/groups/" + i1,schemaPath:"#/allOf/0/properties/groups/items/required",keyword:"required",params:{missingProperty: "label"},message:"must have required property '"+"label"+"'"};if(vErrors === null){vErrors = [err32];}else {vErrors.push(err32);}errors++;}if(data15.id !== undefined){if(typeof data15.id !== "string"){const err33 = {instancePath:instancePath+"/groups/" + i1+"/id",schemaPath:"#/allOf/0/properties/groups/items/properties/id/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err33];}else {vErrors.push(err33);}errors++;}}if(data15.label !== undefined){if(typeof data15.label !== "string"){const err34 = {instancePath:instancePath+"/groups/" + i1+"/label",schemaPath:"#/allOf/0/properties/groups/items/properties/label/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err34];}else {vErrors.push(err34);}errors++;}}}else {const err35 = {instancePath:instancePath+"/groups/" + i1,schemaPath:"#/allOf/0/properties/groups/items/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err35];}else {vErrors.push(err35);}errors++;}if(errors > 0){const emErrors3 = {"required":{"id":[],"label":[]}};const templates3 = {required:{id:function(){return "missing id for group \"" + JSON.stringify(i1) + "\""},label:function(){return "missing label for group \"" + JSON.stringify(i1) + "\""}}};let emPropParams1;let emParamsErrors1;for(const err36 of vErrors){if((((((err36.keyword !== "errorMessage") && (!err36.emUsed)) && (err36.instancePath === instancePath+"/groups/" + i1)) && (err36.keyword in emErrors3)) && (err36.schemaPath.indexOf("#/allOf/0/properties/groups/items") === 0)) && (/^\/[^\/]*$/.test(err36.schemaPath.slice(33)))){emPropParams1 = obj0[err36.keyword];emParamsErrors1 = emErrors3[err36.keyword][err36.params[emPropParams1]];if(emParamsErrors1){emParamsErrors1.push(err36);err36.emUsed = true;}}}for(const key3 in emErrors3){for(const keyProp1 in emErrors3[key3]){emParamsErrors1 = emErrors3[key3][keyProp1];if(emParamsErrors1.length){const tmpl1 = templates3[key3] && templates3[key3][keyProp1];const err37 = {instancePath:instancePath+"/groups/" + i1,schemaPath:"#/allOf/0/properties/groups/items/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors1},message:tmpl1 ? tmpl1() : schema17.allOf[0].properties.groups.items.errorMessage[key3][keyProp1]};if(vErrors === null){vErrors = [err37];}else {vErrors.push(err37);}errors++;}}}const emErrs3 = [];for(const err38 of vErrors){if(!err38.emUsed){emErrs3.push(err38);}}vErrors = emErrs3;errors = emErrs3.length;}}}else {const err39 = {instancePath:instancePath+"/groups",schemaPath:"#/allOf/0/properties/groups/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err39];}else {vErrors.push(err39);}errors++;}}if(data.documentationRef !== undefined){let data18 = data.documentationRef;if(typeof data18 === "string"){if(!pattern0.test(data18)){const err40 = {instancePath:instancePath+"/documentationRef",schemaPath:"#/allOf/0/properties/documentationRef/pattern",keyword:"pattern",params:{pattern: "^(https|http)://.*"},message:"must match pattern \""+"^(https|http)://.*"+"\""};if(vErrors === null){vErrors = [err40];}else {vErrors.push(err40);}errors++;}}else {const err41 = {instancePath:instancePath+"/documentationRef",schemaPath:"#/allOf/0/properties/documentationRef/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err41];}else {vErrors.push(err41);}errors++;}if(errors > 0){const emErrors4 = {"pattern":[]};const templates4 = {};for(const err42 of vErrors){if((((((err42.keyword !== "errorMessage") && (!err42.emUsed)) && (err42.instancePath === instancePath+"/documentationRef")) && (err42.keyword in emErrors4)) && (err42.schemaPath.indexOf("#/allOf/0/properties/documentationRef") === 0)) && (/^\/[^\/]*$/.test(err42.schemaPath.slice(37)))){emErrors4[err42.keyword].push(err42);err42.emUsed = true;}}for(const key4 in emErrors4){if(emErrors4[key4].length){const err43 = {instancePath:instancePath+"/documentationRef",schemaPath:"#/allOf/0/properties/documentationRef/errorMessage",keyword:"errorMessage",params:{errors: emErrors4[key4]},message:key4 in templates4 ? templates4[key4]() : schema17.allOf[0].properties.documentationRef.errorMessage[key4]};if(vErrors === null){vErrors = [err43];}else {vErrors.push(err43);}errors++;}}const emErrs4 = [];for(const err44 of vErrors){if(!err44.emUsed){emErrs4.push(err44);}}vErrors = emErrs4;errors = emErrs4.length;}}}if(errors > 0){const emErrors5 = {"required":{"name":[],"id":[],"appliesTo":[],"properties":[]}};const templates5 = {required:{}};let emPropParams2;let emParamsErrors2;for(const err45 of vErrors){if((((((err45.keyword !== "errorMessage") && (!err45.emUsed)) && (err45.instancePath === instancePath)) && (err45.keyword in emErrors5)) && (err45.schemaPath.indexOf("#/allOf/0") === 0)) && (/^\/[^\/]*$/.test(err45.schemaPath.slice(9)))){emPropParams2 = obj0[err45.keyword];emParamsErrors2 = emErrors5[err45.keyword][err45.params[emPropParams2]];if(emParamsErrors2){emParamsErrors2.push(err45);err45.emUsed = true;}}}for(const key5 in emErrors5){for(const keyProp2 in emErrors5[key5]){emParamsErrors2 = emErrors5[key5][keyProp2];if(emParamsErrors2.length){const tmpl2 = templates5[key5] && templates5[key5][keyProp2];const err46 = {instancePath,schemaPath:"#/allOf/0/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors2},message:tmpl2 ? tmpl2() : schema17.allOf[0].errorMessage[key5][keyProp2]};if(vErrors === null){vErrors = [err46];}else {vErrors.push(err46);}errors++;}}}const emErrs5 = [];for(const err47 of vErrors){if(!err47.emUsed){emErrs5.push(err47);}}vErrors = emErrs5;errors = emErrs5.length;}const _errs42 = errors;let valid13 = true;const _errs43 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if((data.properties === undefined) && ("properties")){const err48 = {};if(vErrors === null){vErrors = [err48];}else {vErrors.push(err48);}errors++;}else {if(data.properties !== undefined){let data19 = data.properties;if(Array.isArray(data19)){const _errs45 = errors;const len2 = data19.length;for(let i2=0; i2<len2; i2++){let data20 = data19[i2];const _errs46 = errors;if(data20 && typeof data20 == "object" && !Array.isArray(data20)){if((data20.binding === undefined) && ("binding")){const err49 = {};if(vErrors === null){vErrors = [err49];}else {vErrors.push(err49);}errors++;}else {if(data20.binding !== undefined){let data21 = data20.binding;if(data21 && typeof data21 == "object" && !Array.isArray(data21)){if((data21.type === undefined) && ("type")){const err50 = {};if(vErrors === null){vErrors = [err50];}else {vErrors.push(err50);}errors++;}else {if(data21.type !== undefined){if("bpmn:Message#property" !== data21.type){const err51 = {};if(vErrors === null){vErrors = [err51];}else {vErrors.push(err51);}errors++;}}}}}}}var valid15 = _errs46 === errors;if(valid15){break;}}if(!valid15){const err52 = {};if(vErrors === null){vErrors = [err52];}else {vErrors.push(err52);}errors++;}else {errors = _errs45;if(vErrors !== null){if(_errs45){vErrors.length = _errs45;}else {vErrors = null;}}}}}}}var _valid0 = _errs43 === errors;errors = _errs42;if(vErrors !== null){if(_errs42){vErrors.length = _errs42;}else {vErrors = null;}}if(_valid0){const _errs49 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.elementType === undefined){const err53 = {instancePath,schemaPath:"#/allOf/1/allOf/0/then/required",keyword:"required",params:{missingProperty: "elementType"},message:"must have required property '"+"elementType"+"'"};if(vErrors === null){vErrors = [err53];}else {vErrors.push(err53);}errors++;}if(data.elementType !== undefined){let data23 = data.elementType;const _errs52 = errors;let valid20 = true;const _errs53 = errors;if(data23 && typeof data23 == "object" && !Array.isArray(data23)){if(data23.value !== undefined){let data24 = data23.value;if(!(((((data24 === "bpmn:StartEvent") || (data24 === "bpmn:IntermediateCatchEvent")) || (data24 === "bpmn:IntermediateThrowEvent")) || (data24 === "bpmn:BoundaryEvent")) || (data24 === "bpmn:EndEvent"))){const err54 = {};if(vErrors === null){vErrors = [err54];}else {vErrors.push(err54);}errors++;}}}var _valid1 = _errs53 === errors;errors = _errs52;if(vErrors !== null){if(_errs52){vErrors.length = _errs52;}else {vErrors = null;}}if(_valid1){const _errs55 = errors;if(data23 && typeof data23 == "object" && !Array.isArray(data23)){if(data23.eventDefinition === undefined){const err55 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/0/then/properties/elementType/allOf/0/then/required",keyword:"required",params:{missingProperty: "eventDefinition"},message:"must have required property '"+"eventDefinition"+"'"};if(vErrors === null){vErrors = [err55];}else {vErrors.push(err55);}errors++;}}var _valid1 = _errs55 === errors;valid20 = _valid1;}if(!valid20){const err56 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/0/then/properties/elementType/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err56];}else {vErrors.push(err56);}errors++;}if(data23 && typeof data23 == "object" && !Array.isArray(data23)){if(data23.value === undefined){const err57 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/0/then/properties/elementType/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err57];}else {vErrors.push(err57);}errors++;}if(data23.value !== undefined){let data25 = data23.value;if(!(((((((data25 === "bpmn:ReceiveTask") || (data25 === "bpmn:SendTask")) || (data25 === "bpmn:StartEvent")) || (data25 === "bpmn:IntermediateCatchEvent")) || (data25 === "bpmn:IntermediateThrowEvent")) || (data25 === "bpmn:BoundaryEvent")) || (data25 === "bpmn:EndEvent"))){const err58 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/1/allOf/0/then/properties/elementType/properties/value/enum",keyword:"enum",params:{allowedValues: schema17.allOf[1].allOf[0].then.properties.elementType.properties.value.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err58];}else {vErrors.push(err58);}errors++;}}}}}var _valid0 = _errs49 === errors;valid13 = _valid0;}if(!valid13){const err59 = {instancePath,schemaPath:"#/allOf/1/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err59];}else {vErrors.push(err59);}errors++;}const _errs58 = errors;let valid23 = true;const _errs59 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if((data.properties === undefined) && ("properties")){const err60 = {};if(vErrors === null){vErrors = [err60];}else {vErrors.push(err60);}errors++;}else {if(data.properties !== undefined){let data26 = data.properties;if(Array.isArray(data26)){const _errs61 = errors;const len3 = data26.length;for(let i3=0; i3<len3; i3++){let data27 = data26[i3];const _errs62 = errors;if(data27 && typeof data27 == "object" && !Array.isArray(data27)){if((data27.binding === undefined) && ("binding")){const err61 = {};if(vErrors === null){vErrors = [err61];}else {vErrors.push(err61);}errors++;}else {if(data27.binding !== undefined){let data28 = data27.binding;if(data28 && typeof data28 == "object" && !Array.isArray(data28)){if((data28.type === undefined) && ("type")){const err62 = {};if(vErrors === null){vErrors = [err62];}else {vErrors.push(err62);}errors++;}else {if(data28.type !== undefined){if("bpmn:Message#zeebe:subscription#property" !== data28.type){const err63 = {};if(vErrors === null){vErrors = [err63];}else {vErrors.push(err63);}errors++;}}}}}}}var valid25 = _errs62 === errors;if(valid25){break;}}if(!valid25){const err64 = {};if(vErrors === null){vErrors = [err64];}else {vErrors.push(err64);}errors++;}else {errors = _errs61;if(vErrors !== null){if(_errs61){vErrors.length = _errs61;}else {vErrors = null;}}}}}}}var _valid2 = _errs59 === errors;errors = _errs58;if(vErrors !== null){if(_errs58){vErrors.length = _errs58;}else {vErrors = null;}}if(_valid2){const _errs65 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.elementType === undefined){const err65 = {instancePath,schemaPath:"#/allOf/1/allOf/1/then/required",keyword:"required",params:{missingProperty: "elementType"},message:"must have required property '"+"elementType"+"'"};if(vErrors === null){vErrors = [err65];}else {vErrors.push(err65);}errors++;}if(data.elementType !== undefined){let data30 = data.elementType;const _errs68 = errors;let valid30 = true;const _errs69 = errors;if(data30 && typeof data30 == "object" && !Array.isArray(data30)){if(data30.value !== undefined){let data31 = data30.value;if(!(((((data31 === "bpmn:StartEvent") || (data31 === "bpmn:IntermediateCatchEvent")) || (data31 === "bpmn:IntermediateThrowEvent")) || (data31 === "bpmn:BoundaryEvent")) || (data31 === "bpmn:EndEvent"))){const err66 = {};if(vErrors === null){vErrors = [err66];}else {vErrors.push(err66);}errors++;}}}var _valid3 = _errs69 === errors;errors = _errs68;if(vErrors !== null){if(_errs68){vErrors.length = _errs68;}else {vErrors = null;}}if(_valid3){const _errs71 = errors;if(data30 && typeof data30 == "object" && !Array.isArray(data30)){if(data30.eventDefinition === undefined){const err67 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/1/then/properties/elementType/allOf/0/then/required",keyword:"required",params:{missingProperty: "eventDefinition"},message:"must have required property '"+"eventDefinition"+"'"};if(vErrors === null){vErrors = [err67];}else {vErrors.push(err67);}errors++;}}var _valid3 = _errs71 === errors;valid30 = _valid3;}if(!valid30){const err68 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/1/then/properties/elementType/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err68];}else {vErrors.push(err68);}errors++;}if(data30 && typeof data30 == "object" && !Array.isArray(data30)){if(data30.value === undefined){const err69 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/1/then/properties/elementType/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err69];}else {vErrors.push(err69);}errors++;}if(data30.value !== undefined){let data32 = data30.value;if(!((((((data32 === "bpmn:ReceiveTask") || (data32 === "bpmn:StartEvent")) || (data32 === "bpmn:IntermediateCatchEvent")) || (data32 === "bpmn:IntermediateThrowEvent")) || (data32 === "bpmn:BoundaryEvent")) || (data32 === "bpmn:EndEvent"))){const err70 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/1/allOf/1/then/properties/elementType/properties/value/enum",keyword:"enum",params:{allowedValues: schema17.allOf[1].allOf[1].then.properties.elementType.properties.value.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err70];}else {vErrors.push(err70);}errors++;}}}}}var _valid2 = _errs65 === errors;valid23 = _valid2;}if(!valid23){const err71 = {instancePath,schemaPath:"#/allOf/1/allOf/1/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err71];}else {vErrors.push(err71);}errors++;}const _errs74 = errors;let valid33 = true;const _errs75 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if((data.properties === undefined) && ("properties")){const err72 = {};if(vErrors === null){vErrors = [err72];}else {vErrors.push(err72);}errors++;}else {if(data.properties !== undefined){let data33 = data.properties;if(Array.isArray(data33)){const _errs77 = errors;const len4 = data33.length;for(let i4=0; i4<len4; i4++){let data34 = data33[i4];const _errs78 = errors;if(data34 && typeof data34 == "object" && !Array.isArray(data34)){if((data34.binding === undefined) && ("binding")){const err73 = {};if(vErrors === null){vErrors = [err73];}else {vErrors.push(err73);}errors++;}else {if(data34.binding !== undefined){let data35 = data34.binding;if(data35 && typeof data35 == "object" && !Array.isArray(data35)){if((data35.type === undefined) && ("type")){const err74 = {};if(vErrors === null){vErrors = [err74];}else {vErrors.push(err74);}errors++;}else {if(data35.type !== undefined){if("zeebe:calledElement" !== data35.type){const err75 = {};if(vErrors === null){vErrors = [err75];}else {vErrors.push(err75);}errors++;}}}}}}}var valid35 = _errs78 === errors;if(valid35){break;}}if(!valid35){const err76 = {};if(vErrors === null){vErrors = [err76];}else {vErrors.push(err76);}errors++;}else {errors = _errs77;if(vErrors !== null){if(_errs77){vErrors.length = _errs77;}else {vErrors = null;}}}}}}}var _valid4 = _errs75 === errors;errors = _errs74;if(vErrors !== null){if(_errs74){vErrors.length = _errs74;}else {vErrors = null;}}if(_valid4){const _errs81 = errors;const _errs82 = errors;let valid38 = false;const _errs83 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.elementType === undefined){const err77 = {instancePath,schemaPath:"#/allOf/1/allOf/2/then/anyOf/0/required",keyword:"required",params:{missingProperty: "elementType"},message:"must have required property '"+"elementType"+"'"};if(vErrors === null){vErrors = [err77];}else {vErrors.push(err77);}errors++;}if(data.elementType !== undefined){let data37 = data.elementType;if(data37 && typeof data37 == "object" && !Array.isArray(data37)){if(data37.value === undefined){const err78 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/2/then/anyOf/0/properties/elementType/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err78];}else {vErrors.push(err78);}errors++;}if(data37.value !== undefined){if("bpmn:CallActivity" !== data37.value){const err79 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/1/allOf/2/then/anyOf/0/properties/elementType/properties/value/const",keyword:"const",params:{allowedValue: "bpmn:CallActivity"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err79];}else {vErrors.push(err79);}errors++;}}}}}var _valid5 = _errs83 === errors;valid38 = valid38 || _valid5;if(!valid38){const _errs86 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.appliesTo === undefined){const err80 = {instancePath,schemaPath:"#/allOf/1/allOf/2/then/anyOf/1/required",keyword:"required",params:{missingProperty: "appliesTo"},message:"must have required property '"+"appliesTo"+"'"};if(vErrors === null){vErrors = [err80];}else {vErrors.push(err80);}errors++;}if(data.appliesTo !== undefined){if(!func0(data.appliesTo, schema17.allOf[1].allOf[2].then.anyOf[1].properties.appliesTo.const)){const err81 = {instancePath:instancePath+"/appliesTo",schemaPath:"#/allOf/1/allOf/2/then/anyOf/1/properties/appliesTo/const",keyword:"const",params:{allowedValue: schema17.allOf[1].allOf[2].then.anyOf[1].properties.appliesTo.const},message:"must be equal to constant"};if(vErrors === null){vErrors = [err81];}else {vErrors.push(err81);}errors++;}}}var _valid5 = _errs86 === errors;valid38 = valid38 || _valid5;}if(!valid38){const err82 = {instancePath,schemaPath:"#/allOf/1/allOf/2/then/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors === null){vErrors = [err82];}else {vErrors.push(err82);}errors++;}else {errors = _errs82;if(vErrors !== null){if(_errs82){vErrors.length = _errs82;}else {vErrors = null;}}}var _valid4 = _errs81 === errors;valid33 = _valid4;}if(!valid33){const err83 = {instancePath,schemaPath:"#/allOf/1/allOf/2/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err83];}else {vErrors.push(err83);}errors++;}if(data && typeof data == "object" && !Array.isArray(data)){if(data.properties !== undefined){if(!(validate16(data.properties, {instancePath:instancePath+"/properties",parentData:data,parentDataProperty:"properties",rootData}))){vErrors = vErrors === null ? validate16.errors : vErrors.concat(validate16.errors);errors = vErrors.length;}}if(data.engines !== undefined){let data41 = data.engines;if(data41 && typeof data41 == "object" && !Array.isArray(data41)){if(data41.camunda !== undefined){if(typeof data41.camunda !== "string"){const err84 = {instancePath:instancePath+"/engines/camunda",schemaPath:"#/properties/engines/properties/camunda/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err84];}else {vErrors.push(err84);}errors++;}}}else {const err85 = {instancePath:instancePath+"/engines",schemaPath:"#/properties/engines/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err85];}else {vErrors.push(err85);}errors++;}}if(data.icon !== undefined){let data43 = data.icon;if(data43 && typeof data43 == "object" && !Array.isArray(data43)){if(data43.contents === undefined){const err86 = {instancePath:instancePath+"/icon",schemaPath:"#/properties/icon/required",keyword:"required",params:{missingProperty: "contents"},message:"must have required property '"+"contents"+"'"};if(vErrors === null){vErrors = [err86];}else {vErrors.push(err86);}errors++;}if(data43.contents !== undefined){let data44 = data43.contents;if(typeof data44 === "string"){if(!pattern4.test(data44)){const err87 = {instancePath:instancePath+"/icon/contents",schemaPath:"#/properties/icon/properties/contents/pattern",keyword:"pattern",params:{pattern: "^(https?|data):.*"},message:"must match pattern \""+"^(https?|data):.*"+"\""};if(vErrors === null){vErrors = [err87];}else {vErrors.push(err87);}errors++;}}else {const err88 = {instancePath:instancePath+"/icon/contents",schemaPath:"#/properties/icon/properties/contents/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err88];}else {vErrors.push(err88);}errors++;}if(errors > 0){const emErrors6 = {"pattern":[]};const templates6 = {};for(const err89 of vErrors){if((((((err89.keyword !== "errorMessage") && (!err89.emUsed)) && (err89.instancePath === instancePath+"/icon/contents")) && (err89.keyword in emErrors6)) && (err89.schemaPath.indexOf("#/properties/icon/properties/contents") === 0)) && (/^\/[^\/]*$/.test(err89.schemaPath.slice(37)))){emErrors6[err89.keyword].push(err89);err89.emUsed = true;}}for(const key6 in emErrors6){if(emErrors6[key6].length){const err90 = {instancePath:instancePath+"/icon/contents",schemaPath:"#/properties/icon/properties/contents/errorMessage",keyword:"errorMessage",params:{errors: emErrors6[key6]},message:key6 in templates6 ? templates6[key6]() : schema17.properties.icon.properties.contents.errorMessage[key6]};if(vErrors === null){vErrors = [err90];}else {vErrors.push(err90);}errors++;}}const emErrs6 = [];for(const err91 of vErrors){if(!err91.emUsed){emErrs6.push(err91);}}vErrors = emErrs6;errors = emErrs6.length;}}}else {const err92 = {instancePath:instancePath+"/icon",schemaPath:"#/properties/icon/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err92];}else {vErrors.push(err92);}errors++;}if(errors > 0){const emErrors7 = {"required":{"contents":[]}};const templates7 = {required:{}};let emPropParams3;let emParamsErrors3;for(const err93 of vErrors){if((((((err93.keyword !== "errorMessage") && (!err93.emUsed)) && (err93.instancePath === instancePath+"/icon")) && (err93.keyword in emErrors7)) && (err93.schemaPath.indexOf("#/properties/icon") === 0)) && (/^\/[^\/]*$/.test(err93.schemaPath.slice(17)))){emPropParams3 = obj0[err93.keyword];emParamsErrors3 = emErrors7[err93.keyword][err93.params[emPropParams3]];if(emParamsErrors3){emParamsErrors3.push(err93);err93.emUsed = true;}}}for(const key7 in emErrors7){for(const keyProp3 in emErrors7[key7]){emParamsErrors3 = emErrors7[key7][keyProp3];if(emParamsErrors3.length){const tmpl3 = templates7[key7] && templates7[key7][keyProp3];const err94 = {instancePath:instancePath+"/icon",schemaPath:"#/properties/icon/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors3},message:tmpl3 ? tmpl3() : schema17.properties.icon.errorMessage[key7][keyProp3]};if(vErrors === null){vErrors = [err94];}else {vErrors.push(err94);}errors++;}}}const emErrs7 = [];for(const err95 of vErrors){if(!err95.emUsed){emErrs7.push(err95);}}vErrors = emErrs7;errors = emErrs7.length;}}if(data.elementType !== undefined){let data45 = data.elementType;if(data45 && typeof data45 == "object" && !Array.isArray(data45)){if(data45.eventDefinition !== undefined){if(!(data45.eventDefinition === "bpmn:MessageEventDefinition")){const err96 = {instancePath:instancePath+"/elementType/eventDefinition",schemaPath:"#/properties/elementType/allOf/0/allOf/0/properties/eventDefinition/enum",keyword:"enum",params:{allowedValues: schema17.properties.elementType.allOf[0].allOf[0].properties.eventDefinition.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err96];}else {vErrors.push(err96);}errors++;}}}const _errs102 = errors;let valid48 = true;const _errs103 = errors;if(data45 && typeof data45 == "object" && !Array.isArray(data45)){if((data45.eventDefinition === undefined) && ("eventDefinition")){const err97 = {};if(vErrors === null){vErrors = [err97];}else {vErrors.push(err97);}errors++;}}var _valid6 = _errs103 === errors;errors = _errs102;if(vErrors !== null){if(_errs102){vErrors.length = _errs102;}else {vErrors = null;}}if(_valid6){const _errs104 = errors;if(data45 && typeof data45 == "object" && !Array.isArray(data45)){if(data45.value === undefined){const err98 = {instancePath:instancePath+"/elementType",schemaPath:"#/properties/elementType/allOf/0/allOf/1/then/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err98];}else {vErrors.push(err98);}errors++;}if(data45.value !== undefined){let data47 = data45.value;if(!(((((data47 === "bpmn:StartEvent") || (data47 === "bpmn:IntermediateCatchEvent")) || (data47 === "bpmn:IntermediateThrowEvent")) || (data47 === "bpmn:BoundaryEvent")) || (data47 === "bpmn:EndEvent"))){const err99 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/properties/elementType/allOf/0/allOf/1/then/properties/value/enum",keyword:"enum",params:{allowedValues: schema17.properties.elementType.allOf[0].allOf[1].then.properties.value.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err99];}else {vErrors.push(err99);}errors++;}}}var _valid6 = _errs104 === errors;valid48 = _valid6;}if(!valid48){const err100 = {instancePath:instancePath+"/elementType",schemaPath:"#/properties/elementType/allOf/0/allOf/1/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err100];}else {vErrors.push(err100);}errors++;}}if(data.groups !== undefined){let data48 = data.groups;if(Array.isArray(data48)){const len5 = data48.length;for(let i5=0; i5<len5; i5++){let data49 = data48[i5];if(data49 && typeof data49 == "object" && !Array.isArray(data49)){if(data49.tooltip !== undefined){if(typeof data49.tooltip !== "string"){const err101 = {instancePath:instancePath+"/groups/" + i5+"/tooltip",schemaPath:"#/properties/groups/items/properties/tooltip/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err101];}else {vErrors.push(err101);}errors++;}}if(data49.openByDefault !== undefined){if(typeof data49.openByDefault !== "boolean"){const err102 = {instancePath:instancePath+"/groups/" + i5+"/openByDefault",schemaPath:"#/properties/groups/items/properties/openByDefault/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err102];}else {vErrors.push(err102);}errors++;}}}}}}}else {const err103 = {instancePath,schemaPath:"#/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err103];}else {vErrors.push(err103);}errors++;}validate15.errors = vErrors;return errors === 0;}function validate14(data, {instancePath="", parentData, parentDataProperty, rootData=data}={}){let vErrors = null;let errors = 0;const _errs0 = errors;let valid0 = false;let passing0 = null;const _errs1 = errors;if(!(validate15(data, {instancePath,parentData,parentDataProperty,rootData}))){vErrors = vErrors === null ? validate15.errors : vErrors.concat(validate15.errors);errors = vErrors.length;}var _valid0 = _errs1 === errors;if(_valid0){valid0 = true;passing0 = 0;}const _errs2 = errors;if(Array.isArray(data)){const len0 = data.length;for(let i0=0; i0<len0; i0++){if(!(validate15(data[i0], {instancePath:instancePath+"/" + i0,parentData:data,parentDataProperty:i0,rootData}))){vErrors = vErrors === null ? validate15.errors : vErrors.concat(validate15.errors);errors = vErrors.length;}}}else {const err0 = {instancePath,schemaPath:"#/oneOf/1/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err0];}else {vErrors.push(err0);}errors++;}var _valid0 = _errs2 === errors;if(_valid0 && valid0){valid0 = false;passing0 = [passing0, 1];}else {if(_valid0){valid0 = true;passing0 = 1;}}if(!valid0){const err1 = {instancePath,schemaPath:"#/oneOf",keyword:"oneOf",params:{passingSchemas: passing0},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err1];}else {vErrors.push(err1);}errors++;}else {errors = _errs0;if(vErrors !== null){if(_errs0){vErrors.length = _errs0;}else {vErrors = null;}}}validate14.errors = vErrors;return errors === 0;}
|
|
121022
|
+
standaloneZeebeValidator.exports = validate14;standaloneZeebeValidator.exports.default = validate14;const schema17 = {"type":"object","allOf":[{"required":["name","id","appliesTo","properties"],"properties":{"name":{"$id":"#/name","type":"string","description":"The name of the element template."},"id":{"$id":"#/id","type":"string","description":"The identifier of the element template."},"description":{"$id":"#/description","type":"string","description":"The description of the element template."},"version":{"$id":"#/version","type":"integer","description":"Optional version of the template. If you add a version to a template it will be considered unique based on its ID and version. Two templates can have the same ID if their version is different."},"isDefault":{"$id":"#/isDefault","type":"boolean","description":"Indicates whether the element template is a default template."},"deprecated":{"$id":"#/deprecated","type":["boolean","object"],"description":"Indicates whether the element template is deprecated.","properties":{"message":{"$id":"#/deprecated/message","type":"string","description":"Optional message to describe migration path."},"documentationRef":{"$id":"#/deprecated/documentationRef","type":"string","pattern":"^(https|http)://.*","description":"Optional link to migration documentation."}}},"appliesTo":{"$id":"#/appliesTo","type":"array","description":"List of BPMN types the template can be applied to.","default":[],"items":{"$id":"#/appliesTo/items","type":"string","pattern":"^[\\w\\d]+:[\\w\\d]+$","allOf":[{"examples":["bpmn:Task","bpmn:ServiceTask","bpmn:SequenceFlow","bpmn:Process","bpmn:StartEvent","bpmn:Gateway"]}],"errorMessage":{"pattern":"invalid item for \"appliesTo\", should contain namespaced property, example: \"bpmn:Task\""}}},"elementType":{"$id":"#/elementType","type":"object","description":"The BPMN type the element will be transformed into.","default":{},"required":["value"],"properties":{"value":{"$id":"#/elementType/value","type":"string","pattern":"^[\\w\\d]+:[\\w\\d]+$","allOf":[{"examples":["bpmn:ServiceTask","bpmn:UserTask","bpmn:StartEvent","bpmn:ExclusiveGateway","bpmn:ParallelGateway"]}],"errorMessage":{"pattern":"invalid item for \"elementType\", should contain namespaced property, example: \"bpmn:Task\""}}},"errorMessage":{"required":{"value":"missing elementType value"}}},"metadata":{"$id":"#/metadata","type":"object","description":"Some custom properties for further configuration.","default":{}},"entriesVisible":{"$id":"#/entriesVisible","type":"boolean","description":"Select whether non-template entries are visible in the properties panel."},"groups":{"$id":"#/groups","type":"array","description":"Custom fields can be ordered together via groups.","allOf":[{"examples":[[{"id":"group-1","label":"My Group"}]]}],"items":{"$id":"#/groups/group","type":"object","default":{},"required":["id","label"],"properties":{"id":{"$id":"#/groups/group/id","type":"string","description":"The id of the custom group"},"label":{"$id":"#/groups/group/label","type":"string","description":"The label of the custom group"}},"errorMessage":{"required":{"id":"missing id for group \"${0#}\"","label":"missing label for group \"${0#}\""}}}},"documentationRef":{"$id":"#/documentationRef","type":"string","pattern":"^(https|http)://.*","errorMessage":{"pattern":"Malformed documentation URL, must match \"^(https|http)://.*\""}}},"errorMessage":{"required":{"name":"missing template name","id":"missing template id","appliesTo":"missing appliesTo=[]","properties":"missing properties=[]"}}},{"allOf":[{"if":{"properties":{"properties":{"contains":{"properties":{"binding":{"properties":{"type":{"const":"bpmn:Message#property"}},"required":["type"]}},"required":["binding"]}}},"required":["properties"]},"then":{"required":["elementType"],"properties":{"elementType":{"required":["value"],"properties":{"value":{"enum":["bpmn:ReceiveTask","bpmn:SendTask","bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}},"allOf":[{"if":{"properties":{"value":{"enum":["bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}}},"then":{"eventDefinition":{"const":"bpmn:MessageEventDefinition"},"required":["eventDefinition"]}}]}}}},{"if":{"properties":{"properties":{"contains":{"properties":{"binding":{"properties":{"type":{"const":"bpmn:Message#zeebe:subscription#property"}},"required":["type"]}},"required":["binding"]}}},"required":["properties"]},"then":{"required":["elementType"],"properties":{"elementType":{"required":["value"],"properties":{"value":{"enum":["bpmn:ReceiveTask","bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}},"allOf":[{"if":{"properties":{"value":{"enum":["bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}}},"then":{"eventDefinition":{"const":"bpmn:MessageEventDefinition"},"required":["eventDefinition"]}}]}}}},{"if":{"properties":{"properties":{"contains":{"properties":{"binding":{"properties":{"type":{"const":"zeebe:calledElement"}},"required":["type"]}},"required":["binding"]}}},"required":["properties"]},"then":{"anyOf":[{"required":["elementType"],"properties":{"elementType":{"required":["value"],"properties":{"value":{"const":"bpmn:CallActivity"}}}}},{"required":["appliesTo"],"properties":{"appliesTo":{"const":["bpmn:CallActivity"]}}}]}}]}],"properties":{"properties":{"$ref":"#/definitions/properties","$id":"#/properties"},"engines":{"$id":"#/engines","type":"object","description":"Defines the compatibility of this element template with different engines. Keys are engine names, values are semantic version ranges.","default":{},"examples":[{"camunda":"^8.5"}],"properties":{"camunda":{"$id":"#/engines/camunda","type":"string","description":"A semantic version range that denotes compatible Camunda versions.","default":""}}},"icon":{"$id":"#/icon","type":"object","description":"Custom icon to be shown on the element","default":{},"properties":{"contents":{"$id":"#/icon/contents","type":"string","description":"The URL of an icon.","pattern":"^(https?|data):.*","errorMessage":{"pattern":"Malformed icon source, must be a valid HTTP(s) or data URL"}}},"required":["contents"],"errorMessage":{"required":{"contents":"missing icon contents"}}},"elementType":{"allOf":[{"allOf":[{"properties":{"eventDefinition":{"$id":"#/elementType/eventDefinition","enum":["bpmn:MessageEventDefinition"]}}},{"if":{"required":["eventDefinition"]},"then":{"properties":{"value":{"enum":["bpmn:StartEvent","bpmn:IntermediateCatchEvent","bpmn:IntermediateThrowEvent","bpmn:BoundaryEvent","bpmn:EndEvent"]}},"required":["value"]}}]}]},"groups":{"items":{"properties":{"tooltip":{"$id":"#/groups/group/tooltip","type":"string"},"openByDefault":{"$id":"#/groups/group/openByDefault","type":"boolean","description":"Specifies whether the Group should be opened when first viewed. Defaults to true.","default":true}}}}}};const pattern0 = new RegExp("^(https|http)://.*", "u");const pattern1 = new RegExp("^[\\w\\d]+:[\\w\\d]+$", "u");const pattern4 = new RegExp("^(https?|data):.*", "u");const obj0 = {"required":"missingProperty","dependencies":"property","dependentRequired":"property"};const func0 = requireEqual().default;const schema18 = {"allOf":[{"type":"array","description":"List of properties of the element template.","allOf":[{"examples":[[{"label":"Name","type":"String","binding":{"type":"property","name":"name"}}]]}],"items":{"type":"object","default":{},"allOf":[{"if":{"properties":{"type":{"const":"Dropdown"}},"required":["type"]},"then":{"required":["choices"],"errorMessage":"must provide choices=[] with \"Dropdown\" type"}},{"definitions":{"condition":{"type":"object","required":["property"],"properties":{"type":{"$id":"#/condition/type","const":"simple","description":"The type of the condition.","default":"simple"},"property":{"$id":"#/condition/property","type":"string","description":"The id of the property to check."}},"oneOf":[{"properties":{"equals":{"type":["string","number","boolean"]}},"required":["equals"]},{"properties":{"oneOf":{"type":"array","items":{"type":["string","number"]}}},"required":["oneOf"]},{"properties":{"isActive":{"type":"boolean","description":"For `true`, activates the property when given property is active"}},"required":["isActive"]}],"errorMessage":{"required":{"property":"missing property name for condition"}}},"conditionDependingOnId":{"required":["property"],"properties":{"property":{"const":{"$data":"2/id"}}}}},"allOf":[{"$comment":"property#condition should not depend on property#id","if":{"required":["id","condition"],"properties":{"condition":{"$ref":"#/definitions/properties/allOf/0/items/allOf/1/definitions/conditionDependingOnId"}}},"then":{"not":{"required":["condition"]},"errorMessage":"Invalid condition.property, must be different than property.id"}},{"then":{"errorMessage":"Invalid condition.property, must be different than property.id"}}],"properties":{"id":{"type":"string","description":"Unique identifier of the property."},"condition":{"type":"object","description":"Condition(s) to activate the binding.","allOf":[{"examples":[{"type":"simple","property":"httpMethod","equals":"GET"},{"type":"simple","property":"httpMethod","oneOf":["POST","PUT","DELETE"]},{"allMatch":[{"type":"simple","property":"authType","equals":"Basic"},{"type":"simple","property":"httpMethod","oneOf":["POST","PUT","DELETE"]}]}]}],"oneOf":[{"$ref":"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition"},{"properties":{"allMatch":{"$id":"#/allMatch","type":"array","items":{"$ref":"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition"},"minItems":1}},"required":["allMatch"]}]}}},{"if":{"properties":{"type":{"not":{"const":"Number"}}},"required":["type"]},"then":{"properties":{"value":{"type":["string","boolean"]}}}},{"if":{"oneOf":[{"properties":{"type":{"enum":["String","Text"]}},"required":["type"]},{"not":{"required":["type"]}}]},"then":{"properties":{"placeholder":{"type":"string"}}},"else":{"not":{"required":["placeholder"]}}}],"properties":{"value":{"$id":"#/properties/property/value","type":["string","number","boolean"],"description":"The value of a control field."},"description":{"$id":"#/properties/property/description","type":"string","description":"The description of a control field."},"label":{"$id":"#/properties/property/label","type":"string","description":"The label of a control field."},"type":{"$id":"#/properties/property/type","type":"string","description":"The type of a control field."},"editable":{"$id":"#/properties/property/editable","type":"boolean","description":"Indicates whether a control field is editable or not."},"choices":{"$id":"#/properties/property/choices","type":"array","description":"The choices for dropdown fields.","default":[],"items":{"$id":"#/properties/property/choices/item","type":"object","default":{},"properties":{"name":{"$id":"#/properties/property/choices/item/name","type":"string","description":"The name of a choice."},"value":{"$id":"#/properties/property/choices/item/value","type":"string","description":"The value of a choice."},"condition":{"$ref":"#/definitions/properties/allOf/0/items/allOf/1/properties/condition"}},"required":["value","name"],"errorMessage":{"required":"{ name, value } must be specified for \"Dropdown\" choices"}}},"constraints":{"$id":"#/properties/property/constraints","type":"object","description":"The validation constraints of a control field.","allOf":[{"examples":[{"notEmpty":true}]}],"properties":{"notEmpty":{"$id":"#/properties/property/constraints/notEmpty","type":"boolean","description":"The control field must not be empty."},"minLength":{"$id":"#/properties/property/constraints/minLength","type":"number","description":"The minimal length of a control field value."},"maxLength":{"$id":"#/properties/property/constraints/maxLength","type":"number","description":"The maximal length for a control field value."},"pattern":{"$id":"#/properties/property/constraints/pattern","description":"A regular expression pattern for a constraint.","oneOf":[{"type":"object","default":{},"properties":{"value":{"$id":"#/properties/property/constraints/pattern/value","type":"string","description":"The regular expression of a pattern."},"message":{"$id":"#/properties/property/constraints/pattern/message","type":"string","description":"The validation message of a pattern."}}},{"type":"string"}]}}},"group":{"$id":"#/properties/property/group","type":"string","description":"The custom group of a control field."}}}},{"$schema":"http://json-schema.org/draft-07/schema","type":"array","description":"List of properties of the element template.","items":{"type":"object","default":{},"required":["binding"],"allOf":[{"if":{"properties":{"binding":{"properties":{"type":{"const":"property"}},"required":["type"]}},"required":["binding"]},"then":{"properties":{"type":{"enum":["String","Text","Hidden","Dropdown","Boolean","Number"],"errorMessage":"invalid property type ${0} for binding type \"property\"; must be any of { String, Text, Hidden, Dropdown, Boolean, Number }"}}}},{"if":{"properties":{"binding":{"properties":{"type":{"enum":["zeebe:input","zeebe:output","zeebe:property","zeebe:taskHeader","zeebe:taskDefinition:type","bpmn:Message#property","bpmn:Message#zeebe:subscription#property","zeebe:taskDefinition","zeebe:calledElement","zeebe:linkedResource"]}},"required":["type"]}},"required":["binding"]},"then":{"properties":{"type":{"enum":["String","Text","Hidden","Dropdown","Boolean","Number"],"errorMessage":"invalid property type ${0} for binding type ${1/binding/type}; must be any of { String, Text, Hidden, Dropdown, Boolean, Number }"}}}},{"if":{"properties":{"optional":{"const":true}},"required":["optional"]},"then":{"properties":{"binding":{"properties":{"type":{"enum":["zeebe:input","zeebe:output","zeebe:property","zeebe:taskHeader"],"errorMessage":"optional is not supported for binding type ${0}; must be any of { zeebe:input, zeebe:output, zeebe:property, zeebe:taskHeader }"}},"required":["type"]}}}},{"if":{"properties":{"optional":{"const":true}},"required":["optional"]},"then":{"properties":{"constraints":{"properties":{"notEmpty":{"const":false,"errorMessage":"optional is not allowed for truthy \"notEmpty\" constraint"}},"required":["notEmpty"]}}}},{"if":{"properties":{"feel":{"not":{"const":null}}},"required":["feel"]},"then":{"properties":{"type":{"enum":["String","Text","Number","Boolean"],"errorMessage":"feel is only supported for \"String\", \"Text\", \"Number\" and \"Boolean\" type"}},"required":["type"]}},{"if":{"properties":{"language":{"not":{"const":null}}},"required":["language"]},"then":{"properties":{"type":{"enum":["Text"],"errorMessage":"language is only supported for \"Text\" type"}}}},{"if":{"required":["value"]},"then":{"not":{"required":["generatedValue"]}}},{"if":{"properties":{"type":{"enum":["Boolean","Dropdown"]}},"required":["type"]},"then":{"not":{"required":["generatedValue"]}}},{"if":{"properties":{"type":{"enum":["String","Text"]}},"required":["feel"]},"then":{"properties":{"feel":{"enum":["optional","required"]}}}},{"if":{"properties":{"feel":{"const":"required"}},"required":["feel"]},"then":{"properties":{"value":{"type":"string"}}}},{"if":{"properties":{"binding":{"properties":{"type":{"const":"zeebe:linkedResource"}},"required":["type"]}},"required":["binding"]},"then":{"properties":{"binding":{"properties":{"linkName":{"type":"string"},"property":{"enum":["resourceId","resourceType","bindingType","versionTag"],"errorMessage":"invalid binding.property ${0}; must be any of { resourceId, resourceType, bindingType, versionTag }"}},"required":["linkName","property"]}}}},{"allOf":[{"if":{"properties":{"binding":{"properties":{"type":{"enum":["zeebe:input","zeebe:output"]}},"required":["type"]},"type":{"enum":["Boolean","Number"]}},"required":["binding","type"]},"then":{"properties":{"feel":{"default":"static"}}}}]}],"properties":{"binding":{"$id":"#/properties/property/binding","type":"object","description":"Specifying how the property is mapped to BPMN or Zeebe extension elements and attributes.","required":["type"],"allOf":[{"if":{"properties":{"type":{"enum":["property","zeebe:property","zeebe:input","bpmn:Message#property","bpmn:Message#zeebe:subscription#property"]}},"required":["type"]},"then":{"required":["name"],"errorMessage":"property.binding ${0/type} requires name"}},{"if":{"properties":{"type":{"const":"zeebe:output"}},"required":["type"]},"then":{"required":["source"],"errorMessage":"property.binding ${0/type} requires source"}},{"if":{"properties":{"type":{"const":"zeebe:taskHeader"}},"required":["type"]},"then":{"required":["key"],"errorMessage":"property.binding ${0/type} requires key"}},{"if":{"properties":{"type":{"const":"zeebe:taskDefinition"}},"required":["type"]},"then":{"properties":{"property":{"enum":["type","retries"]}},"required":["property"]}},{"if":{"properties":{"type":{"const":"zeebe:taskDefinition:type"}},"required":["type"]},"then":{"deprecated":true}},{"if":{"properties":{"type":{"const":"zeebe:calledElement"}},"required":["type"]},"then":{"properties":{"property":{"const":"processId"}},"required":["property"]}},{"examples":[{"type":"property","name":"name"},{"type":"zeebe:input","name":"input"},{"type":"zeebe:output","source":"output"},{"type":"zeebe:property","name":"property"},{"type":"zeebe:taskHeader","key":"key"},{"type":"zeebe:taskDefinition","property":"retries"},{"type":"zeebe:taskDefinition","property":"type"}]}],"properties":{"type":{"$id":"#/properties/property/binding/type","type":"string","description":"The type of a property binding.","enum":["property","zeebe:taskDefinition:type","zeebe:input","zeebe:output","zeebe:property","zeebe:taskHeader","bpmn:Message#property","bpmn:Message#zeebe:subscription#property","zeebe:taskDefinition","zeebe:calledElement","zeebe:linkedResource"],"errorMessage":"invalid property.binding type ${0}; must be any of { property, zeebe:taskDefinition:type, zeebe:input, zeebe:output, zeebe:property, zeebe:taskHeader, bpmn:Message#property, bpmn:Message#zeebe:subscription#property, zeebe:taskDefinition, zeebe:calledElement, zeebe:linkedResource }"},"name":{"$id":"#/properties/property/binding/name","type":"string","description":"The name of a property binding."},"source":{"$id":"#/properties/property/binding/source","type":"string","description":"The source value of a property binding (zeebe:output)."},"key":{"$id":"#/properties/property/binding/key","type":"string","description":"The key value of a property binding (zeebe:taskHeader)."},"property":{"$id":"#/properties/property/binding/property","type":"string","description":"The name of the property defined in the binding."},"linkName":{"$id":"#/properties/property/binding/linkName","type":"string","description":"The `linkName` of the element (zeebe:linkedResource)."}}},"optional":{"$id":"#/optional","type":"boolean","description":"Indicates whether a property is optional. Optional bindings do not persist empty values in the underlying BPMN 2.0 XML."},"feel":{"$id":"#/properties/property/feel","type":"string","description":"Indicates whether the property can be a feel expression","enum":["optional","required","static"]},"language":{"$id":"#/properties/property/language","type":"string","description":"Indicates that the field is a custom language editor"},"generatedValue":{"$id":"#/properties/property/generatedValue","type":"object","required":["type"],"properties":{"type":{"const":"uuid"}},"description":"Sets property to a generated value according to given scheme."},"tooltip":{"$id":"#/properties/property/tooltip","type":"string","description":"Hints for the control field."}},"errorMessage":{"required":{"binding":"missing binding for property \"${0#}\""}}}}]};const schema19 = {"required":["property"],"properties":{"property":{"const":{"$data":"2/id"}}}};const schema20 = {"type":"object","required":["property"],"properties":{"type":{"$id":"#/condition/type","const":"simple","description":"The type of the condition.","default":"simple"},"property":{"$id":"#/condition/property","type":"string","description":"The id of the property to check."}},"oneOf":[{"properties":{"equals":{"type":["string","number","boolean"]}},"required":["equals"]},{"properties":{"oneOf":{"type":"array","items":{"type":["string","number"]}}},"required":["oneOf"]},{"properties":{"isActive":{"type":"boolean","description":"For `true`, activates the property when given property is active"}},"required":["isActive"]}],"errorMessage":{"required":{"property":"missing property name for condition"}}};function validate17(data, {instancePath="", parentData, parentDataProperty, rootData=data}={}){let vErrors = null;let errors = 0;if(!(data && typeof data == "object" && !Array.isArray(data))){const err0 = {instancePath,schemaPath:"#/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err0];}else {vErrors.push(err0);}errors++;}const _errs1 = errors;let valid0 = false;let passing0 = null;const _errs2 = errors;const _errs5 = errors;let valid2 = false;let passing1 = null;const _errs6 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.equals === undefined){const err1 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/required",keyword:"required",params:{missingProperty: "equals"},message:"must have required property '"+"equals"+"'"};if(vErrors === null){vErrors = [err1];}else {vErrors.push(err1);}errors++;}if(data.equals !== undefined){let data0 = data.equals;if(((typeof data0 !== "string") && (!(typeof data0 == "number"))) && (typeof data0 !== "boolean")){const err2 = {instancePath:instancePath+"/equals",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/properties/equals/type",keyword:"type",params:{type: schema20.oneOf[0].properties.equals.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err2];}else {vErrors.push(err2);}errors++;}}}var _valid1 = _errs6 === errors;if(_valid1){valid2 = true;passing1 = 0;}const _errs9 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.oneOf === undefined){const err3 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "oneOf"},message:"must have required property '"+"oneOf"+"'"};if(vErrors === null){vErrors = [err3];}else {vErrors.push(err3);}errors++;}if(data.oneOf !== undefined){let data1 = data.oneOf;if(Array.isArray(data1)){const len0 = data1.length;for(let i0=0; i0<len0; i0++){let data2 = data1[i0];if((typeof data2 !== "string") && (!(typeof data2 == "number"))){const err4 = {instancePath:instancePath+"/oneOf/" + i0,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/items/type",keyword:"type",params:{type: schema20.oneOf[1].properties.oneOf.items.type},message:"must be string,number"};if(vErrors === null){vErrors = [err4];}else {vErrors.push(err4);}errors++;}}}else {const err5 = {instancePath:instancePath+"/oneOf",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err5];}else {vErrors.push(err5);}errors++;}}}var _valid1 = _errs9 === errors;if(_valid1 && valid2){valid2 = false;passing1 = [passing1, 1];}else {if(_valid1){valid2 = true;passing1 = 1;}const _errs14 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.isActive === undefined){const err6 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/required",keyword:"required",params:{missingProperty: "isActive"},message:"must have required property '"+"isActive"+"'"};if(vErrors === null){vErrors = [err6];}else {vErrors.push(err6);}errors++;}if(data.isActive !== undefined){if(typeof data.isActive !== "boolean"){const err7 = {instancePath:instancePath+"/isActive",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/properties/isActive/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err7];}else {vErrors.push(err7);}errors++;}}}var _valid1 = _errs14 === errors;if(_valid1 && valid2){valid2 = false;passing1 = [passing1, 2];}else {if(_valid1){valid2 = true;passing1 = 2;}}}if(!valid2){const err8 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing1},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err8];}else {vErrors.push(err8);}errors++;}else {errors = _errs5;if(vErrors !== null){if(_errs5){vErrors.length = _errs5;}else {vErrors = null;}}}if(data && typeof data == "object" && !Array.isArray(data)){if(data.property === undefined){const err9 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err9];}else {vErrors.push(err9);}errors++;}if(data.type !== undefined){if("simple" !== data.type){const err10 = {instancePath:instancePath+"/type",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/type/const",keyword:"const",params:{allowedValue: "simple"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err10];}else {vErrors.push(err10);}errors++;}}if(data.property !== undefined){if(typeof data.property !== "string"){const err11 = {instancePath:instancePath+"/property",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err11];}else {vErrors.push(err11);}errors++;}}}else {const err12 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err12];}else {vErrors.push(err12);}errors++;}if(errors > 0){const emErrors0 = {"required":{"property":[]}};const templates0 = {required:{}};let emPropParams0;let emParamsErrors0;for(const err13 of vErrors){if((((((err13.keyword !== "errorMessage") && (!err13.emUsed)) && (err13.instancePath === instancePath)) && (err13.keyword in emErrors0)) && (err13.schemaPath.indexOf("#/definitions/properties/allOf/0/items/allOf/1/definitions/condition") === 0)) && (/^\/[^\/]*$/.test(err13.schemaPath.slice(68)))){emPropParams0 = obj0[err13.keyword];emParamsErrors0 = emErrors0[err13.keyword][err13.params[emPropParams0]];if(emParamsErrors0){emParamsErrors0.push(err13);err13.emUsed = true;}}}for(const key0 in emErrors0){for(const keyProp0 in emErrors0[key0]){emParamsErrors0 = emErrors0[key0][keyProp0];if(emParamsErrors0.length){const tmpl0 = templates0[key0] && templates0[key0][keyProp0];const err14 = {instancePath,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors0},message:tmpl0 ? tmpl0() : schema20.errorMessage[key0][keyProp0]};if(vErrors === null){vErrors = [err14];}else {vErrors.push(err14);}errors++;}}}const emErrs0 = [];for(const err15 of vErrors){if(!err15.emUsed){emErrs0.push(err15);}}vErrors = emErrs0;errors = emErrs0.length;}var _valid0 = _errs2 === errors;if(_valid0){valid0 = true;passing0 = 0;}const _errs20 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.allMatch === undefined){const err16 = {instancePath,schemaPath:"#/oneOf/1/required",keyword:"required",params:{missingProperty: "allMatch"},message:"must have required property '"+"allMatch"+"'"};if(vErrors === null){vErrors = [err16];}else {vErrors.push(err16);}errors++;}if(data.allMatch !== undefined){let data6 = data.allMatch;if(Array.isArray(data6)){if(data6.length < 1){const err17 = {instancePath:instancePath+"/allMatch",schemaPath:"#/oneOf/1/properties/allMatch/minItems",keyword:"minItems",params:{limit: 1},message:"must NOT have fewer than 1 items"};if(vErrors === null){vErrors = [err17];}else {vErrors.push(err17);}errors++;}const len1 = data6.length;for(let i1=0; i1<len1; i1++){let data7 = data6[i1];const _errs26 = errors;let valid13 = false;let passing2 = null;const _errs27 = errors;if(data7 && typeof data7 == "object" && !Array.isArray(data7)){if(data7.equals === undefined){const err18 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/required",keyword:"required",params:{missingProperty: "equals"},message:"must have required property '"+"equals"+"'"};if(vErrors === null){vErrors = [err18];}else {vErrors.push(err18);}errors++;}if(data7.equals !== undefined){let data8 = data7.equals;if(((typeof data8 !== "string") && (!(typeof data8 == "number"))) && (typeof data8 !== "boolean")){const err19 = {instancePath:instancePath+"/allMatch/" + i1+"/equals",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/properties/equals/type",keyword:"type",params:{type: schema20.oneOf[0].properties.equals.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err19];}else {vErrors.push(err19);}errors++;}}}var _valid2 = _errs27 === errors;if(_valid2){valid13 = true;passing2 = 0;}const _errs30 = errors;if(data7 && typeof data7 == "object" && !Array.isArray(data7)){if(data7.oneOf === undefined){const err20 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "oneOf"},message:"must have required property '"+"oneOf"+"'"};if(vErrors === null){vErrors = [err20];}else {vErrors.push(err20);}errors++;}if(data7.oneOf !== undefined){let data9 = data7.oneOf;if(Array.isArray(data9)){const len2 = data9.length;for(let i2=0; i2<len2; i2++){let data10 = data9[i2];if((typeof data10 !== "string") && (!(typeof data10 == "number"))){const err21 = {instancePath:instancePath+"/allMatch/" + i1+"/oneOf/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/items/type",keyword:"type",params:{type: schema20.oneOf[1].properties.oneOf.items.type},message:"must be string,number"};if(vErrors === null){vErrors = [err21];}else {vErrors.push(err21);}errors++;}}}else {const err22 = {instancePath:instancePath+"/allMatch/" + i1+"/oneOf",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err22];}else {vErrors.push(err22);}errors++;}}}var _valid2 = _errs30 === errors;if(_valid2 && valid13){valid13 = false;passing2 = [passing2, 1];}else {if(_valid2){valid13 = true;passing2 = 1;}const _errs35 = errors;if(data7 && typeof data7 == "object" && !Array.isArray(data7)){if(data7.isActive === undefined){const err23 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/required",keyword:"required",params:{missingProperty: "isActive"},message:"must have required property '"+"isActive"+"'"};if(vErrors === null){vErrors = [err23];}else {vErrors.push(err23);}errors++;}if(data7.isActive !== undefined){if(typeof data7.isActive !== "boolean"){const err24 = {instancePath:instancePath+"/allMatch/" + i1+"/isActive",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/properties/isActive/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err24];}else {vErrors.push(err24);}errors++;}}}var _valid2 = _errs35 === errors;if(_valid2 && valid13){valid13 = false;passing2 = [passing2, 2];}else {if(_valid2){valid13 = true;passing2 = 2;}}}if(!valid13){const err25 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing2},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err25];}else {vErrors.push(err25);}errors++;}else {errors = _errs26;if(vErrors !== null){if(_errs26){vErrors.length = _errs26;}else {vErrors = null;}}}if(data7 && typeof data7 == "object" && !Array.isArray(data7)){if(data7.property === undefined){const err26 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err26];}else {vErrors.push(err26);}errors++;}if(data7.type !== undefined){if("simple" !== data7.type){const err27 = {instancePath:instancePath+"/allMatch/" + i1+"/type",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/type/const",keyword:"const",params:{allowedValue: "simple"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err27];}else {vErrors.push(err27);}errors++;}}if(data7.property !== undefined){if(typeof data7.property !== "string"){const err28 = {instancePath:instancePath+"/allMatch/" + i1+"/property",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err28];}else {vErrors.push(err28);}errors++;}}}else {const err29 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err29];}else {vErrors.push(err29);}errors++;}if(errors > 0){const emErrors1 = {"required":{"property":[]}};const templates1 = {required:{}};let emPropParams1;let emParamsErrors1;for(const err30 of vErrors){if((((((err30.keyword !== "errorMessage") && (!err30.emUsed)) && (err30.instancePath === instancePath+"/allMatch/" + i1)) && (err30.keyword in emErrors1)) && (err30.schemaPath.indexOf("#/definitions/properties/allOf/0/items/allOf/1/definitions/condition") === 0)) && (/^\/[^\/]*$/.test(err30.schemaPath.slice(68)))){emPropParams1 = obj0[err30.keyword];emParamsErrors1 = emErrors1[err30.keyword][err30.params[emPropParams1]];if(emParamsErrors1){emParamsErrors1.push(err30);err30.emUsed = true;}}}for(const key1 in emErrors1){for(const keyProp1 in emErrors1[key1]){emParamsErrors1 = emErrors1[key1][keyProp1];if(emParamsErrors1.length){const tmpl1 = templates1[key1] && templates1[key1][keyProp1];const err31 = {instancePath:instancePath+"/allMatch/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors1},message:tmpl1 ? tmpl1() : schema20.errorMessage[key1][keyProp1]};if(vErrors === null){vErrors = [err31];}else {vErrors.push(err31);}errors++;}}}const emErrs1 = [];for(const err32 of vErrors){if(!err32.emUsed){emErrs1.push(err32);}}vErrors = emErrs1;errors = emErrs1.length;}}}else {const err33 = {instancePath:instancePath+"/allMatch",schemaPath:"#/oneOf/1/properties/allMatch/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err33];}else {vErrors.push(err33);}errors++;}}}var _valid0 = _errs20 === errors;if(_valid0 && valid0){valid0 = false;passing0 = [passing0, 1];}else {if(_valid0){valid0 = true;passing0 = 1;}}if(!valid0){const err34 = {instancePath,schemaPath:"#/oneOf",keyword:"oneOf",params:{passingSchemas: passing0},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err34];}else {vErrors.push(err34);}errors++;}else {errors = _errs1;if(vErrors !== null){if(_errs1){vErrors.length = _errs1;}else {vErrors = null;}}}validate17.errors = vErrors;return errors === 0;}function validate16(data, {instancePath="", parentData, parentDataProperty, rootData=data}={}){let vErrors = null;let errors = 0;if(Array.isArray(data)){const len0 = data.length;for(let i0=0; i0<len0; i0++){let data0 = data[i0];const _errs5 = errors;let valid5 = true;const _errs6 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.type === undefined) && ("type")){const err0 = {};if(vErrors === null){vErrors = [err0];}else {vErrors.push(err0);}errors++;}else {if(data0.type !== undefined){if("Dropdown" !== data0.type){const err1 = {};if(vErrors === null){vErrors = [err1];}else {vErrors.push(err1);}errors++;}}}}var _valid0 = _errs6 === errors;errors = _errs5;if(vErrors !== null){if(_errs5){vErrors.length = _errs5;}else {vErrors = null;}}if(_valid0){const _errs8 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.choices === undefined){const err2 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/0/then/required",keyword:"required",params:{missingProperty: "choices"},message:"must have required property '"+"choices"+"'"};if(vErrors === null){vErrors = [err2];}else {vErrors.push(err2);}errors++;}}if(errors > 0){const emErrs0 = [];for(const err3 of vErrors){if(((((err3.keyword !== "errorMessage") && (!err3.emUsed)) && ((err3.instancePath === instancePath+"/" + i0) || ((err3.instancePath.indexOf(instancePath+"/" + i0) === 0) && (err3.instancePath[instancePath+"/" + i0.length] === "/")))) && (err3.schemaPath.indexOf("#/allOf/0/items/allOf/0/then") === 0)) && (err3.schemaPath["#/allOf/0/items/allOf/0/then".length] === "/")){emErrs0.push(err3);err3.emUsed = true;}}if(emErrs0.length){const err4 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/0/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs0},message:"must provide choices=[] with \"Dropdown\" type"};if(vErrors === null){vErrors = [err4];}else {vErrors.push(err4);}errors++;}const emErrs1 = [];for(const err5 of vErrors){if(!err5.emUsed){emErrs1.push(err5);}}vErrors = emErrs1;errors = emErrs1.length;}var _valid0 = _errs8 === errors;valid5 = _valid0;}if(!valid5){const err6 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err6];}else {vErrors.push(err6);}errors++;}const _errs12 = errors;let valid8 = true;const _errs13 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(((data0.id === undefined) && ("id")) || ((data0.condition === undefined) && ("condition"))){const err7 = {};if(vErrors === null){vErrors = [err7];}else {vErrors.push(err7);}errors++;}else {if(data0.condition !== undefined){let data2 = data0.condition;if(data2 && typeof data2 == "object" && !Array.isArray(data2)){if((data2.property === undefined) && ("property")){const err8 = {};if(vErrors === null){vErrors = [err8];}else {vErrors.push(err8);}errors++;}else {if(data2.property !== undefined){if(!func0(data2.property, schema19.properties.property.const)){const err9 = {};if(vErrors === null){vErrors = [err9];}else {vErrors.push(err9);}errors++;}}}}}}}var _valid1 = _errs13 === errors;errors = _errs12;if(vErrors !== null){if(_errs12){vErrors.length = _errs12;}else {vErrors = null;}}if(_valid1){const _errs17 = errors;const _errs18 = errors;const _errs19 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.condition === undefined) && ("condition")){const err10 = {};if(vErrors === null){vErrors = [err10];}else {vErrors.push(err10);}errors++;}}var valid12 = _errs19 === errors;if(valid12){const err11 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/1/allOf/0/then/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors === null){vErrors = [err11];}else {vErrors.push(err11);}errors++;}else {errors = _errs18;if(vErrors !== null){if(_errs18){vErrors.length = _errs18;}else {vErrors = null;}}}if(errors > 0){const emErrs2 = [];for(const err12 of vErrors){if(((((err12.keyword !== "errorMessage") && (!err12.emUsed)) && ((err12.instancePath === instancePath+"/" + i0) || ((err12.instancePath.indexOf(instancePath+"/" + i0) === 0) && (err12.instancePath[instancePath+"/" + i0.length] === "/")))) && (err12.schemaPath.indexOf("#/allOf/0/items/allOf/1/allOf/0/then") === 0)) && (err12.schemaPath["#/allOf/0/items/allOf/1/allOf/0/then".length] === "/")){emErrs2.push(err12);err12.emUsed = true;}}if(emErrs2.length){const err13 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/1/allOf/0/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs2},message:"Invalid condition.property, must be different than property.id"};if(vErrors === null){vErrors = [err13];}else {vErrors.push(err13);}errors++;}const emErrs3 = [];for(const err14 of vErrors){if(!err14.emUsed){emErrs3.push(err14);}}vErrors = emErrs3;errors = emErrs3.length;}var _valid1 = _errs17 === errors;valid8 = _valid1;}if(!valid8){const err15 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/1/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err15];}else {vErrors.push(err15);}errors++;}if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.id !== undefined){if(typeof data0.id !== "string"){const err16 = {instancePath:instancePath+"/" + i0+"/id",schemaPath:"#/allOf/0/items/allOf/1/properties/id/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err16];}else {vErrors.push(err16);}errors++;}}if(data0.condition !== undefined){let data5 = data0.condition;if(!(data5 && typeof data5 == "object" && !Array.isArray(data5))){const err17 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err17];}else {vErrors.push(err17);}errors++;}const _errs25 = errors;let valid14 = false;let passing0 = null;const _errs26 = errors;const _errs29 = errors;let valid16 = false;let passing1 = null;const _errs30 = errors;if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.equals === undefined){const err18 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/required",keyword:"required",params:{missingProperty: "equals"},message:"must have required property '"+"equals"+"'"};if(vErrors === null){vErrors = [err18];}else {vErrors.push(err18);}errors++;}if(data5.equals !== undefined){let data6 = data5.equals;if(((typeof data6 !== "string") && (!(typeof data6 == "number"))) && (typeof data6 !== "boolean")){const err19 = {instancePath:instancePath+"/" + i0+"/condition/equals",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/properties/equals/type",keyword:"type",params:{type: schema20.oneOf[0].properties.equals.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err19];}else {vErrors.push(err19);}errors++;}}}var _valid3 = _errs30 === errors;if(_valid3){valid16 = true;passing1 = 0;}const _errs33 = errors;if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.oneOf === undefined){const err20 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "oneOf"},message:"must have required property '"+"oneOf"+"'"};if(vErrors === null){vErrors = [err20];}else {vErrors.push(err20);}errors++;}if(data5.oneOf !== undefined){let data7 = data5.oneOf;if(Array.isArray(data7)){const len1 = data7.length;for(let i1=0; i1<len1; i1++){let data8 = data7[i1];if((typeof data8 !== "string") && (!(typeof data8 == "number"))){const err21 = {instancePath:instancePath+"/" + i0+"/condition/oneOf/" + i1,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/items/type",keyword:"type",params:{type: schema20.oneOf[1].properties.oneOf.items.type},message:"must be string,number"};if(vErrors === null){vErrors = [err21];}else {vErrors.push(err21);}errors++;}}}else {const err22 = {instancePath:instancePath+"/" + i0+"/condition/oneOf",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err22];}else {vErrors.push(err22);}errors++;}}}var _valid3 = _errs33 === errors;if(_valid3 && valid16){valid16 = false;passing1 = [passing1, 1];}else {if(_valid3){valid16 = true;passing1 = 1;}const _errs38 = errors;if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.isActive === undefined){const err23 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/required",keyword:"required",params:{missingProperty: "isActive"},message:"must have required property '"+"isActive"+"'"};if(vErrors === null){vErrors = [err23];}else {vErrors.push(err23);}errors++;}if(data5.isActive !== undefined){if(typeof data5.isActive !== "boolean"){const err24 = {instancePath:instancePath+"/" + i0+"/condition/isActive",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/properties/isActive/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err24];}else {vErrors.push(err24);}errors++;}}}var _valid3 = _errs38 === errors;if(_valid3 && valid16){valid16 = false;passing1 = [passing1, 2];}else {if(_valid3){valid16 = true;passing1 = 2;}}}if(!valid16){const err25 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing1},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err25];}else {vErrors.push(err25);}errors++;}else {errors = _errs29;if(vErrors !== null){if(_errs29){vErrors.length = _errs29;}else {vErrors = null;}}}if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.property === undefined){const err26 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err26];}else {vErrors.push(err26);}errors++;}if(data5.type !== undefined){if("simple" !== data5.type){const err27 = {instancePath:instancePath+"/" + i0+"/condition/type",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/type/const",keyword:"const",params:{allowedValue: "simple"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err27];}else {vErrors.push(err27);}errors++;}}if(data5.property !== undefined){if(typeof data5.property !== "string"){const err28 = {instancePath:instancePath+"/" + i0+"/condition/property",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err28];}else {vErrors.push(err28);}errors++;}}}else {const err29 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err29];}else {vErrors.push(err29);}errors++;}if(errors > 0){const emErrors0 = {"required":{"property":[]}};const templates0 = {required:{}};let emPropParams0;let emParamsErrors0;for(const err30 of vErrors){if((((((err30.keyword !== "errorMessage") && (!err30.emUsed)) && (err30.instancePath === instancePath+"/" + i0+"/condition")) && (err30.keyword in emErrors0)) && (err30.schemaPath.indexOf("#/definitions/properties/allOf/0/items/allOf/1/definitions/condition") === 0)) && (/^\/[^\/]*$/.test(err30.schemaPath.slice(68)))){emPropParams0 = obj0[err30.keyword];emParamsErrors0 = emErrors0[err30.keyword][err30.params[emPropParams0]];if(emParamsErrors0){emParamsErrors0.push(err30);err30.emUsed = true;}}}for(const key0 in emErrors0){for(const keyProp0 in emErrors0[key0]){emParamsErrors0 = emErrors0[key0][keyProp0];if(emParamsErrors0.length){const tmpl0 = templates0[key0] && templates0[key0][keyProp0];const err31 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors0},message:tmpl0 ? tmpl0() : schema20.errorMessage[key0][keyProp0]};if(vErrors === null){vErrors = [err31];}else {vErrors.push(err31);}errors++;}}}const emErrs4 = [];for(const err32 of vErrors){if(!err32.emUsed){emErrs4.push(err32);}}vErrors = emErrs4;errors = emErrs4.length;}var _valid2 = _errs26 === errors;if(_valid2){valid14 = true;passing0 = 0;}const _errs44 = errors;if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.allMatch === undefined){const err33 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "allMatch"},message:"must have required property '"+"allMatch"+"'"};if(vErrors === null){vErrors = [err33];}else {vErrors.push(err33);}errors++;}if(data5.allMatch !== undefined){let data12 = data5.allMatch;if(Array.isArray(data12)){if(data12.length < 1){const err34 = {instancePath:instancePath+"/" + i0+"/condition/allMatch",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/oneOf/1/properties/allMatch/minItems",keyword:"minItems",params:{limit: 1},message:"must NOT have fewer than 1 items"};if(vErrors === null){vErrors = [err34];}else {vErrors.push(err34);}errors++;}const len2 = data12.length;for(let i2=0; i2<len2; i2++){let data13 = data12[i2];const _errs50 = errors;let valid27 = false;let passing2 = null;const _errs51 = errors;if(data13 && typeof data13 == "object" && !Array.isArray(data13)){if(data13.equals === undefined){const err35 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/required",keyword:"required",params:{missingProperty: "equals"},message:"must have required property '"+"equals"+"'"};if(vErrors === null){vErrors = [err35];}else {vErrors.push(err35);}errors++;}if(data13.equals !== undefined){let data14 = data13.equals;if(((typeof data14 !== "string") && (!(typeof data14 == "number"))) && (typeof data14 !== "boolean")){const err36 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/equals",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/0/properties/equals/type",keyword:"type",params:{type: schema20.oneOf[0].properties.equals.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err36];}else {vErrors.push(err36);}errors++;}}}var _valid4 = _errs51 === errors;if(_valid4){valid27 = true;passing2 = 0;}const _errs54 = errors;if(data13 && typeof data13 == "object" && !Array.isArray(data13)){if(data13.oneOf === undefined){const err37 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/required",keyword:"required",params:{missingProperty: "oneOf"},message:"must have required property '"+"oneOf"+"'"};if(vErrors === null){vErrors = [err37];}else {vErrors.push(err37);}errors++;}if(data13.oneOf !== undefined){let data15 = data13.oneOf;if(Array.isArray(data15)){const len3 = data15.length;for(let i3=0; i3<len3; i3++){let data16 = data15[i3];if((typeof data16 !== "string") && (!(typeof data16 == "number"))){const err38 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/oneOf/" + i3,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/items/type",keyword:"type",params:{type: schema20.oneOf[1].properties.oneOf.items.type},message:"must be string,number"};if(vErrors === null){vErrors = [err38];}else {vErrors.push(err38);}errors++;}}}else {const err39 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/oneOf",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/1/properties/oneOf/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err39];}else {vErrors.push(err39);}errors++;}}}var _valid4 = _errs54 === errors;if(_valid4 && valid27){valid27 = false;passing2 = [passing2, 1];}else {if(_valid4){valid27 = true;passing2 = 1;}const _errs59 = errors;if(data13 && typeof data13 == "object" && !Array.isArray(data13)){if(data13.isActive === undefined){const err40 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/required",keyword:"required",params:{missingProperty: "isActive"},message:"must have required property '"+"isActive"+"'"};if(vErrors === null){vErrors = [err40];}else {vErrors.push(err40);}errors++;}if(data13.isActive !== undefined){if(typeof data13.isActive !== "boolean"){const err41 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/isActive",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf/2/properties/isActive/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err41];}else {vErrors.push(err41);}errors++;}}}var _valid4 = _errs59 === errors;if(_valid4 && valid27){valid27 = false;passing2 = [passing2, 2];}else {if(_valid4){valid27 = true;passing2 = 2;}}}if(!valid27){const err42 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing2},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err42];}else {vErrors.push(err42);}errors++;}else {errors = _errs50;if(vErrors !== null){if(_errs50){vErrors.length = _errs50;}else {vErrors = null;}}}if(data13 && typeof data13 == "object" && !Array.isArray(data13)){if(data13.property === undefined){const err43 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err43];}else {vErrors.push(err43);}errors++;}if(data13.type !== undefined){if("simple" !== data13.type){const err44 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/type",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/type/const",keyword:"const",params:{allowedValue: "simple"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err44];}else {vErrors.push(err44);}errors++;}}if(data13.property !== undefined){if(typeof data13.property !== "string"){const err45 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2+"/property",schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err45];}else {vErrors.push(err45);}errors++;}}}else {const err46 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err46];}else {vErrors.push(err46);}errors++;}if(errors > 0){const emErrors1 = {"required":{"property":[]}};const templates1 = {required:{}};let emPropParams1;let emParamsErrors1;for(const err47 of vErrors){if((((((err47.keyword !== "errorMessage") && (!err47.emUsed)) && (err47.instancePath === instancePath+"/" + i0+"/condition/allMatch/" + i2)) && (err47.keyword in emErrors1)) && (err47.schemaPath.indexOf("#/definitions/properties/allOf/0/items/allOf/1/definitions/condition") === 0)) && (/^\/[^\/]*$/.test(err47.schemaPath.slice(68)))){emPropParams1 = obj0[err47.keyword];emParamsErrors1 = emErrors1[err47.keyword][err47.params[emPropParams1]];if(emParamsErrors1){emParamsErrors1.push(err47);err47.emUsed = true;}}}for(const key1 in emErrors1){for(const keyProp1 in emErrors1[key1]){emParamsErrors1 = emErrors1[key1][keyProp1];if(emParamsErrors1.length){const tmpl1 = templates1[key1] && templates1[key1][keyProp1];const err48 = {instancePath:instancePath+"/" + i0+"/condition/allMatch/" + i2,schemaPath:"#/definitions/properties/allOf/0/items/allOf/1/definitions/condition/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors1},message:tmpl1 ? tmpl1() : schema20.errorMessage[key1][keyProp1]};if(vErrors === null){vErrors = [err48];}else {vErrors.push(err48);}errors++;}}}const emErrs5 = [];for(const err49 of vErrors){if(!err49.emUsed){emErrs5.push(err49);}}vErrors = emErrs5;errors = emErrs5.length;}}}else {const err50 = {instancePath:instancePath+"/" + i0+"/condition/allMatch",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/oneOf/1/properties/allMatch/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err50];}else {vErrors.push(err50);}errors++;}}}var _valid2 = _errs44 === errors;if(_valid2 && valid14){valid14 = false;passing0 = [passing0, 1];}else {if(_valid2){valid14 = true;passing0 = 1;}}if(!valid14){const err51 = {instancePath:instancePath+"/" + i0+"/condition",schemaPath:"#/allOf/0/items/allOf/1/properties/condition/oneOf",keyword:"oneOf",params:{passingSchemas: passing0},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err51];}else {vErrors.push(err51);}errors++;}else {errors = _errs25;if(vErrors !== null){if(_errs25){vErrors.length = _errs25;}else {vErrors = null;}}}}}const _errs66 = errors;let valid35 = true;const _errs67 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.type === undefined) && ("type")){const err52 = {};if(vErrors === null){vErrors = [err52];}else {vErrors.push(err52);}errors++;}else {if(data0.type !== undefined){const _errs69 = errors;const _errs70 = errors;if("Number" !== data0.type){const err53 = {};if(vErrors === null){vErrors = [err53];}else {vErrors.push(err53);}errors++;}var valid37 = _errs70 === errors;if(valid37){const err54 = {};if(vErrors === null){vErrors = [err54];}else {vErrors.push(err54);}errors++;}else {errors = _errs69;if(vErrors !== null){if(_errs69){vErrors.length = _errs69;}else {vErrors = null;}}}}}}var _valid5 = _errs67 === errors;errors = _errs66;if(vErrors !== null){if(_errs66){vErrors.length = _errs66;}else {vErrors = null;}}if(_valid5){const _errs71 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.value !== undefined){let data21 = data0.value;if((typeof data21 !== "string") && (typeof data21 !== "boolean")){const err55 = {instancePath:instancePath+"/" + i0+"/value",schemaPath:"#/allOf/0/items/allOf/2/then/properties/value/type",keyword:"type",params:{type: schema18.allOf[0].items.allOf[2].then.properties.value.type},message:"must be string,boolean"};if(vErrors === null){vErrors = [err55];}else {vErrors.push(err55);}errors++;}}}var _valid5 = _errs71 === errors;valid35 = _valid5;}if(!valid35){const err56 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/2/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err56];}else {vErrors.push(err56);}errors++;}const _errs75 = errors;let valid39 = true;const _errs76 = errors;const _errs77 = errors;let valid40 = false;const _errs78 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.type === undefined) && ("type")){const err57 = {};if(vErrors === null){vErrors = [err57];}else {vErrors.push(err57);}errors++;}else {if(data0.type !== undefined){let data22 = data0.type;if(!((data22 === "String") || (data22 === "Text"))){const err58 = {};if(vErrors === null){vErrors = [err58];}else {vErrors.push(err58);}errors++;}}}}var _valid7 = _errs78 === errors;if(_valid7){valid40 = true;}const _errs80 = errors;const _errs81 = errors;const _errs82 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.type === undefined) && ("type")){const err59 = {};if(vErrors === null){vErrors = [err59];}else {vErrors.push(err59);}errors++;}}var valid42 = _errs82 === errors;if(valid42){const err60 = {};if(vErrors === null){vErrors = [err60];}else {vErrors.push(err60);}errors++;}else {errors = _errs81;if(vErrors !== null){if(_errs81){vErrors.length = _errs81;}else {vErrors = null;}}}var _valid7 = _errs80 === errors;if(_valid7 && valid40){valid40 = false;}else {if(_valid7){valid40 = true;}}if(!valid40){const err61 = {};if(vErrors === null){vErrors = [err61];}else {vErrors.push(err61);}errors++;}else {errors = _errs77;if(vErrors !== null){if(_errs77){vErrors.length = _errs77;}else {vErrors = null;}}}var _valid6 = _errs76 === errors;errors = _errs75;if(vErrors !== null){if(_errs75){vErrors.length = _errs75;}else {vErrors = null;}}let ifClause0;if(_valid6){const _errs83 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.placeholder !== undefined){if(typeof data0.placeholder !== "string"){const err62 = {instancePath:instancePath+"/" + i0+"/placeholder",schemaPath:"#/allOf/0/items/allOf/3/then/properties/placeholder/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err62];}else {vErrors.push(err62);}errors++;}}}var _valid6 = _errs83 === errors;valid39 = _valid6;ifClause0 = "then";}else {const _errs86 = errors;const _errs87 = errors;const _errs88 = errors;if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if((data0.placeholder === undefined) && ("placeholder")){const err63 = {};if(vErrors === null){vErrors = [err63];}else {vErrors.push(err63);}errors++;}}var valid44 = _errs88 === errors;if(valid44){const err64 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/3/else/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors === null){vErrors = [err64];}else {vErrors.push(err64);}errors++;}else {errors = _errs87;if(vErrors !== null){if(_errs87){vErrors.length = _errs87;}else {vErrors = null;}}}var _valid6 = _errs86 === errors;valid39 = _valid6;ifClause0 = "else";}if(!valid39){const err65 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/allOf/3/if",keyword:"if",params:{failingKeyword: ifClause0},message:"must match \""+ifClause0+"\" schema"};if(vErrors === null){vErrors = [err65];}else {vErrors.push(err65);}errors++;}if(data0 && typeof data0 == "object" && !Array.isArray(data0)){if(data0.value !== undefined){let data24 = data0.value;if(((typeof data24 !== "string") && (!(typeof data24 == "number"))) && (typeof data24 !== "boolean")){const err66 = {instancePath:instancePath+"/" + i0+"/value",schemaPath:"#/allOf/0/items/properties/value/type",keyword:"type",params:{type: schema18.allOf[0].items.properties.value.type},message:"must be string,number,boolean"};if(vErrors === null){vErrors = [err66];}else {vErrors.push(err66);}errors++;}}if(data0.description !== undefined){if(typeof data0.description !== "string"){const err67 = {instancePath:instancePath+"/" + i0+"/description",schemaPath:"#/allOf/0/items/properties/description/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err67];}else {vErrors.push(err67);}errors++;}}if(data0.label !== undefined){if(typeof data0.label !== "string"){const err68 = {instancePath:instancePath+"/" + i0+"/label",schemaPath:"#/allOf/0/items/properties/label/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err68];}else {vErrors.push(err68);}errors++;}}if(data0.type !== undefined){if(typeof data0.type !== "string"){const err69 = {instancePath:instancePath+"/" + i0+"/type",schemaPath:"#/allOf/0/items/properties/type/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err69];}else {vErrors.push(err69);}errors++;}}if(data0.editable !== undefined){if(typeof data0.editable !== "boolean"){const err70 = {instancePath:instancePath+"/" + i0+"/editable",schemaPath:"#/allOf/0/items/properties/editable/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err70];}else {vErrors.push(err70);}errors++;}}if(data0.choices !== undefined){let data29 = data0.choices;if(Array.isArray(data29)){const len4 = data29.length;for(let i4=0; i4<len4; i4++){let data30 = data29[i4];if(data30 && typeof data30 == "object" && !Array.isArray(data30)){if(data30.value === undefined){const err71 = {instancePath:instancePath+"/" + i0+"/choices/" + i4,schemaPath:"#/allOf/0/items/properties/choices/items/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err71];}else {vErrors.push(err71);}errors++;}if(data30.name === undefined){const err72 = {instancePath:instancePath+"/" + i0+"/choices/" + i4,schemaPath:"#/allOf/0/items/properties/choices/items/required",keyword:"required",params:{missingProperty: "name"},message:"must have required property '"+"name"+"'"};if(vErrors === null){vErrors = [err72];}else {vErrors.push(err72);}errors++;}if(data30.name !== undefined){if(typeof data30.name !== "string"){const err73 = {instancePath:instancePath+"/" + i0+"/choices/" + i4+"/name",schemaPath:"#/allOf/0/items/properties/choices/items/properties/name/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err73];}else {vErrors.push(err73);}errors++;}}if(data30.value !== undefined){if(typeof data30.value !== "string"){const err74 = {instancePath:instancePath+"/" + i0+"/choices/" + i4+"/value",schemaPath:"#/allOf/0/items/properties/choices/items/properties/value/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err74];}else {vErrors.push(err74);}errors++;}}if(data30.condition !== undefined){if(!(validate17(data30.condition, {instancePath:instancePath+"/" + i0+"/choices/" + i4+"/condition",parentData:data30,parentDataProperty:"condition",rootData}))){vErrors = vErrors === null ? validate17.errors : vErrors.concat(validate17.errors);errors = vErrors.length;}}}else {const err75 = {instancePath:instancePath+"/" + i0+"/choices/" + i4,schemaPath:"#/allOf/0/items/properties/choices/items/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err75];}else {vErrors.push(err75);}errors++;}if(errors > 0){const emErrors2 = {"required":[]};const templates2 = {};for(const err76 of vErrors){if((((((err76.keyword !== "errorMessage") && (!err76.emUsed)) && (err76.instancePath === instancePath+"/" + i0+"/choices/" + i4)) && (err76.keyword in emErrors2)) && (err76.schemaPath.indexOf("#/allOf/0/items/properties/choices/items") === 0)) && (/^\/[^\/]*$/.test(err76.schemaPath.slice(40)))){emErrors2[err76.keyword].push(err76);err76.emUsed = true;}}for(const key2 in emErrors2){if(emErrors2[key2].length){const err77 = {instancePath:instancePath+"/" + i0+"/choices/" + i4,schemaPath:"#/allOf/0/items/properties/choices/items/errorMessage",keyword:"errorMessage",params:{errors: emErrors2[key2]},message:key2 in templates2 ? templates2[key2]() : schema18.allOf[0].items.properties.choices.items.errorMessage[key2]};if(vErrors === null){vErrors = [err77];}else {vErrors.push(err77);}errors++;}}const emErrs6 = [];for(const err78 of vErrors){if(!err78.emUsed){emErrs6.push(err78);}}vErrors = emErrs6;errors = emErrs6.length;}}}else {const err79 = {instancePath:instancePath+"/" + i0+"/choices",schemaPath:"#/allOf/0/items/properties/choices/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err79];}else {vErrors.push(err79);}errors++;}}if(data0.constraints !== undefined){let data34 = data0.constraints;if(data34 && typeof data34 == "object" && !Array.isArray(data34)){if(data34.notEmpty !== undefined){if(typeof data34.notEmpty !== "boolean"){const err80 = {instancePath:instancePath+"/" + i0+"/constraints/notEmpty",schemaPath:"#/allOf/0/items/properties/constraints/properties/notEmpty/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err80];}else {vErrors.push(err80);}errors++;}}if(data34.minLength !== undefined){if(!(typeof data34.minLength == "number")){const err81 = {instancePath:instancePath+"/" + i0+"/constraints/minLength",schemaPath:"#/allOf/0/items/properties/constraints/properties/minLength/type",keyword:"type",params:{type: "number"},message:"must be number"};if(vErrors === null){vErrors = [err81];}else {vErrors.push(err81);}errors++;}}if(data34.maxLength !== undefined){if(!(typeof data34.maxLength == "number")){const err82 = {instancePath:instancePath+"/" + i0+"/constraints/maxLength",schemaPath:"#/allOf/0/items/properties/constraints/properties/maxLength/type",keyword:"type",params:{type: "number"},message:"must be number"};if(vErrors === null){vErrors = [err82];}else {vErrors.push(err82);}errors++;}}if(data34.pattern !== undefined){let data38 = data34.pattern;const _errs117 = errors;let valid51 = false;let passing4 = null;const _errs118 = errors;if(data38 && typeof data38 == "object" && !Array.isArray(data38)){if(data38.value !== undefined){if(typeof data38.value !== "string"){const err83 = {instancePath:instancePath+"/" + i0+"/constraints/pattern/value",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf/0/properties/value/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err83];}else {vErrors.push(err83);}errors++;}}if(data38.message !== undefined){if(typeof data38.message !== "string"){const err84 = {instancePath:instancePath+"/" + i0+"/constraints/pattern/message",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf/0/properties/message/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err84];}else {vErrors.push(err84);}errors++;}}}else {const err85 = {instancePath:instancePath+"/" + i0+"/constraints/pattern",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf/0/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err85];}else {vErrors.push(err85);}errors++;}var _valid8 = _errs118 === errors;if(_valid8){valid51 = true;passing4 = 0;}const _errs124 = errors;if(typeof data38 !== "string"){const err86 = {instancePath:instancePath+"/" + i0+"/constraints/pattern",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf/1/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err86];}else {vErrors.push(err86);}errors++;}var _valid8 = _errs124 === errors;if(_valid8 && valid51){valid51 = false;passing4 = [passing4, 1];}else {if(_valid8){valid51 = true;passing4 = 1;}}if(!valid51){const err87 = {instancePath:instancePath+"/" + i0+"/constraints/pattern",schemaPath:"#/allOf/0/items/properties/constraints/properties/pattern/oneOf",keyword:"oneOf",params:{passingSchemas: passing4},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err87];}else {vErrors.push(err87);}errors++;}else {errors = _errs117;if(vErrors !== null){if(_errs117){vErrors.length = _errs117;}else {vErrors = null;}}}}}else {const err88 = {instancePath:instancePath+"/" + i0+"/constraints",schemaPath:"#/allOf/0/items/properties/constraints/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err88];}else {vErrors.push(err88);}errors++;}}if(data0.group !== undefined){if(typeof data0.group !== "string"){const err89 = {instancePath:instancePath+"/" + i0+"/group",schemaPath:"#/allOf/0/items/properties/group/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err89];}else {vErrors.push(err89);}errors++;}}}else {const err90 = {instancePath:instancePath+"/" + i0,schemaPath:"#/allOf/0/items/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err90];}else {vErrors.push(err90);}errors++;}}}else {const err91 = {instancePath,schemaPath:"#/allOf/0/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err91];}else {vErrors.push(err91);}errors++;}if(Array.isArray(data)){const len5 = data.length;for(let i5=0; i5<len5; i5++){let data42 = data[i5];const _errs133 = errors;let valid56 = true;const _errs134 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.binding === undefined) && ("binding")){const err92 = {};if(vErrors === null){vErrors = [err92];}else {vErrors.push(err92);}errors++;}else {if(data42.binding !== undefined){let data43 = data42.binding;if(data43 && typeof data43 == "object" && !Array.isArray(data43)){if((data43.type === undefined) && ("type")){const err93 = {};if(vErrors === null){vErrors = [err93];}else {vErrors.push(err93);}errors++;}else {if(data43.type !== undefined){if("property" !== data43.type){const err94 = {};if(vErrors === null){vErrors = [err94];}else {vErrors.push(err94);}errors++;}}}}}}}var _valid9 = _errs134 === errors;errors = _errs133;if(vErrors !== null){if(_errs133){vErrors.length = _errs133;}else {vErrors = null;}}if(_valid9){const _errs137 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.type !== undefined){let data45 = data42.type;if(!((((((data45 === "String") || (data45 === "Text")) || (data45 === "Hidden")) || (data45 === "Dropdown")) || (data45 === "Boolean")) || (data45 === "Number"))){const err95 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/0/then/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[0].then.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err95];}else {vErrors.push(err95);}errors++;}if(errors > 0){const emErrs7 = [];for(const err96 of vErrors){if(((((err96.keyword !== "errorMessage") && (!err96.emUsed)) && ((err96.instancePath === instancePath+"/" + i5+"/type") || ((err96.instancePath.indexOf(instancePath+"/" + i5+"/type") === 0) && (err96.instancePath[instancePath+"/" + i5+"/type".length] === "/")))) && (err96.schemaPath.indexOf("#/allOf/1/items/allOf/0/then/properties/type") === 0)) && (err96.schemaPath["#/allOf/1/items/allOf/0/then/properties/type".length] === "/")){emErrs7.push(err96);err96.emUsed = true;}}if(emErrs7.length){const err97 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/0/then/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs7},message:"invalid property type " + JSON.stringify(data45) + " for binding type \"property\"; must be any of { String, Text, Hidden, Dropdown, Boolean, Number }"};if(vErrors === null){vErrors = [err97];}else {vErrors.push(err97);}errors++;}const emErrs8 = [];for(const err98 of vErrors){if(!err98.emUsed){emErrs8.push(err98);}}vErrors = emErrs8;errors = emErrs8.length;}}}var _valid9 = _errs137 === errors;valid56 = _valid9;}if(!valid56){const err99 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err99];}else {vErrors.push(err99);}errors++;}const _errs140 = errors;let valid60 = true;const _errs141 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.binding === undefined) && ("binding")){const err100 = {};if(vErrors === null){vErrors = [err100];}else {vErrors.push(err100);}errors++;}else {if(data42.binding !== undefined){let data46 = data42.binding;if(data46 && typeof data46 == "object" && !Array.isArray(data46)){if((data46.type === undefined) && ("type")){const err101 = {};if(vErrors === null){vErrors = [err101];}else {vErrors.push(err101);}errors++;}else {if(data46.type !== undefined){let data47 = data46.type;if(!((((((((((data47 === "zeebe:input") || (data47 === "zeebe:output")) || (data47 === "zeebe:property")) || (data47 === "zeebe:taskHeader")) || (data47 === "zeebe:taskDefinition:type")) || (data47 === "bpmn:Message#property")) || (data47 === "bpmn:Message#zeebe:subscription#property")) || (data47 === "zeebe:taskDefinition")) || (data47 === "zeebe:calledElement")) || (data47 === "zeebe:linkedResource"))){const err102 = {};if(vErrors === null){vErrors = [err102];}else {vErrors.push(err102);}errors++;}}}}}}}var _valid10 = _errs141 === errors;errors = _errs140;if(vErrors !== null){if(_errs140){vErrors.length = _errs140;}else {vErrors = null;}}if(_valid10){const _errs144 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.type !== undefined){let data48 = data42.type;if(!((((((data48 === "String") || (data48 === "Text")) || (data48 === "Hidden")) || (data48 === "Dropdown")) || (data48 === "Boolean")) || (data48 === "Number"))){const err103 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/1/then/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[1].then.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err103];}else {vErrors.push(err103);}errors++;}if(errors > 0){const emErrs9 = [];for(const err104 of vErrors){if(((((err104.keyword !== "errorMessage") && (!err104.emUsed)) && ((err104.instancePath === instancePath+"/" + i5+"/type") || ((err104.instancePath.indexOf(instancePath+"/" + i5+"/type") === 0) && (err104.instancePath[instancePath+"/" + i5+"/type".length] === "/")))) && (err104.schemaPath.indexOf("#/allOf/1/items/allOf/1/then/properties/type") === 0)) && (err104.schemaPath["#/allOf/1/items/allOf/1/then/properties/type".length] === "/")){emErrs9.push(err104);err104.emUsed = true;}}if(emErrs9.length){const err105 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/1/then/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs9},message:"invalid property type " + JSON.stringify(data48) + " for binding type " + JSON.stringify(data42 && data42.binding && data42.binding.type) + "; must be any of { String, Text, Hidden, Dropdown, Boolean, Number }"};if(vErrors === null){vErrors = [err105];}else {vErrors.push(err105);}errors++;}const emErrs10 = [];for(const err106 of vErrors){if(!err106.emUsed){emErrs10.push(err106);}}vErrors = emErrs10;errors = emErrs10.length;}}}var _valid10 = _errs144 === errors;valid60 = _valid10;}if(!valid60){const err107 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/1/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err107];}else {vErrors.push(err107);}errors++;}const _errs147 = errors;let valid64 = true;const _errs148 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.optional === undefined) && ("optional")){const err108 = {};if(vErrors === null){vErrors = [err108];}else {vErrors.push(err108);}errors++;}else {if(data42.optional !== undefined){if(true !== data42.optional){const err109 = {};if(vErrors === null){vErrors = [err109];}else {vErrors.push(err109);}errors++;}}}}var _valid11 = _errs148 === errors;errors = _errs147;if(vErrors !== null){if(_errs147){vErrors.length = _errs147;}else {vErrors = null;}}if(_valid11){const _errs150 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.binding !== undefined){let data50 = data42.binding;if(data50 && typeof data50 == "object" && !Array.isArray(data50)){if(data50.type === undefined){const err110 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/allOf/2/then/properties/binding/required",keyword:"required",params:{missingProperty: "type"},message:"must have required property '"+"type"+"'"};if(vErrors === null){vErrors = [err110];}else {vErrors.push(err110);}errors++;}if(data50.type !== undefined){let data51 = data50.type;if(!((((data51 === "zeebe:input") || (data51 === "zeebe:output")) || (data51 === "zeebe:property")) || (data51 === "zeebe:taskHeader"))){const err111 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/allOf/2/then/properties/binding/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[2].then.properties.binding.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err111];}else {vErrors.push(err111);}errors++;}if(errors > 0){const emErrs11 = [];for(const err112 of vErrors){if(((((err112.keyword !== "errorMessage") && (!err112.emUsed)) && ((err112.instancePath === instancePath+"/" + i5+"/binding/type") || ((err112.instancePath.indexOf(instancePath+"/" + i5+"/binding/type") === 0) && (err112.instancePath[instancePath+"/" + i5+"/binding/type".length] === "/")))) && (err112.schemaPath.indexOf("#/allOf/1/items/allOf/2/then/properties/binding/properties/type") === 0)) && (err112.schemaPath["#/allOf/1/items/allOf/2/then/properties/binding/properties/type".length] === "/")){emErrs11.push(err112);err112.emUsed = true;}}if(emErrs11.length){const err113 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/allOf/2/then/properties/binding/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs11},message:"optional is not supported for binding type " + JSON.stringify(data51) + "; must be any of { zeebe:input, zeebe:output, zeebe:property, zeebe:taskHeader }"};if(vErrors === null){vErrors = [err113];}else {vErrors.push(err113);}errors++;}const emErrs12 = [];for(const err114 of vErrors){if(!err114.emUsed){emErrs12.push(err114);}}vErrors = emErrs12;errors = emErrs12.length;}}}}}var _valid11 = _errs150 === errors;valid64 = _valid11;}if(!valid64){const err115 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/2/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err115];}else {vErrors.push(err115);}errors++;}const _errs154 = errors;let valid68 = true;const _errs155 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.optional === undefined) && ("optional")){const err116 = {};if(vErrors === null){vErrors = [err116];}else {vErrors.push(err116);}errors++;}else {if(data42.optional !== undefined){if(true !== data42.optional){const err117 = {};if(vErrors === null){vErrors = [err117];}else {vErrors.push(err117);}errors++;}}}}var _valid12 = _errs155 === errors;errors = _errs154;if(vErrors !== null){if(_errs154){vErrors.length = _errs154;}else {vErrors = null;}}if(_valid12){const _errs157 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.constraints !== undefined){let data53 = data42.constraints;if(data53 && typeof data53 == "object" && !Array.isArray(data53)){if(data53.notEmpty === undefined){const err118 = {instancePath:instancePath+"/" + i5+"/constraints",schemaPath:"#/allOf/1/items/allOf/3/then/properties/constraints/required",keyword:"required",params:{missingProperty: "notEmpty"},message:"must have required property '"+"notEmpty"+"'"};if(vErrors === null){vErrors = [err118];}else {vErrors.push(err118);}errors++;}if(data53.notEmpty !== undefined){if(false !== data53.notEmpty){const err119 = {instancePath:instancePath+"/" + i5+"/constraints/notEmpty",schemaPath:"#/allOf/1/items/allOf/3/then/properties/constraints/properties/notEmpty/const",keyword:"const",params:{allowedValue: false},message:"must be equal to constant"};if(vErrors === null){vErrors = [err119];}else {vErrors.push(err119);}errors++;}if(errors > 0){const emErrs13 = [];for(const err120 of vErrors){if(((((err120.keyword !== "errorMessage") && (!err120.emUsed)) && ((err120.instancePath === instancePath+"/" + i5+"/constraints/notEmpty") || ((err120.instancePath.indexOf(instancePath+"/" + i5+"/constraints/notEmpty") === 0) && (err120.instancePath[instancePath+"/" + i5+"/constraints/notEmpty".length] === "/")))) && (err120.schemaPath.indexOf("#/allOf/1/items/allOf/3/then/properties/constraints/properties/notEmpty") === 0)) && (err120.schemaPath["#/allOf/1/items/allOf/3/then/properties/constraints/properties/notEmpty".length] === "/")){emErrs13.push(err120);err120.emUsed = true;}}if(emErrs13.length){const err121 = {instancePath:instancePath+"/" + i5+"/constraints/notEmpty",schemaPath:"#/allOf/1/items/allOf/3/then/properties/constraints/properties/notEmpty/errorMessage",keyword:"errorMessage",params:{errors: emErrs13},message:"optional is not allowed for truthy \"notEmpty\" constraint"};if(vErrors === null){vErrors = [err121];}else {vErrors.push(err121);}errors++;}const emErrs14 = [];for(const err122 of vErrors){if(!err122.emUsed){emErrs14.push(err122);}}vErrors = emErrs14;errors = emErrs14.length;}}}}}var _valid12 = _errs157 === errors;valid68 = _valid12;}if(!valid68){const err123 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/3/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err123];}else {vErrors.push(err123);}errors++;}const _errs161 = errors;let valid72 = true;const _errs162 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.feel === undefined) && ("feel")){const err124 = {};if(vErrors === null){vErrors = [err124];}else {vErrors.push(err124);}errors++;}else {if(data42.feel !== undefined){const _errs164 = errors;const _errs165 = errors;if(null !== data42.feel){const err125 = {};if(vErrors === null){vErrors = [err125];}else {vErrors.push(err125);}errors++;}var valid74 = _errs165 === errors;if(valid74){const err126 = {};if(vErrors === null){vErrors = [err126];}else {vErrors.push(err126);}errors++;}else {errors = _errs164;if(vErrors !== null){if(_errs164){vErrors.length = _errs164;}else {vErrors = null;}}}}}}var _valid13 = _errs162 === errors;errors = _errs161;if(vErrors !== null){if(_errs161){vErrors.length = _errs161;}else {vErrors = null;}}if(_valid13){const _errs166 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.type === undefined){const err127 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/4/then/required",keyword:"required",params:{missingProperty: "type"},message:"must have required property '"+"type"+"'"};if(vErrors === null){vErrors = [err127];}else {vErrors.push(err127);}errors++;}if(data42.type !== undefined){let data56 = data42.type;if(!((((data56 === "String") || (data56 === "Text")) || (data56 === "Number")) || (data56 === "Boolean"))){const err128 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/4/then/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[4].then.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err128];}else {vErrors.push(err128);}errors++;}if(errors > 0){const emErrs15 = [];for(const err129 of vErrors){if(((((err129.keyword !== "errorMessage") && (!err129.emUsed)) && ((err129.instancePath === instancePath+"/" + i5+"/type") || ((err129.instancePath.indexOf(instancePath+"/" + i5+"/type") === 0) && (err129.instancePath[instancePath+"/" + i5+"/type".length] === "/")))) && (err129.schemaPath.indexOf("#/allOf/1/items/allOf/4/then/properties/type") === 0)) && (err129.schemaPath["#/allOf/1/items/allOf/4/then/properties/type".length] === "/")){emErrs15.push(err129);err129.emUsed = true;}}if(emErrs15.length){const err130 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/4/then/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs15},message:"feel is only supported for \"String\", \"Text\", \"Number\" and \"Boolean\" type"};if(vErrors === null){vErrors = [err130];}else {vErrors.push(err130);}errors++;}const emErrs16 = [];for(const err131 of vErrors){if(!err131.emUsed){emErrs16.push(err131);}}vErrors = emErrs16;errors = emErrs16.length;}}}var _valid13 = _errs166 === errors;valid72 = _valid13;}if(!valid72){const err132 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/4/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err132];}else {vErrors.push(err132);}errors++;}const _errs169 = errors;let valid76 = true;const _errs170 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.language === undefined) && ("language")){const err133 = {};if(vErrors === null){vErrors = [err133];}else {vErrors.push(err133);}errors++;}else {if(data42.language !== undefined){const _errs172 = errors;const _errs173 = errors;if(null !== data42.language){const err134 = {};if(vErrors === null){vErrors = [err134];}else {vErrors.push(err134);}errors++;}var valid78 = _errs173 === errors;if(valid78){const err135 = {};if(vErrors === null){vErrors = [err135];}else {vErrors.push(err135);}errors++;}else {errors = _errs172;if(vErrors !== null){if(_errs172){vErrors.length = _errs172;}else {vErrors = null;}}}}}}var _valid14 = _errs170 === errors;errors = _errs169;if(vErrors !== null){if(_errs169){vErrors.length = _errs169;}else {vErrors = null;}}if(_valid14){const _errs174 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.type !== undefined){if(!(data42.type === "Text")){const err136 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/5/then/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[5].then.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err136];}else {vErrors.push(err136);}errors++;}if(errors > 0){const emErrs17 = [];for(const err137 of vErrors){if(((((err137.keyword !== "errorMessage") && (!err137.emUsed)) && ((err137.instancePath === instancePath+"/" + i5+"/type") || ((err137.instancePath.indexOf(instancePath+"/" + i5+"/type") === 0) && (err137.instancePath[instancePath+"/" + i5+"/type".length] === "/")))) && (err137.schemaPath.indexOf("#/allOf/1/items/allOf/5/then/properties/type") === 0)) && (err137.schemaPath["#/allOf/1/items/allOf/5/then/properties/type".length] === "/")){emErrs17.push(err137);err137.emUsed = true;}}if(emErrs17.length){const err138 = {instancePath:instancePath+"/" + i5+"/type",schemaPath:"#/allOf/1/items/allOf/5/then/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs17},message:"language is only supported for \"Text\" type"};if(vErrors === null){vErrors = [err138];}else {vErrors.push(err138);}errors++;}const emErrs18 = [];for(const err139 of vErrors){if(!err139.emUsed){emErrs18.push(err139);}}vErrors = emErrs18;errors = emErrs18.length;}}}var _valid14 = _errs174 === errors;valid76 = _valid14;}if(!valid76){const err140 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/5/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err140];}else {vErrors.push(err140);}errors++;}const _errs177 = errors;let valid80 = true;const _errs178 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.value === undefined) && ("value")){const err141 = {};if(vErrors === null){vErrors = [err141];}else {vErrors.push(err141);}errors++;}}var _valid15 = _errs178 === errors;errors = _errs177;if(vErrors !== null){if(_errs177){vErrors.length = _errs177;}else {vErrors = null;}}if(_valid15){const _errs179 = errors;const _errs180 = errors;const _errs181 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.generatedValue === undefined) && ("generatedValue")){const err142 = {};if(vErrors === null){vErrors = [err142];}else {vErrors.push(err142);}errors++;}}var valid81 = _errs181 === errors;if(valid81){const err143 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/6/then/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors === null){vErrors = [err143];}else {vErrors.push(err143);}errors++;}else {errors = _errs180;if(vErrors !== null){if(_errs180){vErrors.length = _errs180;}else {vErrors = null;}}}var _valid15 = _errs179 === errors;valid80 = _valid15;}if(!valid80){const err144 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/6/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err144];}else {vErrors.push(err144);}errors++;}const _errs183 = errors;let valid82 = true;const _errs184 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.type === undefined) && ("type")){const err145 = {};if(vErrors === null){vErrors = [err145];}else {vErrors.push(err145);}errors++;}else {if(data42.type !== undefined){let data59 = data42.type;if(!((data59 === "Boolean") || (data59 === "Dropdown"))){const err146 = {};if(vErrors === null){vErrors = [err146];}else {vErrors.push(err146);}errors++;}}}}var _valid16 = _errs184 === errors;errors = _errs183;if(vErrors !== null){if(_errs183){vErrors.length = _errs183;}else {vErrors = null;}}if(_valid16){const _errs186 = errors;const _errs187 = errors;const _errs188 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.generatedValue === undefined) && ("generatedValue")){const err147 = {};if(vErrors === null){vErrors = [err147];}else {vErrors.push(err147);}errors++;}}var valid84 = _errs188 === errors;if(valid84){const err148 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/7/then/not",keyword:"not",params:{},message:"must NOT be valid"};if(vErrors === null){vErrors = [err148];}else {vErrors.push(err148);}errors++;}else {errors = _errs187;if(vErrors !== null){if(_errs187){vErrors.length = _errs187;}else {vErrors = null;}}}var _valid16 = _errs186 === errors;valid82 = _valid16;}if(!valid82){const err149 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/7/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err149];}else {vErrors.push(err149);}errors++;}const _errs190 = errors;let valid85 = true;const _errs191 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.feel === undefined) && ("feel")){const err150 = {};if(vErrors === null){vErrors = [err150];}else {vErrors.push(err150);}errors++;}else {if(data42.type !== undefined){let data60 = data42.type;if(!((data60 === "String") || (data60 === "Text"))){const err151 = {};if(vErrors === null){vErrors = [err151];}else {vErrors.push(err151);}errors++;}}}}var _valid17 = _errs191 === errors;errors = _errs190;if(vErrors !== null){if(_errs190){vErrors.length = _errs190;}else {vErrors = null;}}if(_valid17){const _errs193 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.feel !== undefined){let data61 = data42.feel;if(!((data61 === "optional") || (data61 === "required"))){const err152 = {instancePath:instancePath+"/" + i5+"/feel",schemaPath:"#/allOf/1/items/allOf/8/then/properties/feel/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[8].then.properties.feel.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err152];}else {vErrors.push(err152);}errors++;}}}var _valid17 = _errs193 === errors;valid85 = _valid17;}if(!valid85){const err153 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/8/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err153];}else {vErrors.push(err153);}errors++;}const _errs196 = errors;let valid88 = true;const _errs197 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.feel === undefined) && ("feel")){const err154 = {};if(vErrors === null){vErrors = [err154];}else {vErrors.push(err154);}errors++;}else {if(data42.feel !== undefined){if("required" !== data42.feel){const err155 = {};if(vErrors === null){vErrors = [err155];}else {vErrors.push(err155);}errors++;}}}}var _valid18 = _errs197 === errors;errors = _errs196;if(vErrors !== null){if(_errs196){vErrors.length = _errs196;}else {vErrors = null;}}if(_valid18){const _errs199 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.value !== undefined){if(typeof data42.value !== "string"){const err156 = {instancePath:instancePath+"/" + i5+"/value",schemaPath:"#/allOf/1/items/allOf/9/then/properties/value/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err156];}else {vErrors.push(err156);}errors++;}}}var _valid18 = _errs199 === errors;valid88 = _valid18;}if(!valid88){const err157 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/9/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err157];}else {vErrors.push(err157);}errors++;}const _errs203 = errors;let valid91 = true;const _errs204 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if((data42.binding === undefined) && ("binding")){const err158 = {};if(vErrors === null){vErrors = [err158];}else {vErrors.push(err158);}errors++;}else {if(data42.binding !== undefined){let data64 = data42.binding;if(data64 && typeof data64 == "object" && !Array.isArray(data64)){if((data64.type === undefined) && ("type")){const err159 = {};if(vErrors === null){vErrors = [err159];}else {vErrors.push(err159);}errors++;}else {if(data64.type !== undefined){if("zeebe:linkedResource" !== data64.type){const err160 = {};if(vErrors === null){vErrors = [err160];}else {vErrors.push(err160);}errors++;}}}}}}}var _valid19 = _errs204 === errors;errors = _errs203;if(vErrors !== null){if(_errs203){vErrors.length = _errs203;}else {vErrors = null;}}if(_valid19){const _errs207 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.binding !== undefined){let data66 = data42.binding;if(data66 && typeof data66 == "object" && !Array.isArray(data66)){if(data66.linkName === undefined){const err161 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/required",keyword:"required",params:{missingProperty: "linkName"},message:"must have required property '"+"linkName"+"'"};if(vErrors === null){vErrors = [err161];}else {vErrors.push(err161);}errors++;}if(data66.property === undefined){const err162 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err162];}else {vErrors.push(err162);}errors++;}if(data66.linkName !== undefined){if(typeof data66.linkName !== "string"){const err163 = {instancePath:instancePath+"/" + i5+"/binding/linkName",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/properties/linkName/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err163];}else {vErrors.push(err163);}errors++;}}if(data66.property !== undefined){let data68 = data66.property;if(!((((data68 === "resourceId") || (data68 === "resourceType")) || (data68 === "bindingType")) || (data68 === "versionTag"))){const err164 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/properties/property/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.allOf[10].then.properties.binding.properties.property.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err164];}else {vErrors.push(err164);}errors++;}if(errors > 0){const emErrs19 = [];for(const err165 of vErrors){if(((((err165.keyword !== "errorMessage") && (!err165.emUsed)) && ((err165.instancePath === instancePath+"/" + i5+"/binding/property") || ((err165.instancePath.indexOf(instancePath+"/" + i5+"/binding/property") === 0) && (err165.instancePath[instancePath+"/" + i5+"/binding/property".length] === "/")))) && (err165.schemaPath.indexOf("#/allOf/1/items/allOf/10/then/properties/binding/properties/property") === 0)) && (err165.schemaPath["#/allOf/1/items/allOf/10/then/properties/binding/properties/property".length] === "/")){emErrs19.push(err165);err165.emUsed = true;}}if(emErrs19.length){const err166 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/allOf/10/then/properties/binding/properties/property/errorMessage",keyword:"errorMessage",params:{errors: emErrs19},message:"invalid binding.property " + JSON.stringify(data68) + "; must be any of { resourceId, resourceType, bindingType, versionTag }"};if(vErrors === null){vErrors = [err166];}else {vErrors.push(err166);}errors++;}const emErrs20 = [];for(const err167 of vErrors){if(!err167.emUsed){emErrs20.push(err167);}}vErrors = emErrs20;errors = emErrs20.length;}}}}}var _valid19 = _errs207 === errors;valid91 = _valid19;}if(!valid91){const err168 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/10/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err168];}else {vErrors.push(err168);}errors++;}const _errs214 = errors;let valid97 = true;const _errs215 = errors;if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(((data42.binding === undefined) && ("binding")) || ((data42.type === undefined) && ("type"))){const err169 = {};if(vErrors === null){vErrors = [err169];}else {vErrors.push(err169);}errors++;}else {if(data42.binding !== undefined){let data69 = data42.binding;const _errs216 = errors;if(data69 && typeof data69 == "object" && !Array.isArray(data69)){if((data69.type === undefined) && ("type")){const err170 = {};if(vErrors === null){vErrors = [err170];}else {vErrors.push(err170);}errors++;}else {if(data69.type !== undefined){let data70 = data69.type;if(!((data70 === "zeebe:input") || (data70 === "zeebe:output"))){const err171 = {};if(vErrors === null){vErrors = [err171];}else {vErrors.push(err171);}errors++;}}}}var valid98 = _errs216 === errors;}else {var valid98 = true;}if(valid98){if(data42.type !== undefined){let data71 = data42.type;const _errs218 = errors;if(!((data71 === "Boolean") || (data71 === "Number"))){const err172 = {};if(vErrors === null){vErrors = [err172];}else {vErrors.push(err172);}errors++;}var valid98 = _errs218 === errors;}else {var valid98 = true;}}}}var _valid20 = _errs215 === errors;errors = _errs214;if(vErrors !== null){if(_errs214){vErrors.length = _errs214;}else {vErrors = null;}}if(_valid20){const _errs219 = errors;var _valid20 = _errs219 === errors;valid97 = _valid20;}if(!valid97){const err173 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/allOf/11/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err173];}else {vErrors.push(err173);}errors++;}if(data42 && typeof data42 == "object" && !Array.isArray(data42)){if(data42.binding === undefined){const err174 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/required",keyword:"required",params:{missingProperty: "binding"},message:"must have required property '"+"binding"+"'"};if(vErrors === null){vErrors = [err174];}else {vErrors.push(err174);}errors++;}if(data42.binding !== undefined){let data72 = data42.binding;const _errs223 = errors;let valid102 = true;const _errs224 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if((data72.type === undefined) && ("type")){const err175 = {};if(vErrors === null){vErrors = [err175];}else {vErrors.push(err175);}errors++;}else {if(data72.type !== undefined){let data73 = data72.type;if(!(((((data73 === "property") || (data73 === "zeebe:property")) || (data73 === "zeebe:input")) || (data73 === "bpmn:Message#property")) || (data73 === "bpmn:Message#zeebe:subscription#property"))){const err176 = {};if(vErrors === null){vErrors = [err176];}else {vErrors.push(err176);}errors++;}}}}var _valid21 = _errs224 === errors;errors = _errs223;if(vErrors !== null){if(_errs223){vErrors.length = _errs223;}else {vErrors = null;}}if(_valid21){const _errs226 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if(data72.name === undefined){const err177 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/0/then/required",keyword:"required",params:{missingProperty: "name"},message:"must have required property '"+"name"+"'"};if(vErrors === null){vErrors = [err177];}else {vErrors.push(err177);}errors++;}}if(errors > 0){const emErrs21 = [];for(const err178 of vErrors){if(((((err178.keyword !== "errorMessage") && (!err178.emUsed)) && ((err178.instancePath === instancePath+"/" + i5+"/binding") || ((err178.instancePath.indexOf(instancePath+"/" + i5+"/binding") === 0) && (err178.instancePath[instancePath+"/" + i5+"/binding".length] === "/")))) && (err178.schemaPath.indexOf("#/allOf/1/items/properties/binding/allOf/0/then") === 0)) && (err178.schemaPath["#/allOf/1/items/properties/binding/allOf/0/then".length] === "/")){emErrs21.push(err178);err178.emUsed = true;}}if(emErrs21.length){const err179 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/0/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs21},message:"property.binding " + JSON.stringify(data72 && data72.type) + " requires name"};if(vErrors === null){vErrors = [err179];}else {vErrors.push(err179);}errors++;}const emErrs22 = [];for(const err180 of vErrors){if(!err180.emUsed){emErrs22.push(err180);}}vErrors = emErrs22;errors = emErrs22.length;}var _valid21 = _errs226 === errors;valid102 = _valid21;}if(!valid102){const err181 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err181];}else {vErrors.push(err181);}errors++;}const _errs228 = errors;let valid104 = true;const _errs229 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if((data72.type === undefined) && ("type")){const err182 = {};if(vErrors === null){vErrors = [err182];}else {vErrors.push(err182);}errors++;}else {if(data72.type !== undefined){if("zeebe:output" !== data72.type){const err183 = {};if(vErrors === null){vErrors = [err183];}else {vErrors.push(err183);}errors++;}}}}var _valid22 = _errs229 === errors;errors = _errs228;if(vErrors !== null){if(_errs228){vErrors.length = _errs228;}else {vErrors = null;}}if(_valid22){const _errs231 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if(data72.source === undefined){const err184 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/1/then/required",keyword:"required",params:{missingProperty: "source"},message:"must have required property '"+"source"+"'"};if(vErrors === null){vErrors = [err184];}else {vErrors.push(err184);}errors++;}}if(errors > 0){const emErrs23 = [];for(const err185 of vErrors){if(((((err185.keyword !== "errorMessage") && (!err185.emUsed)) && ((err185.instancePath === instancePath+"/" + i5+"/binding") || ((err185.instancePath.indexOf(instancePath+"/" + i5+"/binding") === 0) && (err185.instancePath[instancePath+"/" + i5+"/binding".length] === "/")))) && (err185.schemaPath.indexOf("#/allOf/1/items/properties/binding/allOf/1/then") === 0)) && (err185.schemaPath["#/allOf/1/items/properties/binding/allOf/1/then".length] === "/")){emErrs23.push(err185);err185.emUsed = true;}}if(emErrs23.length){const err186 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/1/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs23},message:"property.binding " + JSON.stringify(data72 && data72.type) + " requires source"};if(vErrors === null){vErrors = [err186];}else {vErrors.push(err186);}errors++;}const emErrs24 = [];for(const err187 of vErrors){if(!err187.emUsed){emErrs24.push(err187);}}vErrors = emErrs24;errors = emErrs24.length;}var _valid22 = _errs231 === errors;valid104 = _valid22;}if(!valid104){const err188 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/1/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err188];}else {vErrors.push(err188);}errors++;}const _errs233 = errors;let valid106 = true;const _errs234 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if((data72.type === undefined) && ("type")){const err189 = {};if(vErrors === null){vErrors = [err189];}else {vErrors.push(err189);}errors++;}else {if(data72.type !== undefined){if("zeebe:taskHeader" !== data72.type){const err190 = {};if(vErrors === null){vErrors = [err190];}else {vErrors.push(err190);}errors++;}}}}var _valid23 = _errs234 === errors;errors = _errs233;if(vErrors !== null){if(_errs233){vErrors.length = _errs233;}else {vErrors = null;}}if(_valid23){const _errs236 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if(data72.key === undefined){const err191 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/2/then/required",keyword:"required",params:{missingProperty: "key"},message:"must have required property '"+"key"+"'"};if(vErrors === null){vErrors = [err191];}else {vErrors.push(err191);}errors++;}}if(errors > 0){const emErrs25 = [];for(const err192 of vErrors){if(((((err192.keyword !== "errorMessage") && (!err192.emUsed)) && ((err192.instancePath === instancePath+"/" + i5+"/binding") || ((err192.instancePath.indexOf(instancePath+"/" + i5+"/binding") === 0) && (err192.instancePath[instancePath+"/" + i5+"/binding".length] === "/")))) && (err192.schemaPath.indexOf("#/allOf/1/items/properties/binding/allOf/2/then") === 0)) && (err192.schemaPath["#/allOf/1/items/properties/binding/allOf/2/then".length] === "/")){emErrs25.push(err192);err192.emUsed = true;}}if(emErrs25.length){const err193 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/2/then/errorMessage",keyword:"errorMessage",params:{errors: emErrs25},message:"property.binding " + JSON.stringify(data72 && data72.type) + " requires key"};if(vErrors === null){vErrors = [err193];}else {vErrors.push(err193);}errors++;}const emErrs26 = [];for(const err194 of vErrors){if(!err194.emUsed){emErrs26.push(err194);}}vErrors = emErrs26;errors = emErrs26.length;}var _valid23 = _errs236 === errors;valid106 = _valid23;}if(!valid106){const err195 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/2/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err195];}else {vErrors.push(err195);}errors++;}const _errs238 = errors;let valid108 = true;const _errs239 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if((data72.type === undefined) && ("type")){const err196 = {};if(vErrors === null){vErrors = [err196];}else {vErrors.push(err196);}errors++;}else {if(data72.type !== undefined){if("zeebe:taskDefinition" !== data72.type){const err197 = {};if(vErrors === null){vErrors = [err197];}else {vErrors.push(err197);}errors++;}}}}var _valid24 = _errs239 === errors;errors = _errs238;if(vErrors !== null){if(_errs238){vErrors.length = _errs238;}else {vErrors = null;}}if(_valid24){const _errs241 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if(data72.property === undefined){const err198 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/3/then/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err198];}else {vErrors.push(err198);}errors++;}if(data72.property !== undefined){let data77 = data72.property;if(!((data77 === "type") || (data77 === "retries"))){const err199 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/properties/binding/allOf/3/then/properties/property/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.properties.binding.allOf[3].then.properties.property.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err199];}else {vErrors.push(err199);}errors++;}}}var _valid24 = _errs241 === errors;valid108 = _valid24;}if(!valid108){const err200 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/3/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err200];}else {vErrors.push(err200);}errors++;}const _errs246 = errors;let valid111 = true;const _errs247 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if((data72.type === undefined) && ("type")){const err201 = {};if(vErrors === null){vErrors = [err201];}else {vErrors.push(err201);}errors++;}else {if(data72.type !== undefined){if("zeebe:calledElement" !== data72.type){const err202 = {};if(vErrors === null){vErrors = [err202];}else {vErrors.push(err202);}errors++;}}}}var _valid25 = _errs247 === errors;errors = _errs246;if(vErrors !== null){if(_errs246){vErrors.length = _errs246;}else {vErrors = null;}}if(_valid25){const _errs249 = errors;if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if(data72.property === undefined){const err203 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/5/then/required",keyword:"required",params:{missingProperty: "property"},message:"must have required property '"+"property"+"'"};if(vErrors === null){vErrors = [err203];}else {vErrors.push(err203);}errors++;}if(data72.property !== undefined){if("processId" !== data72.property){const err204 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/properties/binding/allOf/5/then/properties/property/const",keyword:"const",params:{allowedValue: "processId"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err204];}else {vErrors.push(err204);}errors++;}}}var _valid25 = _errs249 === errors;valid111 = _valid25;}if(!valid111){const err205 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/allOf/5/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err205];}else {vErrors.push(err205);}errors++;}if(data72 && typeof data72 == "object" && !Array.isArray(data72)){if(data72.type === undefined){const err206 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/required",keyword:"required",params:{missingProperty: "type"},message:"must have required property '"+"type"+"'"};if(vErrors === null){vErrors = [err206];}else {vErrors.push(err206);}errors++;}if(data72.type !== undefined){let data80 = data72.type;if(typeof data80 !== "string"){const err207 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/properties/binding/properties/type/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err207];}else {vErrors.push(err207);}errors++;}if(!(((((((((((data80 === "property") || (data80 === "zeebe:taskDefinition:type")) || (data80 === "zeebe:input")) || (data80 === "zeebe:output")) || (data80 === "zeebe:property")) || (data80 === "zeebe:taskHeader")) || (data80 === "bpmn:Message#property")) || (data80 === "bpmn:Message#zeebe:subscription#property")) || (data80 === "zeebe:taskDefinition")) || (data80 === "zeebe:calledElement")) || (data80 === "zeebe:linkedResource"))){const err208 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/properties/binding/properties/type/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.properties.binding.properties.type.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err208];}else {vErrors.push(err208);}errors++;}if(errors > 0){const emErrs27 = [];for(const err209 of vErrors){if(((((err209.keyword !== "errorMessage") && (!err209.emUsed)) && ((err209.instancePath === instancePath+"/" + i5+"/binding/type") || ((err209.instancePath.indexOf(instancePath+"/" + i5+"/binding/type") === 0) && (err209.instancePath[instancePath+"/" + i5+"/binding/type".length] === "/")))) && (err209.schemaPath.indexOf("#/allOf/1/items/properties/binding/properties/type") === 0)) && (err209.schemaPath["#/allOf/1/items/properties/binding/properties/type".length] === "/")){emErrs27.push(err209);err209.emUsed = true;}}if(emErrs27.length){const err210 = {instancePath:instancePath+"/" + i5+"/binding/type",schemaPath:"#/allOf/1/items/properties/binding/properties/type/errorMessage",keyword:"errorMessage",params:{errors: emErrs27},message:"invalid property.binding type " + JSON.stringify(data80) + "; must be any of { property, zeebe:taskDefinition:type, zeebe:input, zeebe:output, zeebe:property, zeebe:taskHeader, bpmn:Message#property, bpmn:Message#zeebe:subscription#property, zeebe:taskDefinition, zeebe:calledElement, zeebe:linkedResource }"};if(vErrors === null){vErrors = [err210];}else {vErrors.push(err210);}errors++;}const emErrs28 = [];for(const err211 of vErrors){if(!err211.emUsed){emErrs28.push(err211);}}vErrors = emErrs28;errors = emErrs28.length;}}if(data72.name !== undefined){if(typeof data72.name !== "string"){const err212 = {instancePath:instancePath+"/" + i5+"/binding/name",schemaPath:"#/allOf/1/items/properties/binding/properties/name/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err212];}else {vErrors.push(err212);}errors++;}}if(data72.source !== undefined){if(typeof data72.source !== "string"){const err213 = {instancePath:instancePath+"/" + i5+"/binding/source",schemaPath:"#/allOf/1/items/properties/binding/properties/source/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err213];}else {vErrors.push(err213);}errors++;}}if(data72.key !== undefined){if(typeof data72.key !== "string"){const err214 = {instancePath:instancePath+"/" + i5+"/binding/key",schemaPath:"#/allOf/1/items/properties/binding/properties/key/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err214];}else {vErrors.push(err214);}errors++;}}if(data72.property !== undefined){if(typeof data72.property !== "string"){const err215 = {instancePath:instancePath+"/" + i5+"/binding/property",schemaPath:"#/allOf/1/items/properties/binding/properties/property/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err215];}else {vErrors.push(err215);}errors++;}}if(data72.linkName !== undefined){if(typeof data72.linkName !== "string"){const err216 = {instancePath:instancePath+"/" + i5+"/binding/linkName",schemaPath:"#/allOf/1/items/properties/binding/properties/linkName/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err216];}else {vErrors.push(err216);}errors++;}}}else {const err217 = {instancePath:instancePath+"/" + i5+"/binding",schemaPath:"#/allOf/1/items/properties/binding/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err217];}else {vErrors.push(err217);}errors++;}}if(data42.optional !== undefined){if(typeof data42.optional !== "boolean"){const err218 = {instancePath:instancePath+"/" + i5+"/optional",schemaPath:"#/allOf/1/items/properties/optional/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err218];}else {vErrors.push(err218);}errors++;}}if(data42.feel !== undefined){let data87 = data42.feel;if(typeof data87 !== "string"){const err219 = {instancePath:instancePath+"/" + i5+"/feel",schemaPath:"#/allOf/1/items/properties/feel/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err219];}else {vErrors.push(err219);}errors++;}if(!(((data87 === "optional") || (data87 === "required")) || (data87 === "static"))){const err220 = {instancePath:instancePath+"/" + i5+"/feel",schemaPath:"#/allOf/1/items/properties/feel/enum",keyword:"enum",params:{allowedValues: schema18.allOf[1].items.properties.feel.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err220];}else {vErrors.push(err220);}errors++;}}if(data42.language !== undefined){if(typeof data42.language !== "string"){const err221 = {instancePath:instancePath+"/" + i5+"/language",schemaPath:"#/allOf/1/items/properties/language/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err221];}else {vErrors.push(err221);}errors++;}}if(data42.generatedValue !== undefined){let data89 = data42.generatedValue;if(data89 && typeof data89 == "object" && !Array.isArray(data89)){if(data89.type === undefined){const err222 = {instancePath:instancePath+"/" + i5+"/generatedValue",schemaPath:"#/allOf/1/items/properties/generatedValue/required",keyword:"required",params:{missingProperty: "type"},message:"must have required property '"+"type"+"'"};if(vErrors === null){vErrors = [err222];}else {vErrors.push(err222);}errors++;}if(data89.type !== undefined){if("uuid" !== data89.type){const err223 = {instancePath:instancePath+"/" + i5+"/generatedValue/type",schemaPath:"#/allOf/1/items/properties/generatedValue/properties/type/const",keyword:"const",params:{allowedValue: "uuid"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err223];}else {vErrors.push(err223);}errors++;}}}else {const err224 = {instancePath:instancePath+"/" + i5+"/generatedValue",schemaPath:"#/allOf/1/items/properties/generatedValue/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err224];}else {vErrors.push(err224);}errors++;}}if(data42.tooltip !== undefined){if(typeof data42.tooltip !== "string"){const err225 = {instancePath:instancePath+"/" + i5+"/tooltip",schemaPath:"#/allOf/1/items/properties/tooltip/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err225];}else {vErrors.push(err225);}errors++;}}}else {const err226 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err226];}else {vErrors.push(err226);}errors++;}if(errors > 0){const emErrors3 = {"required":{"binding":[]}};const templates3 = {required:{binding:function(){return "missing binding for property \"" + JSON.stringify(i5) + "\""}}};let emPropParams2;let emParamsErrors2;for(const err227 of vErrors){if((((((err227.keyword !== "errorMessage") && (!err227.emUsed)) && (err227.instancePath === instancePath+"/" + i5)) && (err227.keyword in emErrors3)) && (err227.schemaPath.indexOf("#/allOf/1/items") === 0)) && (/^\/[^\/]*$/.test(err227.schemaPath.slice(15)))){emPropParams2 = obj0[err227.keyword];emParamsErrors2 = emErrors3[err227.keyword][err227.params[emPropParams2]];if(emParamsErrors2){emParamsErrors2.push(err227);err227.emUsed = true;}}}for(const key3 in emErrors3){for(const keyProp2 in emErrors3[key3]){emParamsErrors2 = emErrors3[key3][keyProp2];if(emParamsErrors2.length){const tmpl2 = templates3[key3] && templates3[key3][keyProp2];const err228 = {instancePath:instancePath+"/" + i5,schemaPath:"#/allOf/1/items/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors2},message:tmpl2 ? tmpl2() : schema18.allOf[1].items.errorMessage[key3][keyProp2]};if(vErrors === null){vErrors = [err228];}else {vErrors.push(err228);}errors++;}}}const emErrs29 = [];for(const err229 of vErrors){if(!err229.emUsed){emErrs29.push(err229);}}vErrors = emErrs29;errors = emErrs29.length;}}}else {const err230 = {instancePath,schemaPath:"#/allOf/1/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err230];}else {vErrors.push(err230);}errors++;}validate16.errors = vErrors;return errors === 0;}function validate15(data, {instancePath="", parentData, parentDataProperty, rootData=data}={}){let vErrors = null;let errors = 0;if(data && typeof data == "object" && !Array.isArray(data)){if(data.name === undefined){const err0 = {instancePath,schemaPath:"#/allOf/0/required",keyword:"required",params:{missingProperty: "name"},message:"must have required property '"+"name"+"'"};if(vErrors === null){vErrors = [err0];}else {vErrors.push(err0);}errors++;}if(data.id === undefined){const err1 = {instancePath,schemaPath:"#/allOf/0/required",keyword:"required",params:{missingProperty: "id"},message:"must have required property '"+"id"+"'"};if(vErrors === null){vErrors = [err1];}else {vErrors.push(err1);}errors++;}if(data.appliesTo === undefined){const err2 = {instancePath,schemaPath:"#/allOf/0/required",keyword:"required",params:{missingProperty: "appliesTo"},message:"must have required property '"+"appliesTo"+"'"};if(vErrors === null){vErrors = [err2];}else {vErrors.push(err2);}errors++;}if(data.properties === undefined){const err3 = {instancePath,schemaPath:"#/allOf/0/required",keyword:"required",params:{missingProperty: "properties"},message:"must have required property '"+"properties"+"'"};if(vErrors === null){vErrors = [err3];}else {vErrors.push(err3);}errors++;}if(data.name !== undefined){if(typeof data.name !== "string"){const err4 = {instancePath:instancePath+"/name",schemaPath:"#/allOf/0/properties/name/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err4];}else {vErrors.push(err4);}errors++;}}if(data.id !== undefined){if(typeof data.id !== "string"){const err5 = {instancePath:instancePath+"/id",schemaPath:"#/allOf/0/properties/id/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err5];}else {vErrors.push(err5);}errors++;}}if(data.description !== undefined){if(typeof data.description !== "string"){const err6 = {instancePath:instancePath+"/description",schemaPath:"#/allOf/0/properties/description/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err6];}else {vErrors.push(err6);}errors++;}}if(data.version !== undefined){let data3 = data.version;if(!((typeof data3 == "number") && (!(data3 % 1) && !isNaN(data3)))){const err7 = {instancePath:instancePath+"/version",schemaPath:"#/allOf/0/properties/version/type",keyword:"type",params:{type: "integer"},message:"must be integer"};if(vErrors === null){vErrors = [err7];}else {vErrors.push(err7);}errors++;}}if(data.isDefault !== undefined){if(typeof data.isDefault !== "boolean"){const err8 = {instancePath:instancePath+"/isDefault",schemaPath:"#/allOf/0/properties/isDefault/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err8];}else {vErrors.push(err8);}errors++;}}if(data.deprecated !== undefined){let data5 = data.deprecated;if((typeof data5 !== "boolean") && (!(data5 && typeof data5 == "object" && !Array.isArray(data5)))){const err9 = {instancePath:instancePath+"/deprecated",schemaPath:"#/allOf/0/properties/deprecated/type",keyword:"type",params:{type: schema17.allOf[0].properties.deprecated.type},message:"must be boolean,object"};if(vErrors === null){vErrors = [err9];}else {vErrors.push(err9);}errors++;}if(data5 && typeof data5 == "object" && !Array.isArray(data5)){if(data5.message !== undefined){if(typeof data5.message !== "string"){const err10 = {instancePath:instancePath+"/deprecated/message",schemaPath:"#/allOf/0/properties/deprecated/properties/message/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err10];}else {vErrors.push(err10);}errors++;}}if(data5.documentationRef !== undefined){let data7 = data5.documentationRef;if(typeof data7 === "string"){if(!pattern0.test(data7)){const err11 = {instancePath:instancePath+"/deprecated/documentationRef",schemaPath:"#/allOf/0/properties/deprecated/properties/documentationRef/pattern",keyword:"pattern",params:{pattern: "^(https|http)://.*"},message:"must match pattern \""+"^(https|http)://.*"+"\""};if(vErrors === null){vErrors = [err11];}else {vErrors.push(err11);}errors++;}}else {const err12 = {instancePath:instancePath+"/deprecated/documentationRef",schemaPath:"#/allOf/0/properties/deprecated/properties/documentationRef/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err12];}else {vErrors.push(err12);}errors++;}}}}if(data.appliesTo !== undefined){let data8 = data.appliesTo;if(Array.isArray(data8)){const len0 = data8.length;for(let i0=0; i0<len0; i0++){let data9 = data8[i0];if(typeof data9 === "string"){if(!pattern1.test(data9)){const err13 = {instancePath:instancePath+"/appliesTo/" + i0,schemaPath:"#/allOf/0/properties/appliesTo/items/pattern",keyword:"pattern",params:{pattern: "^[\\w\\d]+:[\\w\\d]+$"},message:"must match pattern \""+"^[\\w\\d]+:[\\w\\d]+$"+"\""};if(vErrors === null){vErrors = [err13];}else {vErrors.push(err13);}errors++;}}else {const err14 = {instancePath:instancePath+"/appliesTo/" + i0,schemaPath:"#/allOf/0/properties/appliesTo/items/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err14];}else {vErrors.push(err14);}errors++;}if(errors > 0){const emErrors0 = {"pattern":[]};const templates0 = {};for(const err15 of vErrors){if((((((err15.keyword !== "errorMessage") && (!err15.emUsed)) && (err15.instancePath === instancePath+"/appliesTo/" + i0)) && (err15.keyword in emErrors0)) && (err15.schemaPath.indexOf("#/allOf/0/properties/appliesTo/items") === 0)) && (/^\/[^\/]*$/.test(err15.schemaPath.slice(36)))){emErrors0[err15.keyword].push(err15);err15.emUsed = true;}}for(const key0 in emErrors0){if(emErrors0[key0].length){const err16 = {instancePath:instancePath+"/appliesTo/" + i0,schemaPath:"#/allOf/0/properties/appliesTo/items/errorMessage",keyword:"errorMessage",params:{errors: emErrors0[key0]},message:key0 in templates0 ? templates0[key0]() : schema17.allOf[0].properties.appliesTo.items.errorMessage[key0]};if(vErrors === null){vErrors = [err16];}else {vErrors.push(err16);}errors++;}}const emErrs0 = [];for(const err17 of vErrors){if(!err17.emUsed){emErrs0.push(err17);}}vErrors = emErrs0;errors = emErrs0.length;}}}else {const err18 = {instancePath:instancePath+"/appliesTo",schemaPath:"#/allOf/0/properties/appliesTo/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err18];}else {vErrors.push(err18);}errors++;}}if(data.elementType !== undefined){let data10 = data.elementType;if(data10 && typeof data10 == "object" && !Array.isArray(data10)){if(data10.value === undefined){const err19 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/0/properties/elementType/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err19];}else {vErrors.push(err19);}errors++;}if(data10.value !== undefined){let data11 = data10.value;if(typeof data11 === "string"){if(!pattern1.test(data11)){const err20 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/0/properties/elementType/properties/value/pattern",keyword:"pattern",params:{pattern: "^[\\w\\d]+:[\\w\\d]+$"},message:"must match pattern \""+"^[\\w\\d]+:[\\w\\d]+$"+"\""};if(vErrors === null){vErrors = [err20];}else {vErrors.push(err20);}errors++;}}else {const err21 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/0/properties/elementType/properties/value/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err21];}else {vErrors.push(err21);}errors++;}if(errors > 0){const emErrors1 = {"pattern":[]};const templates1 = {};for(const err22 of vErrors){if((((((err22.keyword !== "errorMessage") && (!err22.emUsed)) && (err22.instancePath === instancePath+"/elementType/value")) && (err22.keyword in emErrors1)) && (err22.schemaPath.indexOf("#/allOf/0/properties/elementType/properties/value") === 0)) && (/^\/[^\/]*$/.test(err22.schemaPath.slice(49)))){emErrors1[err22.keyword].push(err22);err22.emUsed = true;}}for(const key1 in emErrors1){if(emErrors1[key1].length){const err23 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/0/properties/elementType/properties/value/errorMessage",keyword:"errorMessage",params:{errors: emErrors1[key1]},message:key1 in templates1 ? templates1[key1]() : schema17.allOf[0].properties.elementType.properties.value.errorMessage[key1]};if(vErrors === null){vErrors = [err23];}else {vErrors.push(err23);}errors++;}}const emErrs1 = [];for(const err24 of vErrors){if(!err24.emUsed){emErrs1.push(err24);}}vErrors = emErrs1;errors = emErrs1.length;}}}else {const err25 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/0/properties/elementType/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err25];}else {vErrors.push(err25);}errors++;}if(errors > 0){const emErrors2 = {"required":{"value":[]}};const templates2 = {required:{}};let emPropParams0;let emParamsErrors0;for(const err26 of vErrors){if((((((err26.keyword !== "errorMessage") && (!err26.emUsed)) && (err26.instancePath === instancePath+"/elementType")) && (err26.keyword in emErrors2)) && (err26.schemaPath.indexOf("#/allOf/0/properties/elementType") === 0)) && (/^\/[^\/]*$/.test(err26.schemaPath.slice(32)))){emPropParams0 = obj0[err26.keyword];emParamsErrors0 = emErrors2[err26.keyword][err26.params[emPropParams0]];if(emParamsErrors0){emParamsErrors0.push(err26);err26.emUsed = true;}}}for(const key2 in emErrors2){for(const keyProp0 in emErrors2[key2]){emParamsErrors0 = emErrors2[key2][keyProp0];if(emParamsErrors0.length){const tmpl0 = templates2[key2] && templates2[key2][keyProp0];const err27 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/0/properties/elementType/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors0},message:tmpl0 ? tmpl0() : schema17.allOf[0].properties.elementType.errorMessage[key2][keyProp0]};if(vErrors === null){vErrors = [err27];}else {vErrors.push(err27);}errors++;}}}const emErrs2 = [];for(const err28 of vErrors){if(!err28.emUsed){emErrs2.push(err28);}}vErrors = emErrs2;errors = emErrs2.length;}}if(data.metadata !== undefined){let data12 = data.metadata;if(!(data12 && typeof data12 == "object" && !Array.isArray(data12))){const err29 = {instancePath:instancePath+"/metadata",schemaPath:"#/allOf/0/properties/metadata/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err29];}else {vErrors.push(err29);}errors++;}}if(data.entriesVisible !== undefined){if(typeof data.entriesVisible !== "boolean"){const err30 = {instancePath:instancePath+"/entriesVisible",schemaPath:"#/allOf/0/properties/entriesVisible/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err30];}else {vErrors.push(err30);}errors++;}}if(data.groups !== undefined){let data14 = data.groups;if(Array.isArray(data14)){const len1 = data14.length;for(let i1=0; i1<len1; i1++){let data15 = data14[i1];if(data15 && typeof data15 == "object" && !Array.isArray(data15)){if(data15.id === undefined){const err31 = {instancePath:instancePath+"/groups/" + i1,schemaPath:"#/allOf/0/properties/groups/items/required",keyword:"required",params:{missingProperty: "id"},message:"must have required property '"+"id"+"'"};if(vErrors === null){vErrors = [err31];}else {vErrors.push(err31);}errors++;}if(data15.label === undefined){const err32 = {instancePath:instancePath+"/groups/" + i1,schemaPath:"#/allOf/0/properties/groups/items/required",keyword:"required",params:{missingProperty: "label"},message:"must have required property '"+"label"+"'"};if(vErrors === null){vErrors = [err32];}else {vErrors.push(err32);}errors++;}if(data15.id !== undefined){if(typeof data15.id !== "string"){const err33 = {instancePath:instancePath+"/groups/" + i1+"/id",schemaPath:"#/allOf/0/properties/groups/items/properties/id/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err33];}else {vErrors.push(err33);}errors++;}}if(data15.label !== undefined){if(typeof data15.label !== "string"){const err34 = {instancePath:instancePath+"/groups/" + i1+"/label",schemaPath:"#/allOf/0/properties/groups/items/properties/label/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err34];}else {vErrors.push(err34);}errors++;}}}else {const err35 = {instancePath:instancePath+"/groups/" + i1,schemaPath:"#/allOf/0/properties/groups/items/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err35];}else {vErrors.push(err35);}errors++;}if(errors > 0){const emErrors3 = {"required":{"id":[],"label":[]}};const templates3 = {required:{id:function(){return "missing id for group \"" + JSON.stringify(i1) + "\""},label:function(){return "missing label for group \"" + JSON.stringify(i1) + "\""}}};let emPropParams1;let emParamsErrors1;for(const err36 of vErrors){if((((((err36.keyword !== "errorMessage") && (!err36.emUsed)) && (err36.instancePath === instancePath+"/groups/" + i1)) && (err36.keyword in emErrors3)) && (err36.schemaPath.indexOf("#/allOf/0/properties/groups/items") === 0)) && (/^\/[^\/]*$/.test(err36.schemaPath.slice(33)))){emPropParams1 = obj0[err36.keyword];emParamsErrors1 = emErrors3[err36.keyword][err36.params[emPropParams1]];if(emParamsErrors1){emParamsErrors1.push(err36);err36.emUsed = true;}}}for(const key3 in emErrors3){for(const keyProp1 in emErrors3[key3]){emParamsErrors1 = emErrors3[key3][keyProp1];if(emParamsErrors1.length){const tmpl1 = templates3[key3] && templates3[key3][keyProp1];const err37 = {instancePath:instancePath+"/groups/" + i1,schemaPath:"#/allOf/0/properties/groups/items/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors1},message:tmpl1 ? tmpl1() : schema17.allOf[0].properties.groups.items.errorMessage[key3][keyProp1]};if(vErrors === null){vErrors = [err37];}else {vErrors.push(err37);}errors++;}}}const emErrs3 = [];for(const err38 of vErrors){if(!err38.emUsed){emErrs3.push(err38);}}vErrors = emErrs3;errors = emErrs3.length;}}}else {const err39 = {instancePath:instancePath+"/groups",schemaPath:"#/allOf/0/properties/groups/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err39];}else {vErrors.push(err39);}errors++;}}if(data.documentationRef !== undefined){let data18 = data.documentationRef;if(typeof data18 === "string"){if(!pattern0.test(data18)){const err40 = {instancePath:instancePath+"/documentationRef",schemaPath:"#/allOf/0/properties/documentationRef/pattern",keyword:"pattern",params:{pattern: "^(https|http)://.*"},message:"must match pattern \""+"^(https|http)://.*"+"\""};if(vErrors === null){vErrors = [err40];}else {vErrors.push(err40);}errors++;}}else {const err41 = {instancePath:instancePath+"/documentationRef",schemaPath:"#/allOf/0/properties/documentationRef/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err41];}else {vErrors.push(err41);}errors++;}if(errors > 0){const emErrors4 = {"pattern":[]};const templates4 = {};for(const err42 of vErrors){if((((((err42.keyword !== "errorMessage") && (!err42.emUsed)) && (err42.instancePath === instancePath+"/documentationRef")) && (err42.keyword in emErrors4)) && (err42.schemaPath.indexOf("#/allOf/0/properties/documentationRef") === 0)) && (/^\/[^\/]*$/.test(err42.schemaPath.slice(37)))){emErrors4[err42.keyword].push(err42);err42.emUsed = true;}}for(const key4 in emErrors4){if(emErrors4[key4].length){const err43 = {instancePath:instancePath+"/documentationRef",schemaPath:"#/allOf/0/properties/documentationRef/errorMessage",keyword:"errorMessage",params:{errors: emErrors4[key4]},message:key4 in templates4 ? templates4[key4]() : schema17.allOf[0].properties.documentationRef.errorMessage[key4]};if(vErrors === null){vErrors = [err43];}else {vErrors.push(err43);}errors++;}}const emErrs4 = [];for(const err44 of vErrors){if(!err44.emUsed){emErrs4.push(err44);}}vErrors = emErrs4;errors = emErrs4.length;}}}if(errors > 0){const emErrors5 = {"required":{"name":[],"id":[],"appliesTo":[],"properties":[]}};const templates5 = {required:{}};let emPropParams2;let emParamsErrors2;for(const err45 of vErrors){if((((((err45.keyword !== "errorMessage") && (!err45.emUsed)) && (err45.instancePath === instancePath)) && (err45.keyword in emErrors5)) && (err45.schemaPath.indexOf("#/allOf/0") === 0)) && (/^\/[^\/]*$/.test(err45.schemaPath.slice(9)))){emPropParams2 = obj0[err45.keyword];emParamsErrors2 = emErrors5[err45.keyword][err45.params[emPropParams2]];if(emParamsErrors2){emParamsErrors2.push(err45);err45.emUsed = true;}}}for(const key5 in emErrors5){for(const keyProp2 in emErrors5[key5]){emParamsErrors2 = emErrors5[key5][keyProp2];if(emParamsErrors2.length){const tmpl2 = templates5[key5] && templates5[key5][keyProp2];const err46 = {instancePath,schemaPath:"#/allOf/0/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors2},message:tmpl2 ? tmpl2() : schema17.allOf[0].errorMessage[key5][keyProp2]};if(vErrors === null){vErrors = [err46];}else {vErrors.push(err46);}errors++;}}}const emErrs5 = [];for(const err47 of vErrors){if(!err47.emUsed){emErrs5.push(err47);}}vErrors = emErrs5;errors = emErrs5.length;}const _errs42 = errors;let valid13 = true;const _errs43 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if((data.properties === undefined) && ("properties")){const err48 = {};if(vErrors === null){vErrors = [err48];}else {vErrors.push(err48);}errors++;}else {if(data.properties !== undefined){let data19 = data.properties;if(Array.isArray(data19)){const _errs45 = errors;const len2 = data19.length;for(let i2=0; i2<len2; i2++){let data20 = data19[i2];const _errs46 = errors;if(data20 && typeof data20 == "object" && !Array.isArray(data20)){if((data20.binding === undefined) && ("binding")){const err49 = {};if(vErrors === null){vErrors = [err49];}else {vErrors.push(err49);}errors++;}else {if(data20.binding !== undefined){let data21 = data20.binding;if(data21 && typeof data21 == "object" && !Array.isArray(data21)){if((data21.type === undefined) && ("type")){const err50 = {};if(vErrors === null){vErrors = [err50];}else {vErrors.push(err50);}errors++;}else {if(data21.type !== undefined){if("bpmn:Message#property" !== data21.type){const err51 = {};if(vErrors === null){vErrors = [err51];}else {vErrors.push(err51);}errors++;}}}}}}}var valid15 = _errs46 === errors;if(valid15){break;}}if(!valid15){const err52 = {};if(vErrors === null){vErrors = [err52];}else {vErrors.push(err52);}errors++;}else {errors = _errs45;if(vErrors !== null){if(_errs45){vErrors.length = _errs45;}else {vErrors = null;}}}}}}}var _valid0 = _errs43 === errors;errors = _errs42;if(vErrors !== null){if(_errs42){vErrors.length = _errs42;}else {vErrors = null;}}if(_valid0){const _errs49 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.elementType === undefined){const err53 = {instancePath,schemaPath:"#/allOf/1/allOf/0/then/required",keyword:"required",params:{missingProperty: "elementType"},message:"must have required property '"+"elementType"+"'"};if(vErrors === null){vErrors = [err53];}else {vErrors.push(err53);}errors++;}if(data.elementType !== undefined){let data23 = data.elementType;const _errs52 = errors;let valid20 = true;const _errs53 = errors;if(data23 && typeof data23 == "object" && !Array.isArray(data23)){if(data23.value !== undefined){let data24 = data23.value;if(!(((((data24 === "bpmn:StartEvent") || (data24 === "bpmn:IntermediateCatchEvent")) || (data24 === "bpmn:IntermediateThrowEvent")) || (data24 === "bpmn:BoundaryEvent")) || (data24 === "bpmn:EndEvent"))){const err54 = {};if(vErrors === null){vErrors = [err54];}else {vErrors.push(err54);}errors++;}}}var _valid1 = _errs53 === errors;errors = _errs52;if(vErrors !== null){if(_errs52){vErrors.length = _errs52;}else {vErrors = null;}}if(_valid1){const _errs55 = errors;if(data23 && typeof data23 == "object" && !Array.isArray(data23)){if(data23.eventDefinition === undefined){const err55 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/0/then/properties/elementType/allOf/0/then/required",keyword:"required",params:{missingProperty: "eventDefinition"},message:"must have required property '"+"eventDefinition"+"'"};if(vErrors === null){vErrors = [err55];}else {vErrors.push(err55);}errors++;}}var _valid1 = _errs55 === errors;valid20 = _valid1;}if(!valid20){const err56 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/0/then/properties/elementType/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err56];}else {vErrors.push(err56);}errors++;}if(data23 && typeof data23 == "object" && !Array.isArray(data23)){if(data23.value === undefined){const err57 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/0/then/properties/elementType/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err57];}else {vErrors.push(err57);}errors++;}if(data23.value !== undefined){let data25 = data23.value;if(!(((((((data25 === "bpmn:ReceiveTask") || (data25 === "bpmn:SendTask")) || (data25 === "bpmn:StartEvent")) || (data25 === "bpmn:IntermediateCatchEvent")) || (data25 === "bpmn:IntermediateThrowEvent")) || (data25 === "bpmn:BoundaryEvent")) || (data25 === "bpmn:EndEvent"))){const err58 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/1/allOf/0/then/properties/elementType/properties/value/enum",keyword:"enum",params:{allowedValues: schema17.allOf[1].allOf[0].then.properties.elementType.properties.value.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err58];}else {vErrors.push(err58);}errors++;}}}}}var _valid0 = _errs49 === errors;valid13 = _valid0;}if(!valid13){const err59 = {instancePath,schemaPath:"#/allOf/1/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err59];}else {vErrors.push(err59);}errors++;}const _errs58 = errors;let valid23 = true;const _errs59 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if((data.properties === undefined) && ("properties")){const err60 = {};if(vErrors === null){vErrors = [err60];}else {vErrors.push(err60);}errors++;}else {if(data.properties !== undefined){let data26 = data.properties;if(Array.isArray(data26)){const _errs61 = errors;const len3 = data26.length;for(let i3=0; i3<len3; i3++){let data27 = data26[i3];const _errs62 = errors;if(data27 && typeof data27 == "object" && !Array.isArray(data27)){if((data27.binding === undefined) && ("binding")){const err61 = {};if(vErrors === null){vErrors = [err61];}else {vErrors.push(err61);}errors++;}else {if(data27.binding !== undefined){let data28 = data27.binding;if(data28 && typeof data28 == "object" && !Array.isArray(data28)){if((data28.type === undefined) && ("type")){const err62 = {};if(vErrors === null){vErrors = [err62];}else {vErrors.push(err62);}errors++;}else {if(data28.type !== undefined){if("bpmn:Message#zeebe:subscription#property" !== data28.type){const err63 = {};if(vErrors === null){vErrors = [err63];}else {vErrors.push(err63);}errors++;}}}}}}}var valid25 = _errs62 === errors;if(valid25){break;}}if(!valid25){const err64 = {};if(vErrors === null){vErrors = [err64];}else {vErrors.push(err64);}errors++;}else {errors = _errs61;if(vErrors !== null){if(_errs61){vErrors.length = _errs61;}else {vErrors = null;}}}}}}}var _valid2 = _errs59 === errors;errors = _errs58;if(vErrors !== null){if(_errs58){vErrors.length = _errs58;}else {vErrors = null;}}if(_valid2){const _errs65 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.elementType === undefined){const err65 = {instancePath,schemaPath:"#/allOf/1/allOf/1/then/required",keyword:"required",params:{missingProperty: "elementType"},message:"must have required property '"+"elementType"+"'"};if(vErrors === null){vErrors = [err65];}else {vErrors.push(err65);}errors++;}if(data.elementType !== undefined){let data30 = data.elementType;const _errs68 = errors;let valid30 = true;const _errs69 = errors;if(data30 && typeof data30 == "object" && !Array.isArray(data30)){if(data30.value !== undefined){let data31 = data30.value;if(!(((((data31 === "bpmn:StartEvent") || (data31 === "bpmn:IntermediateCatchEvent")) || (data31 === "bpmn:IntermediateThrowEvent")) || (data31 === "bpmn:BoundaryEvent")) || (data31 === "bpmn:EndEvent"))){const err66 = {};if(vErrors === null){vErrors = [err66];}else {vErrors.push(err66);}errors++;}}}var _valid3 = _errs69 === errors;errors = _errs68;if(vErrors !== null){if(_errs68){vErrors.length = _errs68;}else {vErrors = null;}}if(_valid3){const _errs71 = errors;if(data30 && typeof data30 == "object" && !Array.isArray(data30)){if(data30.eventDefinition === undefined){const err67 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/1/then/properties/elementType/allOf/0/then/required",keyword:"required",params:{missingProperty: "eventDefinition"},message:"must have required property '"+"eventDefinition"+"'"};if(vErrors === null){vErrors = [err67];}else {vErrors.push(err67);}errors++;}}var _valid3 = _errs71 === errors;valid30 = _valid3;}if(!valid30){const err68 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/1/then/properties/elementType/allOf/0/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err68];}else {vErrors.push(err68);}errors++;}if(data30 && typeof data30 == "object" && !Array.isArray(data30)){if(data30.value === undefined){const err69 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/1/then/properties/elementType/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err69];}else {vErrors.push(err69);}errors++;}if(data30.value !== undefined){let data32 = data30.value;if(!((((((data32 === "bpmn:ReceiveTask") || (data32 === "bpmn:StartEvent")) || (data32 === "bpmn:IntermediateCatchEvent")) || (data32 === "bpmn:IntermediateThrowEvent")) || (data32 === "bpmn:BoundaryEvent")) || (data32 === "bpmn:EndEvent"))){const err70 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/1/allOf/1/then/properties/elementType/properties/value/enum",keyword:"enum",params:{allowedValues: schema17.allOf[1].allOf[1].then.properties.elementType.properties.value.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err70];}else {vErrors.push(err70);}errors++;}}}}}var _valid2 = _errs65 === errors;valid23 = _valid2;}if(!valid23){const err71 = {instancePath,schemaPath:"#/allOf/1/allOf/1/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err71];}else {vErrors.push(err71);}errors++;}const _errs74 = errors;let valid33 = true;const _errs75 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if((data.properties === undefined) && ("properties")){const err72 = {};if(vErrors === null){vErrors = [err72];}else {vErrors.push(err72);}errors++;}else {if(data.properties !== undefined){let data33 = data.properties;if(Array.isArray(data33)){const _errs77 = errors;const len4 = data33.length;for(let i4=0; i4<len4; i4++){let data34 = data33[i4];const _errs78 = errors;if(data34 && typeof data34 == "object" && !Array.isArray(data34)){if((data34.binding === undefined) && ("binding")){const err73 = {};if(vErrors === null){vErrors = [err73];}else {vErrors.push(err73);}errors++;}else {if(data34.binding !== undefined){let data35 = data34.binding;if(data35 && typeof data35 == "object" && !Array.isArray(data35)){if((data35.type === undefined) && ("type")){const err74 = {};if(vErrors === null){vErrors = [err74];}else {vErrors.push(err74);}errors++;}else {if(data35.type !== undefined){if("zeebe:calledElement" !== data35.type){const err75 = {};if(vErrors === null){vErrors = [err75];}else {vErrors.push(err75);}errors++;}}}}}}}var valid35 = _errs78 === errors;if(valid35){break;}}if(!valid35){const err76 = {};if(vErrors === null){vErrors = [err76];}else {vErrors.push(err76);}errors++;}else {errors = _errs77;if(vErrors !== null){if(_errs77){vErrors.length = _errs77;}else {vErrors = null;}}}}}}}var _valid4 = _errs75 === errors;errors = _errs74;if(vErrors !== null){if(_errs74){vErrors.length = _errs74;}else {vErrors = null;}}if(_valid4){const _errs81 = errors;const _errs82 = errors;let valid38 = false;const _errs83 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.elementType === undefined){const err77 = {instancePath,schemaPath:"#/allOf/1/allOf/2/then/anyOf/0/required",keyword:"required",params:{missingProperty: "elementType"},message:"must have required property '"+"elementType"+"'"};if(vErrors === null){vErrors = [err77];}else {vErrors.push(err77);}errors++;}if(data.elementType !== undefined){let data37 = data.elementType;if(data37 && typeof data37 == "object" && !Array.isArray(data37)){if(data37.value === undefined){const err78 = {instancePath:instancePath+"/elementType",schemaPath:"#/allOf/1/allOf/2/then/anyOf/0/properties/elementType/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err78];}else {vErrors.push(err78);}errors++;}if(data37.value !== undefined){if("bpmn:CallActivity" !== data37.value){const err79 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/allOf/1/allOf/2/then/anyOf/0/properties/elementType/properties/value/const",keyword:"const",params:{allowedValue: "bpmn:CallActivity"},message:"must be equal to constant"};if(vErrors === null){vErrors = [err79];}else {vErrors.push(err79);}errors++;}}}}}var _valid5 = _errs83 === errors;valid38 = valid38 || _valid5;if(!valid38){const _errs86 = errors;if(data && typeof data == "object" && !Array.isArray(data)){if(data.appliesTo === undefined){const err80 = {instancePath,schemaPath:"#/allOf/1/allOf/2/then/anyOf/1/required",keyword:"required",params:{missingProperty: "appliesTo"},message:"must have required property '"+"appliesTo"+"'"};if(vErrors === null){vErrors = [err80];}else {vErrors.push(err80);}errors++;}if(data.appliesTo !== undefined){if(!func0(data.appliesTo, schema17.allOf[1].allOf[2].then.anyOf[1].properties.appliesTo.const)){const err81 = {instancePath:instancePath+"/appliesTo",schemaPath:"#/allOf/1/allOf/2/then/anyOf/1/properties/appliesTo/const",keyword:"const",params:{allowedValue: schema17.allOf[1].allOf[2].then.anyOf[1].properties.appliesTo.const},message:"must be equal to constant"};if(vErrors === null){vErrors = [err81];}else {vErrors.push(err81);}errors++;}}}var _valid5 = _errs86 === errors;valid38 = valid38 || _valid5;}if(!valid38){const err82 = {instancePath,schemaPath:"#/allOf/1/allOf/2/then/anyOf",keyword:"anyOf",params:{},message:"must match a schema in anyOf"};if(vErrors === null){vErrors = [err82];}else {vErrors.push(err82);}errors++;}else {errors = _errs82;if(vErrors !== null){if(_errs82){vErrors.length = _errs82;}else {vErrors = null;}}}var _valid4 = _errs81 === errors;valid33 = _valid4;}if(!valid33){const err83 = {instancePath,schemaPath:"#/allOf/1/allOf/2/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err83];}else {vErrors.push(err83);}errors++;}if(data && typeof data == "object" && !Array.isArray(data)){if(data.properties !== undefined){if(!(validate16(data.properties, {instancePath:instancePath+"/properties",parentData:data,parentDataProperty:"properties",rootData}))){vErrors = vErrors === null ? validate16.errors : vErrors.concat(validate16.errors);errors = vErrors.length;}}if(data.engines !== undefined){let data41 = data.engines;if(data41 && typeof data41 == "object" && !Array.isArray(data41)){if(data41.camunda !== undefined){if(typeof data41.camunda !== "string"){const err84 = {instancePath:instancePath+"/engines/camunda",schemaPath:"#/properties/engines/properties/camunda/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err84];}else {vErrors.push(err84);}errors++;}}}else {const err85 = {instancePath:instancePath+"/engines",schemaPath:"#/properties/engines/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err85];}else {vErrors.push(err85);}errors++;}}if(data.icon !== undefined){let data43 = data.icon;if(data43 && typeof data43 == "object" && !Array.isArray(data43)){if(data43.contents === undefined){const err86 = {instancePath:instancePath+"/icon",schemaPath:"#/properties/icon/required",keyword:"required",params:{missingProperty: "contents"},message:"must have required property '"+"contents"+"'"};if(vErrors === null){vErrors = [err86];}else {vErrors.push(err86);}errors++;}if(data43.contents !== undefined){let data44 = data43.contents;if(typeof data44 === "string"){if(!pattern4.test(data44)){const err87 = {instancePath:instancePath+"/icon/contents",schemaPath:"#/properties/icon/properties/contents/pattern",keyword:"pattern",params:{pattern: "^(https?|data):.*"},message:"must match pattern \""+"^(https?|data):.*"+"\""};if(vErrors === null){vErrors = [err87];}else {vErrors.push(err87);}errors++;}}else {const err88 = {instancePath:instancePath+"/icon/contents",schemaPath:"#/properties/icon/properties/contents/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err88];}else {vErrors.push(err88);}errors++;}if(errors > 0){const emErrors6 = {"pattern":[]};const templates6 = {};for(const err89 of vErrors){if((((((err89.keyword !== "errorMessage") && (!err89.emUsed)) && (err89.instancePath === instancePath+"/icon/contents")) && (err89.keyword in emErrors6)) && (err89.schemaPath.indexOf("#/properties/icon/properties/contents") === 0)) && (/^\/[^\/]*$/.test(err89.schemaPath.slice(37)))){emErrors6[err89.keyword].push(err89);err89.emUsed = true;}}for(const key6 in emErrors6){if(emErrors6[key6].length){const err90 = {instancePath:instancePath+"/icon/contents",schemaPath:"#/properties/icon/properties/contents/errorMessage",keyword:"errorMessage",params:{errors: emErrors6[key6]},message:key6 in templates6 ? templates6[key6]() : schema17.properties.icon.properties.contents.errorMessage[key6]};if(vErrors === null){vErrors = [err90];}else {vErrors.push(err90);}errors++;}}const emErrs6 = [];for(const err91 of vErrors){if(!err91.emUsed){emErrs6.push(err91);}}vErrors = emErrs6;errors = emErrs6.length;}}}else {const err92 = {instancePath:instancePath+"/icon",schemaPath:"#/properties/icon/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err92];}else {vErrors.push(err92);}errors++;}if(errors > 0){const emErrors7 = {"required":{"contents":[]}};const templates7 = {required:{}};let emPropParams3;let emParamsErrors3;for(const err93 of vErrors){if((((((err93.keyword !== "errorMessage") && (!err93.emUsed)) && (err93.instancePath === instancePath+"/icon")) && (err93.keyword in emErrors7)) && (err93.schemaPath.indexOf("#/properties/icon") === 0)) && (/^\/[^\/]*$/.test(err93.schemaPath.slice(17)))){emPropParams3 = obj0[err93.keyword];emParamsErrors3 = emErrors7[err93.keyword][err93.params[emPropParams3]];if(emParamsErrors3){emParamsErrors3.push(err93);err93.emUsed = true;}}}for(const key7 in emErrors7){for(const keyProp3 in emErrors7[key7]){emParamsErrors3 = emErrors7[key7][keyProp3];if(emParamsErrors3.length){const tmpl3 = templates7[key7] && templates7[key7][keyProp3];const err94 = {instancePath:instancePath+"/icon",schemaPath:"#/properties/icon/errorMessage",keyword:"errorMessage",params:{errors: emParamsErrors3},message:tmpl3 ? tmpl3() : schema17.properties.icon.errorMessage[key7][keyProp3]};if(vErrors === null){vErrors = [err94];}else {vErrors.push(err94);}errors++;}}}const emErrs7 = [];for(const err95 of vErrors){if(!err95.emUsed){emErrs7.push(err95);}}vErrors = emErrs7;errors = emErrs7.length;}}if(data.elementType !== undefined){let data45 = data.elementType;if(data45 && typeof data45 == "object" && !Array.isArray(data45)){if(data45.eventDefinition !== undefined){if(!(data45.eventDefinition === "bpmn:MessageEventDefinition")){const err96 = {instancePath:instancePath+"/elementType/eventDefinition",schemaPath:"#/properties/elementType/allOf/0/allOf/0/properties/eventDefinition/enum",keyword:"enum",params:{allowedValues: schema17.properties.elementType.allOf[0].allOf[0].properties.eventDefinition.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err96];}else {vErrors.push(err96);}errors++;}}}const _errs102 = errors;let valid48 = true;const _errs103 = errors;if(data45 && typeof data45 == "object" && !Array.isArray(data45)){if((data45.eventDefinition === undefined) && ("eventDefinition")){const err97 = {};if(vErrors === null){vErrors = [err97];}else {vErrors.push(err97);}errors++;}}var _valid6 = _errs103 === errors;errors = _errs102;if(vErrors !== null){if(_errs102){vErrors.length = _errs102;}else {vErrors = null;}}if(_valid6){const _errs104 = errors;if(data45 && typeof data45 == "object" && !Array.isArray(data45)){if(data45.value === undefined){const err98 = {instancePath:instancePath+"/elementType",schemaPath:"#/properties/elementType/allOf/0/allOf/1/then/required",keyword:"required",params:{missingProperty: "value"},message:"must have required property '"+"value"+"'"};if(vErrors === null){vErrors = [err98];}else {vErrors.push(err98);}errors++;}if(data45.value !== undefined){let data47 = data45.value;if(!(((((data47 === "bpmn:StartEvent") || (data47 === "bpmn:IntermediateCatchEvent")) || (data47 === "bpmn:IntermediateThrowEvent")) || (data47 === "bpmn:BoundaryEvent")) || (data47 === "bpmn:EndEvent"))){const err99 = {instancePath:instancePath+"/elementType/value",schemaPath:"#/properties/elementType/allOf/0/allOf/1/then/properties/value/enum",keyword:"enum",params:{allowedValues: schema17.properties.elementType.allOf[0].allOf[1].then.properties.value.enum},message:"must be equal to one of the allowed values"};if(vErrors === null){vErrors = [err99];}else {vErrors.push(err99);}errors++;}}}var _valid6 = _errs104 === errors;valid48 = _valid6;}if(!valid48){const err100 = {instancePath:instancePath+"/elementType",schemaPath:"#/properties/elementType/allOf/0/allOf/1/if",keyword:"if",params:{failingKeyword: "then"},message:"must match \"then\" schema"};if(vErrors === null){vErrors = [err100];}else {vErrors.push(err100);}errors++;}}if(data.groups !== undefined){let data48 = data.groups;if(Array.isArray(data48)){const len5 = data48.length;for(let i5=0; i5<len5; i5++){let data49 = data48[i5];if(data49 && typeof data49 == "object" && !Array.isArray(data49)){if(data49.tooltip !== undefined){if(typeof data49.tooltip !== "string"){const err101 = {instancePath:instancePath+"/groups/" + i5+"/tooltip",schemaPath:"#/properties/groups/items/properties/tooltip/type",keyword:"type",params:{type: "string"},message:"must be string"};if(vErrors === null){vErrors = [err101];}else {vErrors.push(err101);}errors++;}}if(data49.openByDefault !== undefined){if(typeof data49.openByDefault !== "boolean"){const err102 = {instancePath:instancePath+"/groups/" + i5+"/openByDefault",schemaPath:"#/properties/groups/items/properties/openByDefault/type",keyword:"type",params:{type: "boolean"},message:"must be boolean"};if(vErrors === null){vErrors = [err102];}else {vErrors.push(err102);}errors++;}}}}}}}else {const err103 = {instancePath,schemaPath:"#/type",keyword:"type",params:{type: "object"},message:"must be object"};if(vErrors === null){vErrors = [err103];}else {vErrors.push(err103);}errors++;}validate15.errors = vErrors;return errors === 0;}function validate14(data, {instancePath="", parentData, parentDataProperty, rootData=data}={}){let vErrors = null;let errors = 0;const _errs0 = errors;let valid0 = false;let passing0 = null;const _errs1 = errors;if(!(validate15(data, {instancePath,parentData,parentDataProperty,rootData}))){vErrors = vErrors === null ? validate15.errors : vErrors.concat(validate15.errors);errors = vErrors.length;}var _valid0 = _errs1 === errors;if(_valid0){valid0 = true;passing0 = 0;}const _errs2 = errors;if(Array.isArray(data)){const len0 = data.length;for(let i0=0; i0<len0; i0++){if(!(validate15(data[i0], {instancePath:instancePath+"/" + i0,parentData:data,parentDataProperty:i0,rootData}))){vErrors = vErrors === null ? validate15.errors : vErrors.concat(validate15.errors);errors = vErrors.length;}}}else {const err0 = {instancePath,schemaPath:"#/oneOf/1/type",keyword:"type",params:{type: "array"},message:"must be array"};if(vErrors === null){vErrors = [err0];}else {vErrors.push(err0);}errors++;}var _valid0 = _errs2 === errors;if(_valid0 && valid0){valid0 = false;passing0 = [passing0, 1];}else {if(_valid0){valid0 = true;passing0 = 1;}}if(!valid0){const err1 = {instancePath,schemaPath:"#/oneOf",keyword:"oneOf",params:{passingSchemas: passing0},message:"must match exactly one schema in oneOf"};if(vErrors === null){vErrors = [err1];}else {vErrors.push(err1);}errors++;}else {errors = _errs0;if(vErrors !== null){if(_errs0){vErrors.length = _errs0;}else {vErrors = null;}}}validate14.errors = vErrors;return errors === 0;}
|
|
121023
121023
|
return standaloneZeebeValidator.exports;
|
|
121024
121024
|
}
|
|
121025
121025
|
|
|
121026
121026
|
var standaloneZeebeValidatorExports = requireStandaloneZeebeValidator();
|
|
121027
121027
|
var validateTemplate = /*@__PURE__*/getDefaultExportFromCjs(standaloneZeebeValidatorExports);
|
|
121028
121028
|
|
|
121029
|
-
function getZeebeSchemaPackage() {
|
|
121030
|
-
return name$1;
|
|
121031
|
-
}
|
|
121032
|
-
|
|
121033
|
-
function getZeebeSchemaVersion() {
|
|
121034
|
-
return version;
|
|
121035
|
-
}
|
|
121036
|
-
|
|
121037
|
-
/**
|
|
121038
|
-
* Validate a single object.
|
|
121039
|
-
*
|
|
121040
|
-
* @param {Object} object
|
|
121041
|
-
* @return {Object} single object validation result
|
|
121042
|
-
*/
|
|
121043
|
-
function validateZeebe(object) {
|
|
121044
|
-
return _validate(object, validateTemplate);
|
|
121029
|
+
function getZeebeSchemaPackage() {
|
|
121030
|
+
return name$1;
|
|
121031
|
+
}
|
|
121032
|
+
|
|
121033
|
+
function getZeebeSchemaVersion() {
|
|
121034
|
+
return version;
|
|
121035
|
+
}
|
|
121036
|
+
|
|
121037
|
+
/**
|
|
121038
|
+
* Validate a single object.
|
|
121039
|
+
*
|
|
121040
|
+
* @param {Object} object
|
|
121041
|
+
* @return {Object} single object validation result
|
|
121042
|
+
*/
|
|
121043
|
+
function validateZeebe(object) {
|
|
121044
|
+
return _validate(object, validateTemplate);
|
|
121045
121045
|
}
|
|
121046
121046
|
|
|
121047
121047
|
var staticResolver;
|
|
@@ -121081,9 +121081,24 @@
|
|
|
121081
121081
|
|
|
121082
121082
|
requireStaticResolver();
|
|
121083
121083
|
|
|
121084
|
-
|
|
121085
|
-
|
|
121084
|
+
/**
|
|
121085
|
+
* Check if the property is cast to FEEL expression:
|
|
121086
|
+
* - Boolean and Number properties with feel set to 'optional' or 'static'
|
|
121087
|
+
* - Boolean and Number input/output parameters have default feel=static
|
|
121088
|
+
*
|
|
121089
|
+
* @returns {boolean}
|
|
121090
|
+
*/
|
|
121091
|
+
const shouldCastToFeel = property => {
|
|
121092
|
+
const feel = getFeelValue(property);
|
|
121093
|
+
return ['optional', 'static'].includes(feel) && ['Boolean', 'Number'].includes(property.type);
|
|
121086
121094
|
};
|
|
121095
|
+
const ALWAYS_CAST_TO_FEEL = ['zeebe:input', 'zeebe:output'];
|
|
121096
|
+
function getFeelValue(property) {
|
|
121097
|
+
if (ALWAYS_CAST_TO_FEEL.includes(property.binding.type)) {
|
|
121098
|
+
return property.feel || 'static';
|
|
121099
|
+
}
|
|
121100
|
+
return property.feel;
|
|
121101
|
+
}
|
|
121087
121102
|
const toFeelExpression = (value, type) => {
|
|
121088
121103
|
if (typeof value === 'string' && value.startsWith('=')) {
|
|
121089
121104
|
return value;
|
|
@@ -121098,28 +121113,28 @@
|
|
|
121098
121113
|
return '=' + value.toString();
|
|
121099
121114
|
};
|
|
121100
121115
|
|
|
121101
|
-
/**
|
|
121102
|
-
* The BPMN 2.0 extension attribute name under
|
|
121103
|
-
* which the element template ID is stored.
|
|
121104
|
-
*
|
|
121105
|
-
* @type {String}
|
|
121116
|
+
/**
|
|
121117
|
+
* The BPMN 2.0 extension attribute name under
|
|
121118
|
+
* which the element template ID is stored.
|
|
121119
|
+
*
|
|
121120
|
+
* @type {String}
|
|
121106
121121
|
*/
|
|
121107
121122
|
const TEMPLATE_ID_ATTR$1 = 'zeebe:modelerTemplate';
|
|
121108
121123
|
|
|
121109
|
-
/**
|
|
121110
|
-
* The BPMN 2.0 extension attribute name under
|
|
121111
|
-
* which the element template version is stored.
|
|
121112
|
-
*
|
|
121113
|
-
* @type {String}
|
|
121124
|
+
/**
|
|
121125
|
+
* The BPMN 2.0 extension attribute name under
|
|
121126
|
+
* which the element template version is stored.
|
|
121127
|
+
*
|
|
121128
|
+
* @type {String}
|
|
121114
121129
|
*/
|
|
121115
121130
|
const TEMPLATE_VERSION_ATTR$1 = 'zeebe:modelerTemplateVersion';
|
|
121116
121131
|
|
|
121117
|
-
/**
|
|
121118
|
-
* Get template id for a given diagram element.
|
|
121119
|
-
*
|
|
121120
|
-
* @param {djs.model.Base} element
|
|
121121
|
-
*
|
|
121122
|
-
* @return {String}
|
|
121132
|
+
/**
|
|
121133
|
+
* Get template id for a given diagram element.
|
|
121134
|
+
*
|
|
121135
|
+
* @param {djs.model.Base} element
|
|
121136
|
+
*
|
|
121137
|
+
* @return {String}
|
|
121123
121138
|
*/
|
|
121124
121139
|
function getTemplateId$1(element) {
|
|
121125
121140
|
const businessObject = getBusinessObject$1(element);
|
|
@@ -121128,12 +121143,12 @@
|
|
|
121128
121143
|
}
|
|
121129
121144
|
}
|
|
121130
121145
|
|
|
121131
|
-
/**
|
|
121132
|
-
* Get template version for a given diagram element.
|
|
121133
|
-
*
|
|
121134
|
-
* @param {djs.model.Base} element
|
|
121135
|
-
*
|
|
121136
|
-
* @return {String}
|
|
121146
|
+
/**
|
|
121147
|
+
* Get template version for a given diagram element.
|
|
121148
|
+
*
|
|
121149
|
+
* @param {djs.model.Base} element
|
|
121150
|
+
*
|
|
121151
|
+
* @return {String}
|
|
121137
121152
|
*/
|
|
121138
121153
|
function getTemplateVersion$1(element) {
|
|
121139
121154
|
const businessObject = getBusinessObject$1(element);
|
|
@@ -121142,14 +121157,14 @@
|
|
|
121142
121157
|
}
|
|
121143
121158
|
}
|
|
121144
121159
|
|
|
121145
|
-
/**
|
|
121146
|
-
* Find extension with given type in
|
|
121147
|
-
* BPMN element, diagram element or ExtensionElement.
|
|
121148
|
-
*
|
|
121149
|
-
* @param {ModdleElement|djs.model.Base} element
|
|
121150
|
-
* @param {String} type
|
|
121151
|
-
*
|
|
121152
|
-
* @return {ModdleElement} the extension
|
|
121160
|
+
/**
|
|
121161
|
+
* Find extension with given type in
|
|
121162
|
+
* BPMN element, diagram element or ExtensionElement.
|
|
121163
|
+
*
|
|
121164
|
+
* @param {ModdleElement|djs.model.Base} element
|
|
121165
|
+
* @param {String} type
|
|
121166
|
+
*
|
|
121167
|
+
* @return {ModdleElement} the extension
|
|
121153
121168
|
*/
|
|
121154
121169
|
function findExtension$1(element, type) {
|
|
121155
121170
|
const businessObject = getBusinessObject$1(element);
|
|
@@ -121203,7 +121218,7 @@
|
|
|
121203
121218
|
return businessObject.get('messageRef');
|
|
121204
121219
|
}
|
|
121205
121220
|
function getDefaultValue(property) {
|
|
121206
|
-
if (
|
|
121221
|
+
if (shouldCastToFeel(property)) {
|
|
121207
121222
|
return toFeelExpression(property.value, property.type);
|
|
121208
121223
|
}
|
|
121209
121224
|
if (property.value !== undefined) {
|
|
@@ -121219,28 +121234,28 @@
|
|
|
121219
121234
|
}
|
|
121220
121235
|
}
|
|
121221
121236
|
|
|
121222
|
-
/**
|
|
121223
|
-
* The BPMN 2.0 extension attribute name under
|
|
121224
|
-
* which the element template ID is stored.
|
|
121225
|
-
*
|
|
121226
|
-
* @type {String}
|
|
121237
|
+
/**
|
|
121238
|
+
* The BPMN 2.0 extension attribute name under
|
|
121239
|
+
* which the element template ID is stored.
|
|
121240
|
+
*
|
|
121241
|
+
* @type {String}
|
|
121227
121242
|
*/
|
|
121228
121243
|
const TEMPLATE_ID_ATTR = 'camunda:modelerTemplate';
|
|
121229
121244
|
|
|
121230
|
-
/**
|
|
121231
|
-
* The BPMN 2.0 extension attribute name under
|
|
121232
|
-
* which the element template version is stored.
|
|
121233
|
-
*
|
|
121234
|
-
* @type {String}
|
|
121245
|
+
/**
|
|
121246
|
+
* The BPMN 2.0 extension attribute name under
|
|
121247
|
+
* which the element template version is stored.
|
|
121248
|
+
*
|
|
121249
|
+
* @type {String}
|
|
121235
121250
|
*/
|
|
121236
121251
|
const TEMPLATE_VERSION_ATTR = 'camunda:modelerTemplateVersion';
|
|
121237
121252
|
|
|
121238
|
-
/**
|
|
121239
|
-
* Get template id for a given diagram element.
|
|
121240
|
-
*
|
|
121241
|
-
* @param {djs.model.Base} element
|
|
121242
|
-
*
|
|
121243
|
-
* @return {String}
|
|
121253
|
+
/**
|
|
121254
|
+
* Get template id for a given diagram element.
|
|
121255
|
+
*
|
|
121256
|
+
* @param {djs.model.Base} element
|
|
121257
|
+
*
|
|
121258
|
+
* @return {String}
|
|
121244
121259
|
*/
|
|
121245
121260
|
function getTemplateId(element) {
|
|
121246
121261
|
const businessObject = getBusinessObject$1(element);
|
|
@@ -121249,12 +121264,12 @@
|
|
|
121249
121264
|
}
|
|
121250
121265
|
}
|
|
121251
121266
|
|
|
121252
|
-
/**
|
|
121253
|
-
* Get template version for a given diagram element.
|
|
121254
|
-
*
|
|
121255
|
-
* @param {djs.model.Base} element
|
|
121256
|
-
*
|
|
121257
|
-
* @return {String}
|
|
121267
|
+
/**
|
|
121268
|
+
* Get template version for a given diagram element.
|
|
121269
|
+
*
|
|
121270
|
+
* @param {djs.model.Base} element
|
|
121271
|
+
*
|
|
121272
|
+
* @return {String}
|
|
121258
121273
|
*/
|
|
121259
121274
|
function getTemplateVersion(element) {
|
|
121260
121275
|
const businessObject = getBusinessObject$1(element);
|
|
@@ -121263,14 +121278,14 @@
|
|
|
121263
121278
|
}
|
|
121264
121279
|
}
|
|
121265
121280
|
|
|
121266
|
-
/**
|
|
121267
|
-
* Find extension with given type in
|
|
121268
|
-
* BPMN element, diagram element or ExtensionElement.
|
|
121269
|
-
*
|
|
121270
|
-
* @param {ModdleElement|djs.model.Base} element
|
|
121271
|
-
* @param {String} type
|
|
121272
|
-
*
|
|
121273
|
-
* @return {ModdleElement} the extension
|
|
121281
|
+
/**
|
|
121282
|
+
* Find extension with given type in
|
|
121283
|
+
* BPMN element, diagram element or ExtensionElement.
|
|
121284
|
+
*
|
|
121285
|
+
* @param {ModdleElement|djs.model.Base} element
|
|
121286
|
+
* @param {String} type
|
|
121287
|
+
*
|
|
121288
|
+
* @return {ModdleElement} the extension
|
|
121274
121289
|
*/
|
|
121275
121290
|
function findExtension(element, type) {
|
|
121276
121291
|
const businessObject = getBusinessObject$1(element);
|
|
@@ -121394,10 +121409,10 @@
|
|
|
121394
121409
|
}
|
|
121395
121410
|
|
|
121396
121411
|
// eslint-disable-next-line no-undef
|
|
121397
|
-
const packageVersion = "2.5.
|
|
121412
|
+
const packageVersion = "2.5.2";
|
|
121398
121413
|
|
|
121399
|
-
/**
|
|
121400
|
-
* Registry for element templates.
|
|
121414
|
+
/**
|
|
121415
|
+
* Registry for element templates.
|
|
121401
121416
|
*/
|
|
121402
121417
|
let ElementTemplates$1 = class ElementTemplates {
|
|
121403
121418
|
constructor(commandStack, eventBus, modeling, injector, config) {
|
|
@@ -121414,13 +121429,13 @@
|
|
|
121414
121429
|
});
|
|
121415
121430
|
}
|
|
121416
121431
|
|
|
121417
|
-
/**
|
|
121418
|
-
* Get template with given ID and optional version or for element.
|
|
121419
|
-
*
|
|
121420
|
-
* @param {String|djs.model.Base} id
|
|
121421
|
-
* @param {number} [version]
|
|
121422
|
-
*
|
|
121423
|
-
* @return {ElementTemplate}
|
|
121432
|
+
/**
|
|
121433
|
+
* Get template with given ID and optional version or for element.
|
|
121434
|
+
*
|
|
121435
|
+
* @param {String|djs.model.Base} id
|
|
121436
|
+
* @param {number} [version]
|
|
121437
|
+
*
|
|
121438
|
+
* @return {ElementTemplate}
|
|
121424
121439
|
*/
|
|
121425
121440
|
get(id, version) {
|
|
121426
121441
|
const templates = this._templatesById;
|
|
@@ -121442,12 +121457,12 @@
|
|
|
121442
121457
|
}
|
|
121443
121458
|
}
|
|
121444
121459
|
|
|
121445
|
-
/**
|
|
121446
|
-
* Get default template for given element.
|
|
121447
|
-
*
|
|
121448
|
-
* @param {djs.model.Base} element
|
|
121449
|
-
*
|
|
121450
|
-
* @return {ElementTemplate}
|
|
121460
|
+
/**
|
|
121461
|
+
* Get default template for given element.
|
|
121462
|
+
*
|
|
121463
|
+
* @param {djs.model.Base} element
|
|
121464
|
+
*
|
|
121465
|
+
* @return {ElementTemplate}
|
|
121451
121466
|
*/
|
|
121452
121467
|
getDefault(element) {
|
|
121453
121468
|
return find$2(this.getAll(element), function (template) {
|
|
@@ -121455,11 +121470,11 @@
|
|
|
121455
121470
|
}) || null;
|
|
121456
121471
|
}
|
|
121457
121472
|
|
|
121458
|
-
/**
|
|
121459
|
-
* Get all templates (with given ID or applicable to element).
|
|
121460
|
-
*
|
|
121461
|
-
* @param {string|djs.model.Base} [id]
|
|
121462
|
-
* @return {Array<ElementTemplate>}
|
|
121473
|
+
/**
|
|
121474
|
+
* Get all templates (with given ID or applicable to element).
|
|
121475
|
+
*
|
|
121476
|
+
* @param {string|djs.model.Base} [id]
|
|
121477
|
+
* @return {Array<ElementTemplate>}
|
|
121463
121478
|
*/
|
|
121464
121479
|
getAll(id) {
|
|
121465
121480
|
return this._getTemplateVerions(id, {
|
|
@@ -121467,14 +121482,14 @@
|
|
|
121467
121482
|
});
|
|
121468
121483
|
}
|
|
121469
121484
|
|
|
121470
|
-
/**
|
|
121471
|
-
* Get all templates (with given ID or applicable to element) with the latest
|
|
121472
|
-
* version.
|
|
121473
|
-
*
|
|
121474
|
-
* @param {String|djs.model.Base} [id]
|
|
121475
|
-
* @param {{ deprecated?: boolean }} [options]
|
|
121476
|
-
*
|
|
121477
|
-
* @return {Array<ElementTemplate>}
|
|
121485
|
+
/**
|
|
121486
|
+
* Get all templates (with given ID or applicable to element) with the latest
|
|
121487
|
+
* version.
|
|
121488
|
+
*
|
|
121489
|
+
* @param {String|djs.model.Base} [id]
|
|
121490
|
+
* @param {{ deprecated?: boolean }} [options]
|
|
121491
|
+
*
|
|
121492
|
+
* @return {Array<ElementTemplate>}
|
|
121478
121493
|
*/
|
|
121479
121494
|
getLatest(id, options = {}) {
|
|
121480
121495
|
return this._getTemplateVerions(id, {
|
|
@@ -121483,10 +121498,10 @@
|
|
|
121483
121498
|
});
|
|
121484
121499
|
}
|
|
121485
121500
|
|
|
121486
|
-
/**
|
|
121487
|
-
* Set templates.
|
|
121488
|
-
*
|
|
121489
|
-
* @param {Array<ElementTemplate>} templates
|
|
121501
|
+
/**
|
|
121502
|
+
* Set templates.
|
|
121503
|
+
*
|
|
121504
|
+
* @param {Array<ElementTemplate>} templates
|
|
121490
121505
|
*/
|
|
121491
121506
|
set(templates) {
|
|
121492
121507
|
this._templatesById = {};
|
|
@@ -121515,12 +121530,12 @@
|
|
|
121515
121530
|
this._fire('engines.changed');
|
|
121516
121531
|
}
|
|
121517
121532
|
|
|
121518
|
-
/**
|
|
121519
|
-
* Ensures that only valid engines are kept around
|
|
121520
|
-
*
|
|
121521
|
-
* @param { Record<string, string> } engines
|
|
121522
|
-
*
|
|
121523
|
-
* @return { Record<string, string> } filtered, valid engines
|
|
121533
|
+
/**
|
|
121534
|
+
* Ensures that only valid engines are kept around
|
|
121535
|
+
*
|
|
121536
|
+
* @param { Record<string, string> } engines
|
|
121537
|
+
*
|
|
121538
|
+
* @return { Record<string, string> } filtered, valid engines
|
|
121524
121539
|
*/
|
|
121525
121540
|
_coerceEngines(engines) {
|
|
121526
121541
|
// we provide <elementTemplates> engine with the current
|
|
@@ -121543,23 +121558,23 @@
|
|
|
121543
121558
|
}, {});
|
|
121544
121559
|
}
|
|
121545
121560
|
|
|
121546
|
-
/**
|
|
121547
|
-
* Check if template is compatible with currently set engine version.
|
|
121548
|
-
*
|
|
121549
|
-
* @param {ElementTemplate} template
|
|
121550
|
-
*
|
|
121551
|
-
* @return {boolean} - true if compatible or no engine is set for elementTemplates or template.
|
|
121561
|
+
/**
|
|
121562
|
+
* Check if template is compatible with currently set engine version.
|
|
121563
|
+
*
|
|
121564
|
+
* @param {ElementTemplate} template
|
|
121565
|
+
*
|
|
121566
|
+
* @return {boolean} - true if compatible or no engine is set for elementTemplates or template.
|
|
121552
121567
|
*/
|
|
121553
121568
|
isCompatible(template) {
|
|
121554
121569
|
return !Object.keys(this.getIncompatibleEngines(template)).length;
|
|
121555
121570
|
}
|
|
121556
121571
|
|
|
121557
|
-
/**
|
|
121558
|
-
* Get engines that are incompatible with the template.
|
|
121559
|
-
*
|
|
121560
|
-
* @param {any} template
|
|
121561
|
-
*
|
|
121562
|
-
* @return { Record<string, { required: string, found: string } } - incompatible engines along with their template and local versions
|
|
121572
|
+
/**
|
|
121573
|
+
* Get engines that are incompatible with the template.
|
|
121574
|
+
*
|
|
121575
|
+
* @param {any} template
|
|
121576
|
+
*
|
|
121577
|
+
* @return { Record<string, { required: string, found: string } } - incompatible engines along with their template and local versions
|
|
121563
121578
|
*/
|
|
121564
121579
|
getIncompatibleEngines(template) {
|
|
121565
121580
|
const localEngines = this._engines;
|
|
@@ -121578,11 +121593,11 @@
|
|
|
121578
121593
|
}, {});
|
|
121579
121594
|
}
|
|
121580
121595
|
|
|
121581
|
-
/**
|
|
121582
|
-
* @param {object|string|null} id
|
|
121583
|
-
* @param { { latest?: boolean, deprecated?: boolean } [options]
|
|
121584
|
-
*
|
|
121585
|
-
* @return {Array<ElementTemplate>}
|
|
121596
|
+
/**
|
|
121597
|
+
* @param {object|string|null} id
|
|
121598
|
+
* @param { { latest?: boolean, deprecated?: boolean } [options]
|
|
121599
|
+
*
|
|
121600
|
+
* @return {Array<ElementTemplate>}
|
|
121586
121601
|
*/
|
|
121587
121602
|
_getTemplateVerions(id, options = {}) {
|
|
121588
121603
|
const {
|
|
@@ -121618,13 +121633,13 @@
|
|
|
121618
121633
|
return getTemplateVersion(element);
|
|
121619
121634
|
}
|
|
121620
121635
|
|
|
121621
|
-
/**
|
|
121622
|
-
* Apply element template to a given element.
|
|
121623
|
-
*
|
|
121624
|
-
* @param {djs.model.Base} element
|
|
121625
|
-
* @param {ElementTemplate} newTemplate
|
|
121626
|
-
*
|
|
121627
|
-
* @return {djs.model.Base} the updated element
|
|
121636
|
+
/**
|
|
121637
|
+
* Apply element template to a given element.
|
|
121638
|
+
*
|
|
121639
|
+
* @param {djs.model.Base} element
|
|
121640
|
+
* @param {ElementTemplate} newTemplate
|
|
121641
|
+
*
|
|
121642
|
+
* @return {djs.model.Base} the updated element
|
|
121628
121643
|
*/
|
|
121629
121644
|
applyTemplate(element, newTemplate) {
|
|
121630
121645
|
let action = 'apply';
|
|
@@ -121655,12 +121670,12 @@
|
|
|
121655
121670
|
return this._eventBus.fire(`elementTemplates.${action}`, payload);
|
|
121656
121671
|
}
|
|
121657
121672
|
|
|
121658
|
-
/**
|
|
121659
|
-
* Remove template from a given element.
|
|
121660
|
-
*
|
|
121661
|
-
* @param {djs.model.Base} element
|
|
121662
|
-
*
|
|
121663
|
-
* @return {djs.model.Base} the updated element
|
|
121673
|
+
/**
|
|
121674
|
+
* Remove template from a given element.
|
|
121675
|
+
*
|
|
121676
|
+
* @param {djs.model.Base} element
|
|
121677
|
+
*
|
|
121678
|
+
* @return {djs.model.Base} the updated element
|
|
121664
121679
|
*/
|
|
121665
121680
|
removeTemplate(element) {
|
|
121666
121681
|
this._fire('remove', {
|
|
@@ -121673,12 +121688,12 @@
|
|
|
121673
121688
|
return context.newElement;
|
|
121674
121689
|
}
|
|
121675
121690
|
|
|
121676
|
-
/**
|
|
121677
|
-
* Unlink template from a given element.
|
|
121678
|
-
*
|
|
121679
|
-
* @param {djs.model.Base} element
|
|
121680
|
-
*
|
|
121681
|
-
* @return {djs.model.Base} the updated element
|
|
121691
|
+
/**
|
|
121692
|
+
* Unlink template from a given element.
|
|
121693
|
+
*
|
|
121694
|
+
* @param {djs.model.Base} element
|
|
121695
|
+
*
|
|
121696
|
+
* @return {djs.model.Base} the updated element
|
|
121682
121697
|
*/
|
|
121683
121698
|
unlinkTemplate(element) {
|
|
121684
121699
|
return this.applyTemplate(element, null);
|
|
@@ -121686,8 +121701,8 @@
|
|
|
121686
121701
|
};
|
|
121687
121702
|
ElementTemplates$1.$inject = ['commandStack', 'eventBus', 'modeling', 'injector', 'config.elementTemplates'];
|
|
121688
121703
|
|
|
121689
|
-
/**
|
|
121690
|
-
* Registry for element templates.
|
|
121704
|
+
/**
|
|
121705
|
+
* Registry for element templates.
|
|
121691
121706
|
*/
|
|
121692
121707
|
class ElementTemplates extends ElementTemplates$1 {
|
|
121693
121708
|
constructor(templateElementFactory, commandStack, eventBus, modeling, injector, config) {
|
|
@@ -121701,11 +121716,11 @@
|
|
|
121701
121716
|
return getTemplateVersion$1(element);
|
|
121702
121717
|
}
|
|
121703
121718
|
|
|
121704
|
-
/**
|
|
121705
|
-
* Create an element based on an element template.
|
|
121706
|
-
*
|
|
121707
|
-
* @param {ElementTemplate} template
|
|
121708
|
-
* @returns {djs.model.Base}
|
|
121719
|
+
/**
|
|
121720
|
+
* Create an element based on an element template.
|
|
121721
|
+
*
|
|
121722
|
+
* @param {ElementTemplate} template
|
|
121723
|
+
* @returns {djs.model.Base}
|
|
121709
121724
|
*/
|
|
121710
121725
|
createElement(template) {
|
|
121711
121726
|
if (!template) {
|
|
@@ -121715,13 +121730,13 @@
|
|
|
121715
121730
|
return element;
|
|
121716
121731
|
}
|
|
121717
121732
|
|
|
121718
|
-
/**
|
|
121719
|
-
* Apply element template to a given element.
|
|
121720
|
-
*
|
|
121721
|
-
* @param {djs.model.Base} element
|
|
121722
|
-
* @param {ElementTemplate} newTemplate
|
|
121723
|
-
*
|
|
121724
|
-
* @return {djs.model.Base} the updated element
|
|
121733
|
+
/**
|
|
121734
|
+
* Apply element template to a given element.
|
|
121735
|
+
*
|
|
121736
|
+
* @param {djs.model.Base} element
|
|
121737
|
+
* @param {ElementTemplate} newTemplate
|
|
121738
|
+
*
|
|
121739
|
+
* @return {djs.model.Base} the updated element
|
|
121725
121740
|
*/
|
|
121726
121741
|
applyTemplate(element, newTemplate) {
|
|
121727
121742
|
let action = 'apply';
|
|
@@ -121754,8 +121769,8 @@
|
|
|
121754
121769
|
const SUPPORTED_SCHEMA_VERSION$1 = getSchemaVersion$1();
|
|
121755
121770
|
const MORPHABLE_TYPES = ['bpmn:Activity', 'bpmn:Event', 'bpmn:Gateway'];
|
|
121756
121771
|
|
|
121757
|
-
/**
|
|
121758
|
-
* A element template validator.
|
|
121772
|
+
/**
|
|
121773
|
+
* A element template validator.
|
|
121759
121774
|
*/
|
|
121760
121775
|
let Validator$1 = class Validator {
|
|
121761
121776
|
constructor(moddle) {
|
|
@@ -121765,12 +121780,12 @@
|
|
|
121765
121780
|
this._moddle = moddle;
|
|
121766
121781
|
}
|
|
121767
121782
|
|
|
121768
|
-
/**
|
|
121769
|
-
* Adds the templates.
|
|
121770
|
-
*
|
|
121771
|
-
* @param {Array<TemplateDescriptor>} templates
|
|
121772
|
-
*
|
|
121773
|
-
* @return {Validator}
|
|
121783
|
+
/**
|
|
121784
|
+
* Adds the templates.
|
|
121785
|
+
*
|
|
121786
|
+
* @param {Array<TemplateDescriptor>} templates
|
|
121787
|
+
*
|
|
121788
|
+
* @return {Validator}
|
|
121774
121789
|
*/
|
|
121775
121790
|
addAll(templates) {
|
|
121776
121791
|
if (!isArray$4(templates)) {
|
|
@@ -121781,12 +121796,12 @@
|
|
|
121781
121796
|
return this;
|
|
121782
121797
|
}
|
|
121783
121798
|
|
|
121784
|
-
/**
|
|
121785
|
-
* Add the given element template, if it is valid.
|
|
121786
|
-
*
|
|
121787
|
-
* @param {TemplateDescriptor} template
|
|
121788
|
-
*
|
|
121789
|
-
* @return {Validator}
|
|
121799
|
+
/**
|
|
121800
|
+
* Add the given element template, if it is valid.
|
|
121801
|
+
*
|
|
121802
|
+
* @param {TemplateDescriptor} template
|
|
121803
|
+
*
|
|
121804
|
+
* @return {Validator}
|
|
121790
121805
|
*/
|
|
121791
121806
|
add(template) {
|
|
121792
121807
|
const err = this._validateTemplate(template);
|
|
@@ -121803,12 +121818,12 @@
|
|
|
121803
121818
|
return this;
|
|
121804
121819
|
}
|
|
121805
121820
|
|
|
121806
|
-
/**
|
|
121807
|
-
* Validate given template and return error (if any).
|
|
121808
|
-
*
|
|
121809
|
-
* @param {TemplateDescriptor} template
|
|
121810
|
-
*
|
|
121811
|
-
* @return {Error} validation error, if any
|
|
121821
|
+
/**
|
|
121822
|
+
* Validate given template and return error (if any).
|
|
121823
|
+
*
|
|
121824
|
+
* @param {TemplateDescriptor} template
|
|
121825
|
+
*
|
|
121826
|
+
* @return {Error} validation error, if any
|
|
121812
121827
|
*/
|
|
121813
121828
|
_validateTemplate(template) {
|
|
121814
121829
|
const id = template.id,
|
|
@@ -121865,12 +121880,12 @@
|
|
|
121865
121880
|
return err;
|
|
121866
121881
|
}
|
|
121867
121882
|
|
|
121868
|
-
/**
|
|
121869
|
-
* Validate elementType for given template and return error (if any).
|
|
121870
|
-
*
|
|
121871
|
-
* @param {TemplateDescriptor} template
|
|
121872
|
-
*
|
|
121873
|
-
* @return {Error} validation error, if any
|
|
121883
|
+
/**
|
|
121884
|
+
* Validate elementType for given template and return error (if any).
|
|
121885
|
+
*
|
|
121886
|
+
* @param {TemplateDescriptor} template
|
|
121887
|
+
*
|
|
121888
|
+
* @return {Error} validation error, if any
|
|
121874
121889
|
*/
|
|
121875
121890
|
_validateElementType(template) {
|
|
121876
121891
|
if (template.elementType && template.appliesTo) {
|
|
@@ -121893,24 +121908,24 @@
|
|
|
121893
121908
|
}
|
|
121894
121909
|
}
|
|
121895
121910
|
|
|
121896
|
-
/**
|
|
121897
|
-
* Check if given type is a subtype of given base type.
|
|
121898
|
-
*
|
|
121899
|
-
* @param {String} type
|
|
121900
|
-
* @param {String} baseType
|
|
121901
|
-
* @returns {Boolean}
|
|
121911
|
+
/**
|
|
121912
|
+
* Check if given type is a subtype of given base type.
|
|
121913
|
+
*
|
|
121914
|
+
* @param {String} type
|
|
121915
|
+
* @param {String} baseType
|
|
121916
|
+
* @returns {Boolean}
|
|
121902
121917
|
*/
|
|
121903
121918
|
_isType(type, baseType) {
|
|
121904
121919
|
const moddleType = this._moddle.getType(type);
|
|
121905
121920
|
return moddleType && baseType in this._moddle.getElementDescriptor(moddleType).allTypesByName;
|
|
121906
121921
|
}
|
|
121907
121922
|
|
|
121908
|
-
/**
|
|
121909
|
-
* Checks if a given type can be morphed into another type.
|
|
121910
|
-
*
|
|
121911
|
-
* @param {String} sourceType
|
|
121912
|
-
* @param {String} targetType
|
|
121913
|
-
* @returns {Boolean}
|
|
121923
|
+
/**
|
|
121924
|
+
* Checks if a given type can be morphed into another type.
|
|
121925
|
+
*
|
|
121926
|
+
* @param {String} sourceType
|
|
121927
|
+
* @param {String} targetType
|
|
121928
|
+
* @returns {Boolean}
|
|
121914
121929
|
*/
|
|
121915
121930
|
_canMorph(sourceType, targetType) {
|
|
121916
121931
|
if (sourceType === targetType) {
|
|
@@ -121923,13 +121938,13 @@
|
|
|
121923
121938
|
return this._isType(targetType, baseType);
|
|
121924
121939
|
}
|
|
121925
121940
|
|
|
121926
|
-
/**
|
|
121927
|
-
* Log an error for the given template
|
|
121928
|
-
*
|
|
121929
|
-
* @param {(String|Error)} err
|
|
121930
|
-
* @param {TemplateDescriptor} template
|
|
121931
|
-
*
|
|
121932
|
-
* @return {Error} logged validation errors
|
|
121941
|
+
/**
|
|
121942
|
+
* Log an error for the given template
|
|
121943
|
+
*
|
|
121944
|
+
* @param {(String|Error)} err
|
|
121945
|
+
* @param {TemplateDescriptor} template
|
|
121946
|
+
*
|
|
121947
|
+
* @return {Error} logged validation errors
|
|
121933
121948
|
*/
|
|
121934
121949
|
_logError(err, template) {
|
|
121935
121950
|
if (isString(err)) {
|
|
@@ -121955,12 +121970,12 @@
|
|
|
121955
121970
|
|
|
121956
121971
|
// helpers //////////
|
|
121957
121972
|
|
|
121958
|
-
/**
|
|
121959
|
-
* Extract schema version from schema URI
|
|
121960
|
-
*
|
|
121961
|
-
* @param {String} schemaUri - for example https://unpkg.com/@camunda/element-templates-json-schema@99.99.99/resources/schema.json
|
|
121962
|
-
*
|
|
121963
|
-
* @return {String} for example '99.99.99'
|
|
121973
|
+
/**
|
|
121974
|
+
* Extract schema version from schema URI
|
|
121975
|
+
*
|
|
121976
|
+
* @param {String} schemaUri - for example https://unpkg.com/@camunda/element-templates-json-schema@99.99.99/resources/schema.json
|
|
121977
|
+
*
|
|
121978
|
+
* @return {String} for example '99.99.99'
|
|
121964
121979
|
*/
|
|
121965
121980
|
function getSchemaVersion(schemaUri) {
|
|
121966
121981
|
const re = /\d+\.\d+\.\d+/g;
|
|
@@ -121968,19 +121983,19 @@
|
|
|
121968
121983
|
return match === null ? undefined : match[0];
|
|
121969
121984
|
}
|
|
121970
121985
|
|
|
121971
|
-
/**
|
|
121972
|
-
* Extract only relevant errors of the validation result.
|
|
121973
|
-
*
|
|
121974
|
-
* The JSON Schema we use under the hood produces more errors than we need for a
|
|
121975
|
-
* detected schema violation (for example, unmatched sub-schemas, if-then-rules,
|
|
121976
|
-
* `oneOf`-definitions ...).
|
|
121977
|
-
*
|
|
121978
|
-
* We call these errors "relevant" that have a custom error message defined by us OR
|
|
121979
|
-
* are basic data type errors.
|
|
121980
|
-
*
|
|
121981
|
-
* @param {Array} schemaErrors
|
|
121982
|
-
*
|
|
121983
|
-
* @return {Array}
|
|
121986
|
+
/**
|
|
121987
|
+
* Extract only relevant errors of the validation result.
|
|
121988
|
+
*
|
|
121989
|
+
* The JSON Schema we use under the hood produces more errors than we need for a
|
|
121990
|
+
* detected schema violation (for example, unmatched sub-schemas, if-then-rules,
|
|
121991
|
+
* `oneOf`-definitions ...).
|
|
121992
|
+
*
|
|
121993
|
+
* We call these errors "relevant" that have a custom error message defined by us OR
|
|
121994
|
+
* are basic data type errors.
|
|
121995
|
+
*
|
|
121996
|
+
* @param {Array} schemaErrors
|
|
121997
|
+
*
|
|
121998
|
+
* @return {Array}
|
|
121984
121999
|
*/
|
|
121985
122000
|
function filteredSchemaErrors(schemaErrors) {
|
|
121986
122001
|
return filter(schemaErrors, err => {
|
|
@@ -122006,20 +122021,20 @@
|
|
|
122006
122021
|
const SUPPORTED_SCHEMA_VERSION = getZeebeSchemaVersion();
|
|
122007
122022
|
const SUPPORTED_SCHEMA_PACKAGE = getZeebeSchemaPackage();
|
|
122008
122023
|
|
|
122009
|
-
/**
|
|
122010
|
-
* A Camunda Cloud element template validator.
|
|
122024
|
+
/**
|
|
122025
|
+
* A Camunda Cloud element template validator.
|
|
122011
122026
|
*/
|
|
122012
122027
|
class Validator extends Validator$1 {
|
|
122013
122028
|
constructor(moddle) {
|
|
122014
122029
|
super(moddle);
|
|
122015
122030
|
}
|
|
122016
122031
|
|
|
122017
|
-
/**
|
|
122018
|
-
* Validate given template and return error (if any).
|
|
122019
|
-
*
|
|
122020
|
-
* @param {TemplateDescriptor} template
|
|
122021
|
-
*
|
|
122022
|
-
* @return {Error} validation error, if any
|
|
122032
|
+
/**
|
|
122033
|
+
* Validate given template and return error (if any).
|
|
122034
|
+
*
|
|
122035
|
+
* @param {TemplateDescriptor} template
|
|
122036
|
+
*
|
|
122037
|
+
* @return {Error} validation error, if any
|
|
122023
122038
|
*/
|
|
122024
122039
|
_validateTemplate(template) {
|
|
122025
122040
|
const id = template.id,
|
|
@@ -122089,19 +122104,19 @@
|
|
|
122089
122104
|
}
|
|
122090
122105
|
}
|
|
122091
122106
|
|
|
122092
|
-
/**
|
|
122093
|
-
* The guy responsible for template loading.
|
|
122094
|
-
*
|
|
122095
|
-
* Provide the actual templates via the `config.elementTemplates`.
|
|
122096
|
-
*
|
|
122097
|
-
* That configuration can either be an array of template
|
|
122098
|
-
* descriptors or a node style callback to retrieve
|
|
122099
|
-
* the templates asynchronously.
|
|
122100
|
-
*
|
|
122101
|
-
* @param {Array<TemplateDescriptor>|Function} config
|
|
122102
|
-
* @param {EventBus} eventBus
|
|
122103
|
-
* @param {ElementTemplates} elementTemplates
|
|
122104
|
-
* @param {Moddle} moddle
|
|
122107
|
+
/**
|
|
122108
|
+
* The guy responsible for template loading.
|
|
122109
|
+
*
|
|
122110
|
+
* Provide the actual templates via the `config.elementTemplates`.
|
|
122111
|
+
*
|
|
122112
|
+
* That configuration can either be an array of template
|
|
122113
|
+
* descriptors or a node style callback to retrieve
|
|
122114
|
+
* the templates asynchronously.
|
|
122115
|
+
*
|
|
122116
|
+
* @param {Array<TemplateDescriptor>|Function} config
|
|
122117
|
+
* @param {EventBus} eventBus
|
|
122118
|
+
* @param {ElementTemplates} elementTemplates
|
|
122119
|
+
* @param {Moddle} moddle
|
|
122105
122120
|
*/
|
|
122106
122121
|
let ElementTemplatesLoader$1 = class ElementTemplatesLoader {
|
|
122107
122122
|
constructor(config, eventBus, elementTemplates, moddle) {
|
|
@@ -122161,11 +122176,11 @@
|
|
|
122161
122176
|
};
|
|
122162
122177
|
ElementTemplatesLoader$1.$inject = ['config.elementTemplates', 'eventBus', 'elementTemplates', 'moddle'];
|
|
122163
122178
|
|
|
122164
|
-
/**
|
|
122165
|
-
* @param {Object|Array<TemplateDescriptor>|Function} config
|
|
122166
|
-
* @param {EventBus} eventBus
|
|
122167
|
-
* @param {ElementTemplates} elementTemplates
|
|
122168
|
-
* @param {Moddle} moddle
|
|
122179
|
+
/**
|
|
122180
|
+
* @param {Object|Array<TemplateDescriptor>|Function} config
|
|
122181
|
+
* @param {EventBus} eventBus
|
|
122182
|
+
* @param {ElementTemplates} elementTemplates
|
|
122183
|
+
* @param {Moddle} moddle
|
|
122169
122184
|
*/
|
|
122170
122185
|
class ElementTemplatesLoader extends ElementTemplatesLoader$1 {
|
|
122171
122186
|
constructor(config, eventBus, elementTemplates, moddle) {
|
|
@@ -122186,15 +122201,15 @@
|
|
|
122186
122201
|
}
|
|
122187
122202
|
ElementTemplatesLoader.$inject = ['config.elementTemplates', 'eventBus', 'elementTemplates', 'moddle'];
|
|
122188
122203
|
|
|
122189
|
-
/**
|
|
122190
|
-
* Create a new element and set its parent.
|
|
122191
|
-
*
|
|
122192
|
-
* @param {String} elementType of the new element
|
|
122193
|
-
* @param {Object} properties of the new element in key-value pairs
|
|
122194
|
-
* @param {moddle.object} parent of the new element
|
|
122195
|
-
* @param {BpmnFactory} factory which creates the new element
|
|
122196
|
-
*
|
|
122197
|
-
* @returns {djs.model.Base} element which is created
|
|
122204
|
+
/**
|
|
122205
|
+
* Create a new element and set its parent.
|
|
122206
|
+
*
|
|
122207
|
+
* @param {String} elementType of the new element
|
|
122208
|
+
* @param {Object} properties of the new element in key-value pairs
|
|
122209
|
+
* @param {moddle.object} parent of the new element
|
|
122210
|
+
* @param {BpmnFactory} factory which creates the new element
|
|
122211
|
+
*
|
|
122212
|
+
* @returns {djs.model.Base} element which is created
|
|
122198
122213
|
*/
|
|
122199
122214
|
function createElement(elementType, properties, parent, factory) {
|
|
122200
122215
|
const element = factory.create(elementType, properties);
|
|
@@ -122204,8 +122219,8 @@
|
|
|
122204
122219
|
return element;
|
|
122205
122220
|
}
|
|
122206
122221
|
|
|
122207
|
-
/**
|
|
122208
|
-
* generate a semantic id with given prefix
|
|
122222
|
+
/**
|
|
122223
|
+
* generate a semantic id with given prefix
|
|
122209
122224
|
*/
|
|
122210
122225
|
function nextId(prefix) {
|
|
122211
122226
|
const ids = new Ids$1([32, 32, 1]);
|
|
@@ -122219,15 +122234,15 @@
|
|
|
122219
122234
|
return parent;
|
|
122220
122235
|
}
|
|
122221
122236
|
|
|
122222
|
-
/**
|
|
122223
|
-
* Create an input parameter representing the given
|
|
122224
|
-
* binding and value.
|
|
122225
|
-
*
|
|
122226
|
-
* @param {PropertyBinding} binding
|
|
122227
|
-
* @param {String} value
|
|
122228
|
-
* @param {BpmnFactory} bpmnFactory
|
|
122229
|
-
*
|
|
122230
|
-
* @return {ModdleElement}
|
|
122237
|
+
/**
|
|
122238
|
+
* Create an input parameter representing the given
|
|
122239
|
+
* binding and value.
|
|
122240
|
+
*
|
|
122241
|
+
* @param {PropertyBinding} binding
|
|
122242
|
+
* @param {String} value
|
|
122243
|
+
* @param {BpmnFactory} bpmnFactory
|
|
122244
|
+
*
|
|
122245
|
+
* @return {ModdleElement}
|
|
122231
122246
|
*/
|
|
122232
122247
|
function createInputParameter$1(binding, value, bpmnFactory) {
|
|
122233
122248
|
const {
|
|
@@ -122239,15 +122254,15 @@
|
|
|
122239
122254
|
});
|
|
122240
122255
|
}
|
|
122241
122256
|
|
|
122242
|
-
/**
|
|
122243
|
-
* Create an output parameter representing the given
|
|
122244
|
-
* binding and value.
|
|
122245
|
-
*
|
|
122246
|
-
* @param {PropertyBinding} binding
|
|
122247
|
-
* @param {String} value
|
|
122248
|
-
* @param {BpmnFactory} bpmnFactory
|
|
122249
|
-
*
|
|
122250
|
-
* @return {ModdleElement}
|
|
122257
|
+
/**
|
|
122258
|
+
* Create an output parameter representing the given
|
|
122259
|
+
* binding and value.
|
|
122260
|
+
*
|
|
122261
|
+
* @param {PropertyBinding} binding
|
|
122262
|
+
* @param {String} value
|
|
122263
|
+
* @param {BpmnFactory} bpmnFactory
|
|
122264
|
+
*
|
|
122265
|
+
* @return {ModdleElement}
|
|
122251
122266
|
*/
|
|
122252
122267
|
function createOutputParameter$1(binding, value, bpmnFactory) {
|
|
122253
122268
|
const {
|
|
@@ -122259,15 +122274,15 @@
|
|
|
122259
122274
|
});
|
|
122260
122275
|
}
|
|
122261
122276
|
|
|
122262
|
-
/**
|
|
122263
|
-
* Create a task header representing the given
|
|
122264
|
-
* binding and value.
|
|
122265
|
-
*
|
|
122266
|
-
* @param {PropertyBinding} binding
|
|
122267
|
-
* @param {String} value
|
|
122268
|
-
* @param {BpmnFactory} bpmnFactory
|
|
122269
|
-
*
|
|
122270
|
-
* @return {ModdleElement}
|
|
122277
|
+
/**
|
|
122278
|
+
* Create a task header representing the given
|
|
122279
|
+
* binding and value.
|
|
122280
|
+
*
|
|
122281
|
+
* @param {PropertyBinding} binding
|
|
122282
|
+
* @param {String} value
|
|
122283
|
+
* @param {BpmnFactory} bpmnFactory
|
|
122284
|
+
*
|
|
122285
|
+
* @return {ModdleElement}
|
|
122271
122286
|
*/
|
|
122272
122287
|
function createTaskHeader(binding, value, bpmnFactory) {
|
|
122273
122288
|
const {
|
|
@@ -122279,26 +122294,26 @@
|
|
|
122279
122294
|
});
|
|
122280
122295
|
}
|
|
122281
122296
|
|
|
122282
|
-
/**
|
|
122283
|
-
* Create a task definition representing the given value.
|
|
122284
|
-
*
|
|
122285
|
-
* @param {object} attrs
|
|
122286
|
-
* @param {BpmnFactory} bpmnFactory
|
|
122287
|
-
*
|
|
122288
|
-
* @return {ModdleElement}
|
|
122297
|
+
/**
|
|
122298
|
+
* Create a task definition representing the given value.
|
|
122299
|
+
*
|
|
122300
|
+
* @param {object} attrs
|
|
122301
|
+
* @param {BpmnFactory} bpmnFactory
|
|
122302
|
+
*
|
|
122303
|
+
* @return {ModdleElement}
|
|
122289
122304
|
*/
|
|
122290
122305
|
function createTaskDefinition(attrs = {}, bpmnFactory) {
|
|
122291
122306
|
return bpmnFactory.create('zeebe:TaskDefinition', attrs);
|
|
122292
122307
|
}
|
|
122293
122308
|
|
|
122294
|
-
/**
|
|
122295
|
-
* Create zeebe:Property from the given binding.
|
|
122296
|
-
*
|
|
122297
|
-
* @param {PropertyBinding} binding
|
|
122298
|
-
* @param {String} value
|
|
122299
|
-
* @param {BpmnFactory} bpmnFactory
|
|
122300
|
-
*
|
|
122301
|
-
* @return {ModdleElement}
|
|
122309
|
+
/**
|
|
122310
|
+
* Create zeebe:Property from the given binding.
|
|
122311
|
+
*
|
|
122312
|
+
* @param {PropertyBinding} binding
|
|
122313
|
+
* @param {String} value
|
|
122314
|
+
* @param {BpmnFactory} bpmnFactory
|
|
122315
|
+
*
|
|
122316
|
+
* @return {ModdleElement}
|
|
122302
122317
|
*/
|
|
122303
122318
|
function createZeebeProperty(binding, value = '', bpmnFactory) {
|
|
122304
122319
|
const {
|
|
@@ -122310,16 +122325,16 @@
|
|
|
122310
122325
|
});
|
|
122311
122326
|
}
|
|
122312
122327
|
|
|
122313
|
-
/**
|
|
122314
|
-
* Retrieves whether an element should be updated for a given property.
|
|
122315
|
-
*
|
|
122316
|
-
* That matches once
|
|
122317
|
-
* a) the property value is not empty, or
|
|
122318
|
-
* b) the property is not optional
|
|
122319
|
-
*
|
|
122320
|
-
* @param {String} value
|
|
122321
|
-
* @param {Object} property
|
|
122322
|
-
* @returns {Boolean}
|
|
122328
|
+
/**
|
|
122329
|
+
* Retrieves whether an element should be updated for a given property.
|
|
122330
|
+
*
|
|
122331
|
+
* That matches once
|
|
122332
|
+
* a) the property value is not empty, or
|
|
122333
|
+
* b) the property is not optional
|
|
122334
|
+
*
|
|
122335
|
+
* @param {String} value
|
|
122336
|
+
* @param {Object} property
|
|
122337
|
+
* @returns {Boolean}
|
|
122323
122338
|
*/
|
|
122324
122339
|
function shouldUpdate(value, property) {
|
|
122325
122340
|
const {
|
|
@@ -122409,12 +122424,12 @@
|
|
|
122409
122424
|
});
|
|
122410
122425
|
}
|
|
122411
122426
|
|
|
122412
|
-
/**
|
|
122413
|
-
* Remove template from a given element.
|
|
122414
|
-
*
|
|
122415
|
-
* @param {djs.model.Base} element
|
|
122416
|
-
*
|
|
122417
|
-
* @return {djs.model.Base} the updated element
|
|
122427
|
+
/**
|
|
122428
|
+
* Remove template from a given element.
|
|
122429
|
+
*
|
|
122430
|
+
* @param {djs.model.Base} element
|
|
122431
|
+
*
|
|
122432
|
+
* @return {djs.model.Base} the updated element
|
|
122418
122433
|
*/
|
|
122419
122434
|
_removeRootTemplate(element) {
|
|
122420
122435
|
var modeling = this._modeling,
|
|
@@ -122477,14 +122492,14 @@
|
|
|
122477
122492
|
}
|
|
122478
122493
|
RemoveElementTemplateHandler.$inject = ['modeling', 'elementFactory', 'elementRegistry', 'canvas', 'bpmnFactory', 'replace', 'commandStack'];
|
|
122479
122494
|
|
|
122480
|
-
/**
|
|
122481
|
-
* A handler that combines and executes multiple commands.
|
|
122482
|
-
*
|
|
122483
|
-
* All updates are bundled on the command stack and executed in one step.
|
|
122484
|
-
* This also makes it possible to revert the changes in one step.
|
|
122485
|
-
*
|
|
122486
|
-
* Example use case: remove the camunda:formKey attribute and in addition
|
|
122487
|
-
* add all form fields needed for the camunda:formData property.
|
|
122495
|
+
/**
|
|
122496
|
+
* A handler that combines and executes multiple commands.
|
|
122497
|
+
*
|
|
122498
|
+
* All updates are bundled on the command stack and executed in one step.
|
|
122499
|
+
* This also makes it possible to revert the changes in one step.
|
|
122500
|
+
*
|
|
122501
|
+
* Example use case: remove the camunda:formKey attribute and in addition
|
|
122502
|
+
* add all form fields needed for the camunda:formData property.
|
|
122488
122503
|
*/
|
|
122489
122504
|
class MultiCommandHandler {
|
|
122490
122505
|
constructor(commandStack) {
|
|
@@ -122635,11 +122650,11 @@
|
|
|
122635
122650
|
throw unknownBindingError$1(element, property);
|
|
122636
122651
|
}
|
|
122637
122652
|
|
|
122638
|
-
/**
|
|
122639
|
-
* Cast a string value to a boolean if possible. Otherwise return the value.
|
|
122640
|
-
* Cannot always cast due to FEEL expressions.
|
|
122641
|
-
*
|
|
122642
|
-
* @param {string|boolean} value
|
|
122653
|
+
/**
|
|
122654
|
+
* Cast a string value to a boolean if possible. Otherwise return the value.
|
|
122655
|
+
* Cannot always cast due to FEEL expressions.
|
|
122656
|
+
*
|
|
122657
|
+
* @param {string|boolean} value
|
|
122643
122658
|
*/
|
|
122644
122659
|
function getBooleanPropertyValue(value) {
|
|
122645
122660
|
switch (value) {
|
|
@@ -123058,8 +123073,8 @@
|
|
|
123058
123073
|
return new Error(`unknown binding <${type}> for element <${id}>, this should never happen`);
|
|
123059
123074
|
}
|
|
123060
123075
|
|
|
123061
|
-
/**
|
|
123062
|
-
* Based on conditions, remove properties from the template.
|
|
123076
|
+
/**
|
|
123077
|
+
* Based on conditions, remove properties from the template.
|
|
123063
123078
|
*/
|
|
123064
123079
|
function applyConditions(element, elementTemplate) {
|
|
123065
123080
|
const {
|
|
@@ -123141,17 +123156,17 @@
|
|
|
123141
123156
|
return Object.prototype.hasOwnProperty.call(obj, key);
|
|
123142
123157
|
}
|
|
123143
123158
|
|
|
123144
|
-
/**
|
|
123145
|
-
* Checks the conditions of an element template and sets/resets the
|
|
123146
|
-
* corresponding properties on the element.
|
|
123159
|
+
/**
|
|
123160
|
+
* Checks the conditions of an element template and sets/resets the
|
|
123161
|
+
* corresponding properties on the element.
|
|
123147
123162
|
*/
|
|
123148
123163
|
class ConditionalBehavior extends CommandInterceptor$1 {
|
|
123149
|
-
/**
|
|
123150
|
-
* @param {import('diagram-js/lib/core/EventBus').default} eventBus
|
|
123151
|
-
* @param {import('../ElementTemplates').default} elementTemplates
|
|
123152
|
-
* @param {import('diagram-js/lib/command/CommandStack').default} commandStack
|
|
123153
|
-
* @param {import('bpmn-js/lib/features/modeling/BpmnFactory').default} bpmnFactory
|
|
123154
|
-
* @param {import('didi').Injector} injector
|
|
123164
|
+
/**
|
|
123165
|
+
* @param {import('diagram-js/lib/core/EventBus').default} eventBus
|
|
123166
|
+
* @param {import('../ElementTemplates').default} elementTemplates
|
|
123167
|
+
* @param {import('diagram-js/lib/command/CommandStack').default} commandStack
|
|
123168
|
+
* @param {import('bpmn-js/lib/features/modeling/BpmnFactory').default} bpmnFactory
|
|
123169
|
+
* @param {import('didi').Injector} injector
|
|
123155
123170
|
*/
|
|
123156
123171
|
constructor(eventBus, elementTemplates, commandStack, bpmnFactory, injector) {
|
|
123157
123172
|
super(eventBus);
|
|
@@ -123280,8 +123295,8 @@
|
|
|
123280
123295
|
return equals(binding1, binding2);
|
|
123281
123296
|
}
|
|
123282
123297
|
|
|
123283
|
-
/**
|
|
123284
|
-
* Convert deprecated binding type to new type.
|
|
123298
|
+
/**
|
|
123299
|
+
* Convert deprecated binding type to new type.
|
|
123285
123300
|
*/
|
|
123286
123301
|
function normalizeBinding(binding) {
|
|
123287
123302
|
if (binding.type === ZEEBE_TASK_DEFINITION_TYPE_TYPE) {
|
|
@@ -123297,25 +123312,25 @@
|
|
|
123297
123312
|
return JSON.stringify(a, normalizeReplacer$1) === JSON.stringify(b, normalizeReplacer$1);
|
|
123298
123313
|
}
|
|
123299
123314
|
|
|
123300
|
-
/**
|
|
123301
|
-
* Checks if the event only updates "meta" properties:
|
|
123302
|
-
*
|
|
123303
|
-
* * `zeebe:modelerTemplate`
|
|
123304
|
-
* * `zeebe:modelerTemplateVersion`
|
|
123305
|
-
*
|
|
123306
|
-
* @param {string} event
|
|
123307
|
-
* @param {any} context
|
|
123308
|
-
*
|
|
123309
|
-
* @return {boolean}
|
|
123315
|
+
/**
|
|
123316
|
+
* Checks if the event only updates "meta" properties:
|
|
123317
|
+
*
|
|
123318
|
+
* * `zeebe:modelerTemplate`
|
|
123319
|
+
* * `zeebe:modelerTemplateVersion`
|
|
123320
|
+
*
|
|
123321
|
+
* @param {string} event
|
|
123322
|
+
* @param {any} context
|
|
123323
|
+
*
|
|
123324
|
+
* @return {boolean}
|
|
123310
123325
|
*/
|
|
123311
123326
|
function isMetaUpdate(event, context) {
|
|
123312
123327
|
return event === 'element.updateProperties' && Object.keys(context.properties).every(key => ['zeebe:modelerTemplate', 'zeebe:modelerTemplateVersion'].includes(key));
|
|
123313
123328
|
}
|
|
123314
123329
|
|
|
123315
|
-
/**
|
|
123316
|
-
* This Behavior checks if the new element's type is in
|
|
123317
|
-
* the list of elements the template applies to and unlinks
|
|
123318
|
-
* it if not.
|
|
123330
|
+
/**
|
|
123331
|
+
* This Behavior checks if the new element's type is in
|
|
123332
|
+
* the list of elements the template applies to and unlinks
|
|
123333
|
+
* it if not.
|
|
123319
123334
|
*/
|
|
123320
123335
|
let ReplaceBehavior$1 = class ReplaceBehavior extends CommandInterceptor$1 {
|
|
123321
123336
|
constructor(elementTemplates, injector) {
|
|
@@ -123371,9 +123386,9 @@
|
|
|
123371
123386
|
return !is$5(eventDefinitions[0], eventDefinition);
|
|
123372
123387
|
}
|
|
123373
123388
|
|
|
123374
|
-
/**
|
|
123375
|
-
* Restores the original order of the template properties
|
|
123376
|
-
* on the moddle element.
|
|
123389
|
+
/**
|
|
123390
|
+
* Restores the original order of the template properties
|
|
123391
|
+
* on the moddle element.
|
|
123377
123392
|
*/
|
|
123378
123393
|
class UpdateTemplatePropertiesOrder extends CommandInterceptor$1 {
|
|
123379
123394
|
constructor(eventBus, elementTemplates, commandStack, bpmnFactory) {
|
|
@@ -123528,8 +123543,8 @@
|
|
|
123528
123543
|
});
|
|
123529
123544
|
}
|
|
123530
123545
|
|
|
123531
|
-
/**
|
|
123532
|
-
* Handles referenced elements.
|
|
123546
|
+
/**
|
|
123547
|
+
* Handles referenced elements.
|
|
123533
123548
|
*/
|
|
123534
123549
|
class ReferencedElementBehavior extends CommandInterceptor$1 {
|
|
123535
123550
|
constructor(eventBus, elementTemplates, modeling, injector, moddleCopy, bpmnFactory) {
|
|
@@ -123557,8 +123572,8 @@
|
|
|
123557
123572
|
});
|
|
123558
123573
|
}
|
|
123559
123574
|
|
|
123560
|
-
/**
|
|
123561
|
-
* Unlink referenced element when template is unlinked.
|
|
123575
|
+
/**
|
|
123576
|
+
* Unlink referenced element when template is unlinked.
|
|
123562
123577
|
*/
|
|
123563
123578
|
_handlePropertiesUpdate(context) {
|
|
123564
123579
|
const {
|
|
@@ -123580,9 +123595,9 @@
|
|
|
123580
123595
|
}
|
|
123581
123596
|
}
|
|
123582
123597
|
|
|
123583
|
-
/**
|
|
123584
|
-
* Remove referenced element when template is removed.
|
|
123585
|
-
* Keep referenced element when template is replaced.
|
|
123598
|
+
/**
|
|
123599
|
+
* Remove referenced element when template is removed.
|
|
123600
|
+
* Keep referenced element when template is replaced.
|
|
123586
123601
|
*/
|
|
123587
123602
|
_handleReplacement(context) {
|
|
123588
123603
|
const {
|
|
@@ -123644,8 +123659,8 @@
|
|
|
123644
123659
|
return element.type === 'label';
|
|
123645
123660
|
}
|
|
123646
123661
|
|
|
123647
|
-
/**
|
|
123648
|
-
* Handles generated value properties.
|
|
123662
|
+
/**
|
|
123663
|
+
* Handles generated value properties.
|
|
123649
123664
|
*/
|
|
123650
123665
|
class GeneratedValueBehavior extends CommandInterceptor$1 {
|
|
123651
123666
|
constructor(eventBus, elementTemplates, modeling, commandStack, bpmnFactory) {
|
|
@@ -123672,14 +123687,14 @@
|
|
|
123672
123687
|
}
|
|
123673
123688
|
GeneratedValueBehavior.$inject = ['eventBus', 'elementTemplates', 'modeling', 'commandStack', 'bpmnFactory'];
|
|
123674
123689
|
|
|
123675
|
-
/**
|
|
123676
|
-
* Enforces no variable propagation for templated call activities.
|
|
123690
|
+
/**
|
|
123691
|
+
* Enforces no variable propagation for templated call activities.
|
|
123677
123692
|
*/
|
|
123678
123693
|
class CalledElementBehavior extends CommandInterceptor$1 {
|
|
123679
|
-
/**
|
|
123680
|
-
* @param {*} eventBus
|
|
123681
|
-
* @param {*} modeling
|
|
123682
|
-
* @param {import('../ElementTemplates').default} elementTemplates
|
|
123694
|
+
/**
|
|
123695
|
+
* @param {*} eventBus
|
|
123696
|
+
* @param {*} modeling
|
|
123697
|
+
* @param {import('../ElementTemplates').default} elementTemplates
|
|
123683
123698
|
*/
|
|
123684
123699
|
constructor(eventBus, modeling, elementTemplates) {
|
|
123685
123700
|
super(eventBus);
|
|
@@ -123730,11 +123745,11 @@
|
|
|
123730
123745
|
|
|
123731
123746
|
// helper ///////////
|
|
123732
123747
|
|
|
123733
|
-
/**
|
|
123734
|
-
* Example: 01.01.1900 01:01
|
|
123735
|
-
*
|
|
123736
|
-
* @param {number} timestamp
|
|
123737
|
-
* @returns {string}
|
|
123748
|
+
/**
|
|
123749
|
+
* Example: 01.01.1900 01:01
|
|
123750
|
+
*
|
|
123751
|
+
* @param {number} timestamp
|
|
123752
|
+
* @returns {string}
|
|
123738
123753
|
*/
|
|
123739
123754
|
function toDateString(timestamp) {
|
|
123740
123755
|
const date = new Date(timestamp);
|
|
@@ -123822,13 +123837,13 @@
|
|
|
123822
123837
|
});
|
|
123823
123838
|
}
|
|
123824
123839
|
|
|
123825
|
-
/**
|
|
123826
|
-
*
|
|
123827
|
-
* @param {object} props
|
|
123828
|
-
* @param {object} props.element
|
|
123829
|
-
* @param {function} props.getTemplateId
|
|
123830
|
-
* @param {function} props.unlinkTemplate
|
|
123831
|
-
* @param {function} props.updateTemplate
|
|
123840
|
+
/**
|
|
123841
|
+
*
|
|
123842
|
+
* @param {object} props
|
|
123843
|
+
* @param {object} props.element
|
|
123844
|
+
* @param {function} props.getTemplateId
|
|
123845
|
+
* @param {function} props.unlinkTemplate
|
|
123846
|
+
* @param {function} props.updateTemplate
|
|
123832
123847
|
*/
|
|
123833
123848
|
function TemplateGroupButtons({
|
|
123834
123849
|
element,
|
|
@@ -123948,13 +123963,13 @@
|
|
|
123948
123963
|
});
|
|
123949
123964
|
}
|
|
123950
123965
|
|
|
123951
|
-
/**
|
|
123952
|
-
*
|
|
123953
|
-
* @param {object} props
|
|
123954
|
-
* @param {object} element
|
|
123955
|
-
* @param {UnknownTemplate} templateState
|
|
123956
|
-
* @param {function} unlinkTemplate
|
|
123957
|
-
* @param {function} updateTemplate
|
|
123966
|
+
/**
|
|
123967
|
+
*
|
|
123968
|
+
* @param {object} props
|
|
123969
|
+
* @param {object} element
|
|
123970
|
+
* @param {UnknownTemplate} templateState
|
|
123971
|
+
* @param {function} unlinkTemplate
|
|
123972
|
+
* @param {function} updateTemplate
|
|
123958
123973
|
*/
|
|
123959
123974
|
function OutdatedTemplate({
|
|
123960
123975
|
element,
|
|
@@ -124117,13 +124132,13 @@
|
|
|
124117
124132
|
|
|
124118
124133
|
// helper //////
|
|
124119
124134
|
|
|
124120
|
-
/**
|
|
124121
|
-
* Determine template state in the current element.
|
|
124122
|
-
*
|
|
124123
|
-
* @param {object} elementTemplates
|
|
124124
|
-
* @param {object} element
|
|
124125
|
-
* @param {function} getTemplateId
|
|
124126
|
-
* @returns {TemplateState}
|
|
124135
|
+
/**
|
|
124136
|
+
* Determine template state in the current element.
|
|
124137
|
+
*
|
|
124138
|
+
* @param {object} elementTemplates
|
|
124139
|
+
* @param {object} element
|
|
124140
|
+
* @param {function} getTemplateId
|
|
124141
|
+
* @returns {TemplateState}
|
|
124127
124142
|
*/
|
|
124128
124143
|
function getTemplateState(elementTemplates, element, getTemplateId) {
|
|
124129
124144
|
const templateId = getTemplateId(element),
|
|
@@ -124372,9 +124387,9 @@
|
|
|
124372
124387
|
}, i;
|
|
124373
124388
|
})(b$1);
|
|
124374
124389
|
|
|
124375
|
-
/**
|
|
124376
|
-
* Copied from existing form-js#Sanitizer
|
|
124377
|
-
* cf. https://github.com/bpmn-io/form-js/blob/master/packages/form-js-viewer/src/render/components/Sanitizer.js
|
|
124390
|
+
/**
|
|
124391
|
+
* Copied from existing form-js#Sanitizer
|
|
124392
|
+
* cf. https://github.com/bpmn-io/form-js/blob/master/packages/form-js-viewer/src/render/components/Sanitizer.js
|
|
124378
124393
|
*/
|
|
124379
124394
|
|
|
124380
124395
|
const NODE_TYPE_TEXT = 3,
|
|
@@ -124386,11 +124401,11 @@
|
|
|
124386
124401
|
|
|
124387
124402
|
const FORM_ELEMENT = document.createElement('form');
|
|
124388
124403
|
|
|
124389
|
-
/**
|
|
124390
|
-
* Sanitize a HTML string and return the cleaned, safe version.
|
|
124391
|
-
*
|
|
124392
|
-
* @param {string} html
|
|
124393
|
-
* @return {string}
|
|
124404
|
+
/**
|
|
124405
|
+
* Sanitize a HTML string and return the cleaned, safe version.
|
|
124406
|
+
*
|
|
124407
|
+
* @param {string} html
|
|
124408
|
+
* @return {string}
|
|
124394
124409
|
*/
|
|
124395
124410
|
function sanitizeHTML(html) {
|
|
124396
124411
|
const doc = new DOMParser().parseFromString(`<!DOCTYPE html>\n<html><body><div>${html}`, 'text/html');
|
|
@@ -124406,15 +124421,15 @@
|
|
|
124406
124421
|
}
|
|
124407
124422
|
}
|
|
124408
124423
|
|
|
124409
|
-
/**
|
|
124410
|
-
* Recursively sanitize a HTML node, potentially
|
|
124411
|
-
* removing it, its children or attributes.
|
|
124412
|
-
*
|
|
124413
|
-
* Inspired by https://github.com/developit/snarkdown/issues/70
|
|
124414
|
-
* and https://github.com/cure53/DOMPurify. Simplified
|
|
124415
|
-
* for our use-case.
|
|
124416
|
-
*
|
|
124417
|
-
* @param {Element} node
|
|
124424
|
+
/**
|
|
124425
|
+
* Recursively sanitize a HTML node, potentially
|
|
124426
|
+
* removing it, its children or attributes.
|
|
124427
|
+
*
|
|
124428
|
+
* Inspired by https://github.com/developit/snarkdown/issues/70
|
|
124429
|
+
* and https://github.com/cure53/DOMPurify. Simplified
|
|
124430
|
+
* for our use-case.
|
|
124431
|
+
*
|
|
124432
|
+
* @param {Element} node
|
|
124418
124433
|
*/
|
|
124419
124434
|
function sanitizeNode(node) {
|
|
124420
124435
|
// allow text nodes
|
|
@@ -124458,13 +124473,13 @@
|
|
|
124458
124473
|
}
|
|
124459
124474
|
}
|
|
124460
124475
|
|
|
124461
|
-
/**
|
|
124462
|
-
* Validates attributes for validity.
|
|
124463
|
-
*
|
|
124464
|
-
* @param {string} lcTag
|
|
124465
|
-
* @param {string} lcName
|
|
124466
|
-
* @param {string} value
|
|
124467
|
-
* @return {boolean}
|
|
124476
|
+
/**
|
|
124477
|
+
* Validates attributes for validity.
|
|
124478
|
+
*
|
|
124479
|
+
* @param {string} lcTag
|
|
124480
|
+
* @param {string} lcName
|
|
124481
|
+
* @param {string} value
|
|
124482
|
+
* @return {boolean}
|
|
124468
124483
|
*/
|
|
124469
124484
|
function isValidAttribute(lcTag, lcName, value) {
|
|
124470
124485
|
// disallow most attributes based on whitelist
|
|
@@ -124509,29 +124524,29 @@
|
|
|
124509
124524
|
return getEventDefinition(element, 'bpmn:SignalEventDefinition');
|
|
124510
124525
|
}
|
|
124511
124526
|
|
|
124512
|
-
/**
|
|
124513
|
-
* Converts legacy scopes descriptor to newer supported array structure.
|
|
124514
|
-
*
|
|
124515
|
-
* For example, it transforms
|
|
124516
|
-
*
|
|
124517
|
-
* scopes: {
|
|
124518
|
-
* 'camunda:Connector':
|
|
124519
|
-
* { properties: []
|
|
124520
|
-
* }
|
|
124521
|
-
* }
|
|
124522
|
-
*
|
|
124523
|
-
* to
|
|
124524
|
-
*
|
|
124525
|
-
* scopes: [
|
|
124526
|
-
* {
|
|
124527
|
-
* type: 'camunda:Connector',
|
|
124528
|
-
* properties: []
|
|
124529
|
-
* }
|
|
124530
|
-
* ]
|
|
124531
|
-
*
|
|
124532
|
-
* @param {ScopesDescriptor} scopes
|
|
124533
|
-
*
|
|
124534
|
-
* @returns {Array}
|
|
124527
|
+
/**
|
|
124528
|
+
* Converts legacy scopes descriptor to newer supported array structure.
|
|
124529
|
+
*
|
|
124530
|
+
* For example, it transforms
|
|
124531
|
+
*
|
|
124532
|
+
* scopes: {
|
|
124533
|
+
* 'camunda:Connector':
|
|
124534
|
+
* { properties: []
|
|
124535
|
+
* }
|
|
124536
|
+
* }
|
|
124537
|
+
*
|
|
124538
|
+
* to
|
|
124539
|
+
*
|
|
124540
|
+
* scopes: [
|
|
124541
|
+
* {
|
|
124542
|
+
* type: 'camunda:Connector',
|
|
124543
|
+
* properties: []
|
|
124544
|
+
* }
|
|
124545
|
+
* ]
|
|
124546
|
+
*
|
|
124547
|
+
* @param {ScopesDescriptor} scopes
|
|
124548
|
+
*
|
|
124549
|
+
* @returns {Array}
|
|
124535
124550
|
*/
|
|
124536
124551
|
function handleLegacyScopes(scopes = []) {
|
|
124537
124552
|
const scopesAsArray = [];
|
|
@@ -124546,15 +124561,15 @@
|
|
|
124546
124561
|
return scopesAsArray;
|
|
124547
124562
|
}
|
|
124548
124563
|
|
|
124549
|
-
/**
|
|
124550
|
-
* Create an input parameter representing the given
|
|
124551
|
-
* binding and value.
|
|
124552
|
-
*
|
|
124553
|
-
* @param {PropertyBinding} binding
|
|
124554
|
-
* @param {String} value
|
|
124555
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124556
|
-
*
|
|
124557
|
-
* @return {ModdleElement}
|
|
124564
|
+
/**
|
|
124565
|
+
* Create an input parameter representing the given
|
|
124566
|
+
* binding and value.
|
|
124567
|
+
*
|
|
124568
|
+
* @param {PropertyBinding} binding
|
|
124569
|
+
* @param {String} value
|
|
124570
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124571
|
+
*
|
|
124572
|
+
* @return {ModdleElement}
|
|
124558
124573
|
*/
|
|
124559
124574
|
function createInputParameter(binding, value, bpmnFactory) {
|
|
124560
124575
|
const {
|
|
@@ -124577,15 +124592,15 @@
|
|
|
124577
124592
|
});
|
|
124578
124593
|
}
|
|
124579
124594
|
|
|
124580
|
-
/**
|
|
124581
|
-
* Create an output parameter representing the given
|
|
124582
|
-
* binding and value.
|
|
124583
|
-
*
|
|
124584
|
-
* @param {PropertyBinding} binding
|
|
124585
|
-
* @param {String} value
|
|
124586
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124587
|
-
*
|
|
124588
|
-
* @return {ModdleElement}
|
|
124595
|
+
/**
|
|
124596
|
+
* Create an output parameter representing the given
|
|
124597
|
+
* binding and value.
|
|
124598
|
+
*
|
|
124599
|
+
* @param {PropertyBinding} binding
|
|
124600
|
+
* @param {String} value
|
|
124601
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124602
|
+
*
|
|
124603
|
+
* @return {ModdleElement}
|
|
124589
124604
|
*/
|
|
124590
124605
|
function createOutputParameter(binding, value, bpmnFactory) {
|
|
124591
124606
|
const {
|
|
@@ -124608,14 +124623,14 @@
|
|
|
124608
124623
|
});
|
|
124609
124624
|
}
|
|
124610
124625
|
|
|
124611
|
-
/**
|
|
124612
|
-
* Create camunda property from the given binding.
|
|
124613
|
-
*
|
|
124614
|
-
* @param {PropertyBinding} binding
|
|
124615
|
-
* @param {String} value
|
|
124616
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124617
|
-
*
|
|
124618
|
-
* @return {ModdleElement}
|
|
124626
|
+
/**
|
|
124627
|
+
* Create camunda property from the given binding.
|
|
124628
|
+
*
|
|
124629
|
+
* @param {PropertyBinding} binding
|
|
124630
|
+
* @param {String} value
|
|
124631
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124632
|
+
*
|
|
124633
|
+
* @return {ModdleElement}
|
|
124619
124634
|
*/
|
|
124620
124635
|
function createCamundaProperty(binding, value = '', bpmnFactory) {
|
|
124621
124636
|
const {
|
|
@@ -124627,27 +124642,27 @@
|
|
|
124627
124642
|
});
|
|
124628
124643
|
}
|
|
124629
124644
|
|
|
124630
|
-
/**
|
|
124631
|
-
* Create camunda:in element from given binding.
|
|
124632
|
-
*
|
|
124633
|
-
* @param {PropertyBinding} binding
|
|
124634
|
-
* @param {String} value
|
|
124635
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124636
|
-
*
|
|
124637
|
-
* @return {ModdleElement}
|
|
124645
|
+
/**
|
|
124646
|
+
* Create camunda:in element from given binding.
|
|
124647
|
+
*
|
|
124648
|
+
* @param {PropertyBinding} binding
|
|
124649
|
+
* @param {String} value
|
|
124650
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124651
|
+
*
|
|
124652
|
+
* @return {ModdleElement}
|
|
124638
124653
|
*/
|
|
124639
124654
|
function createCamundaIn(binding, value, bpmnFactory) {
|
|
124640
124655
|
const attrs = createCamundaInOutAttrs(binding, value);
|
|
124641
124656
|
return bpmnFactory.create('camunda:In', attrs);
|
|
124642
124657
|
}
|
|
124643
124658
|
|
|
124644
|
-
/**
|
|
124645
|
-
* Create camunda:in with businessKey element from given binding.
|
|
124646
|
-
*
|
|
124647
|
-
* @param {String} value
|
|
124648
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124649
|
-
*
|
|
124650
|
-
* @return {ModdleElement}
|
|
124659
|
+
/**
|
|
124660
|
+
* Create camunda:in with businessKey element from given binding.
|
|
124661
|
+
*
|
|
124662
|
+
* @param {String} value
|
|
124663
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124664
|
+
*
|
|
124665
|
+
* @return {ModdleElement}
|
|
124651
124666
|
*/
|
|
124652
124667
|
function createCamundaInWithBusinessKey(value, bpmnFactory) {
|
|
124653
124668
|
return bpmnFactory.create('camunda:In', {
|
|
@@ -124655,28 +124670,28 @@
|
|
|
124655
124670
|
});
|
|
124656
124671
|
}
|
|
124657
124672
|
|
|
124658
|
-
/**
|
|
124659
|
-
* Create camunda:out element from given binding.
|
|
124660
|
-
*
|
|
124661
|
-
* @param {PropertyBinding} binding
|
|
124662
|
-
* @param {String} value
|
|
124663
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124664
|
-
*
|
|
124665
|
-
* @return {ModdleElement}
|
|
124673
|
+
/**
|
|
124674
|
+
* Create camunda:out element from given binding.
|
|
124675
|
+
*
|
|
124676
|
+
* @param {PropertyBinding} binding
|
|
124677
|
+
* @param {String} value
|
|
124678
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124679
|
+
*
|
|
124680
|
+
* @return {ModdleElement}
|
|
124666
124681
|
*/
|
|
124667
124682
|
function createCamundaOut(binding, value, bpmnFactory) {
|
|
124668
124683
|
const attrs = createCamundaInOutAttrs(binding, value);
|
|
124669
124684
|
return bpmnFactory.create('camunda:Out', attrs);
|
|
124670
124685
|
}
|
|
124671
124686
|
|
|
124672
|
-
/**
|
|
124673
|
-
* Create camunda:executionListener element containing an inline script from given binding.
|
|
124674
|
-
*
|
|
124675
|
-
* @param {PropertyBinding} binding
|
|
124676
|
-
* @param {String} value
|
|
124677
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124678
|
-
*
|
|
124679
|
-
* @return {ModdleElement}
|
|
124687
|
+
/**
|
|
124688
|
+
* Create camunda:executionListener element containing an inline script from given binding.
|
|
124689
|
+
*
|
|
124690
|
+
* @param {PropertyBinding} binding
|
|
124691
|
+
* @param {String} value
|
|
124692
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124693
|
+
*
|
|
124694
|
+
* @return {ModdleElement}
|
|
124680
124695
|
*/
|
|
124681
124696
|
function createCamundaExecutionListener(binding, value, bpmnFactory) {
|
|
124682
124697
|
const {
|
|
@@ -124701,14 +124716,14 @@
|
|
|
124701
124716
|
});
|
|
124702
124717
|
}
|
|
124703
124718
|
|
|
124704
|
-
/**
|
|
124705
|
-
* Create camunda:field element containing string or expression from given binding.
|
|
124706
|
-
*
|
|
124707
|
-
* @param {PropertyBinding} binding
|
|
124708
|
-
* @param {String} value
|
|
124709
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124710
|
-
*
|
|
124711
|
-
* @return {ModdleElement}
|
|
124719
|
+
/**
|
|
124720
|
+
* Create camunda:field element containing string or expression from given binding.
|
|
124721
|
+
*
|
|
124722
|
+
* @param {PropertyBinding} binding
|
|
124723
|
+
* @param {String} value
|
|
124724
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124725
|
+
*
|
|
124726
|
+
* @return {ModdleElement}
|
|
124712
124727
|
*/
|
|
124713
124728
|
function createCamundaFieldInjection(binding, value, bpmnFactory) {
|
|
124714
124729
|
const DEFAULT_PROPS = {
|
|
@@ -124730,16 +124745,16 @@
|
|
|
124730
124745
|
return bpmnFactory.create('camunda:Field', props);
|
|
124731
124746
|
}
|
|
124732
124747
|
|
|
124733
|
-
/**
|
|
124734
|
-
* Create camunda:errorEventDefinition element containing expression and errorRef
|
|
124735
|
-
* from given binding.
|
|
124736
|
-
*
|
|
124737
|
-
* @param {String} expression
|
|
124738
|
-
* @param {ModdleElement} errorRef
|
|
124739
|
-
* @param {ModdleElement} parent
|
|
124740
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124741
|
-
*
|
|
124742
|
-
* @return {ModdleElement}
|
|
124748
|
+
/**
|
|
124749
|
+
* Create camunda:errorEventDefinition element containing expression and errorRef
|
|
124750
|
+
* from given binding.
|
|
124751
|
+
*
|
|
124752
|
+
* @param {String} expression
|
|
124753
|
+
* @param {ModdleElement} errorRef
|
|
124754
|
+
* @param {ModdleElement} parent
|
|
124755
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124756
|
+
*
|
|
124757
|
+
* @return {ModdleElement}
|
|
124743
124758
|
*/
|
|
124744
124759
|
function createCamundaErrorEventDefinition(expression, errorRef, parent, bpmnFactory) {
|
|
124745
124760
|
const errorEventDefinition = bpmnFactory.create('camunda:ErrorEventDefinition', {
|
|
@@ -124750,14 +124765,14 @@
|
|
|
124750
124765
|
return errorEventDefinition;
|
|
124751
124766
|
}
|
|
124752
124767
|
|
|
124753
|
-
/**
|
|
124754
|
-
* Create bpmn:error element containing a specific error id given by a binding.
|
|
124755
|
-
*
|
|
124756
|
-
* @param {String} bindingErrorRef
|
|
124757
|
-
* @param {ModdleElement} parent
|
|
124758
|
-
* @param {BpmnFactory} bpmnFactory
|
|
124759
|
-
*
|
|
124760
|
-
* @return { ModdleElement }
|
|
124768
|
+
/**
|
|
124769
|
+
* Create bpmn:error element containing a specific error id given by a binding.
|
|
124770
|
+
*
|
|
124771
|
+
* @param {String} bindingErrorRef
|
|
124772
|
+
* @param {ModdleElement} parent
|
|
124773
|
+
* @param {BpmnFactory} bpmnFactory
|
|
124774
|
+
*
|
|
124775
|
+
* @return { ModdleElement }
|
|
124761
124776
|
*/
|
|
124762
124777
|
function createError(bindingErrorRef, parent, bpmnFactory) {
|
|
124763
124778
|
const error = bpmnFactory.create('bpmn:Error', {
|
|
@@ -124770,8 +124785,8 @@
|
|
|
124770
124785
|
|
|
124771
124786
|
// helpers //////////
|
|
124772
124787
|
|
|
124773
|
-
/**
|
|
124774
|
-
* Create properties for camunda:in and camunda:out types.
|
|
124788
|
+
/**
|
|
124789
|
+
* Create properties for camunda:in and camunda:out types.
|
|
124775
124790
|
*/
|
|
124776
124791
|
function createCamundaInOutAttrs(binding, value) {
|
|
124777
124792
|
const properties = {};
|
|
@@ -124842,9 +124857,9 @@
|
|
|
124842
124857
|
|
|
124843
124858
|
const CAMUNDA_SERVICE_TASK_LIKE = ['camunda:class', 'camunda:delegateExpression', 'camunda:expression'];
|
|
124844
124859
|
|
|
124845
|
-
/**
|
|
124846
|
-
* Applies an element template to an element. Sets `camunda:modelerTemplate` and
|
|
124847
|
-
* `camunda:modelerTemplateVersion`.
|
|
124860
|
+
/**
|
|
124861
|
+
* Applies an element template to an element. Sets `camunda:modelerTemplate` and
|
|
124862
|
+
* `camunda:modelerTemplateVersion`.
|
|
124848
124863
|
*/
|
|
124849
124864
|
class ChangeElementTemplateHandler {
|
|
124850
124865
|
constructor(bpmnFactory, bpmnReplace, commandStack, modeling) {
|
|
@@ -124854,16 +124869,16 @@
|
|
|
124854
124869
|
this._modeling = modeling;
|
|
124855
124870
|
}
|
|
124856
124871
|
|
|
124857
|
-
/**
|
|
124858
|
-
* Change an element's template and update its properties as specified in `newTemplate`. Specify
|
|
124859
|
-
* `oldTemplate` to update from one template to another. If `newTemplate` isn't specified the
|
|
124860
|
-
* `camunda:modelerTemplate` and `camunda:modelerTemplateVersion` properties will be removed from
|
|
124861
|
-
* the element.
|
|
124862
|
-
*
|
|
124863
|
-
* @param {Object} context
|
|
124864
|
-
* @param {Object} context.element
|
|
124865
|
-
* @param {Object} [context.oldTemplate]
|
|
124866
|
-
* @param {Object} [context.newTemplate]
|
|
124872
|
+
/**
|
|
124873
|
+
* Change an element's template and update its properties as specified in `newTemplate`. Specify
|
|
124874
|
+
* `oldTemplate` to update from one template to another. If `newTemplate` isn't specified the
|
|
124875
|
+
* `camunda:modelerTemplate` and `camunda:modelerTemplateVersion` properties will be removed from
|
|
124876
|
+
* the element.
|
|
124877
|
+
*
|
|
124878
|
+
* @param {Object} context
|
|
124879
|
+
* @param {Object} context.element
|
|
124880
|
+
* @param {Object} [context.oldTemplate]
|
|
124881
|
+
* @param {Object} [context.newTemplate]
|
|
124867
124882
|
*/
|
|
124868
124883
|
preExecute(context) {
|
|
124869
124884
|
const newTemplate = context.newTemplate,
|
|
@@ -124919,15 +124934,15 @@
|
|
|
124919
124934
|
return extensionElements;
|
|
124920
124935
|
}
|
|
124921
124936
|
|
|
124922
|
-
/**
|
|
124923
|
-
* Update `camunda:ErrorEventDefinition` properties of specified business object. Event
|
|
124924
|
-
* definitions can only exist in `bpmn:ExtensionElements`.
|
|
124925
|
-
*
|
|
124926
|
-
* Ensures an bpmn:Error exists for the event definition.
|
|
124927
|
-
*
|
|
124928
|
-
* @param {djs.model.Base} element
|
|
124929
|
-
* @param {Object} oldTemplate
|
|
124930
|
-
* @param {Object} newTemplate
|
|
124937
|
+
/**
|
|
124938
|
+
* Update `camunda:ErrorEventDefinition` properties of specified business object. Event
|
|
124939
|
+
* definitions can only exist in `bpmn:ExtensionElements`.
|
|
124940
|
+
*
|
|
124941
|
+
* Ensures an bpmn:Error exists for the event definition.
|
|
124942
|
+
*
|
|
124943
|
+
* @param {djs.model.Base} element
|
|
124944
|
+
* @param {Object} oldTemplate
|
|
124945
|
+
* @param {Object} newTemplate
|
|
124931
124946
|
*/
|
|
124932
124947
|
_updateCamundaErrorEventDefinitionProperties(element, oldTemplate, newTemplate) {
|
|
124933
124948
|
const bpmnFactory = this._bpmnFactory,
|
|
@@ -124997,12 +125012,12 @@
|
|
|
124997
125012
|
}
|
|
124998
125013
|
}
|
|
124999
125014
|
|
|
125000
|
-
/**
|
|
125001
|
-
* Update `camunda:ExecutionListener` properties of specified business object. Execution listeners
|
|
125002
|
-
* will always be overridden. Execution listeners can only exist in `bpmn:ExtensionElements`.
|
|
125003
|
-
*
|
|
125004
|
-
* @param {djs.model.Base} element
|
|
125005
|
-
* @param {Object} newTemplate
|
|
125015
|
+
/**
|
|
125016
|
+
* Update `camunda:ExecutionListener` properties of specified business object. Execution listeners
|
|
125017
|
+
* will always be overridden. Execution listeners can only exist in `bpmn:ExtensionElements`.
|
|
125018
|
+
*
|
|
125019
|
+
* @param {djs.model.Base} element
|
|
125020
|
+
* @param {Object} newTemplate
|
|
125006
125021
|
*/
|
|
125007
125022
|
_updateCamundaExecutionListenerProperties(element, newTemplate) {
|
|
125008
125023
|
const bpmnFactory = this._bpmnFactory,
|
|
@@ -125037,15 +125052,15 @@
|
|
|
125037
125052
|
});
|
|
125038
125053
|
}
|
|
125039
125054
|
|
|
125040
|
-
/**
|
|
125041
|
-
* Update `camunda:Field` properties of specified business object.
|
|
125042
|
-
* If business object is `camunda:ExecutionListener` or `camunda:TaskListener` `fields` property
|
|
125043
|
-
* will be updated. Otherwise `extensionElements.values` property will be updated.
|
|
125044
|
-
*
|
|
125045
|
-
* @param {djs.model.Base} element
|
|
125046
|
-
* @param {Object} oldTemplate
|
|
125047
|
-
* @param {Object} newTemplate
|
|
125048
|
-
* @param {ModdleElement} businessObject
|
|
125055
|
+
/**
|
|
125056
|
+
* Update `camunda:Field` properties of specified business object.
|
|
125057
|
+
* If business object is `camunda:ExecutionListener` or `camunda:TaskListener` `fields` property
|
|
125058
|
+
* will be updated. Otherwise `extensionElements.values` property will be updated.
|
|
125059
|
+
*
|
|
125060
|
+
* @param {djs.model.Base} element
|
|
125061
|
+
* @param {Object} oldTemplate
|
|
125062
|
+
* @param {Object} newTemplate
|
|
125063
|
+
* @param {ModdleElement} businessObject
|
|
125049
125064
|
*/
|
|
125050
125065
|
_updateCamundaFieldProperties(element, oldTemplate, newTemplate, businessObject) {
|
|
125051
125066
|
const bpmnFactory = this._bpmnFactory,
|
|
@@ -125109,14 +125124,14 @@
|
|
|
125109
125124
|
}
|
|
125110
125125
|
}
|
|
125111
125126
|
|
|
125112
|
-
/**
|
|
125113
|
-
* Update `camunda:In` and `camunda:Out` properties of specified business object. Only
|
|
125114
|
-
* `bpmn:CallActivity` and events with `bpmn:SignalEventDefinition` can have ins. Only
|
|
125115
|
-
* `camunda:CallActivity` can have outs.
|
|
125116
|
-
*
|
|
125117
|
-
* @param {djs.model.Base} element
|
|
125118
|
-
* @param {Object} oldTemplate
|
|
125119
|
-
* @param {Object} newTemplate
|
|
125127
|
+
/**
|
|
125128
|
+
* Update `camunda:In` and `camunda:Out` properties of specified business object. Only
|
|
125129
|
+
* `bpmn:CallActivity` and events with `bpmn:SignalEventDefinition` can have ins. Only
|
|
125130
|
+
* `camunda:CallActivity` can have outs.
|
|
125131
|
+
*
|
|
125132
|
+
* @param {djs.model.Base} element
|
|
125133
|
+
* @param {Object} oldTemplate
|
|
125134
|
+
* @param {Object} newTemplate
|
|
125120
125135
|
*/
|
|
125121
125136
|
_updateCamundaInOutProperties(element, oldTemplate, newTemplate) {
|
|
125122
125137
|
const bpmnFactory = this._bpmnFactory,
|
|
@@ -125206,14 +125221,14 @@
|
|
|
125206
125221
|
}
|
|
125207
125222
|
}
|
|
125208
125223
|
|
|
125209
|
-
/**
|
|
125210
|
-
* Update `camunda:InputParameter` and `camunda:OutputParameter` properties of specified business
|
|
125211
|
-
* object. Both can only exist in `camunda:InputOutput` which can exist in `bpmn:ExtensionElements`
|
|
125212
|
-
* or `camunda:Connector`.
|
|
125213
|
-
*
|
|
125214
|
-
* @param {djs.model.Base} element
|
|
125215
|
-
* @param {Object} oldTemplate
|
|
125216
|
-
* @param {Object} newTemplate
|
|
125224
|
+
/**
|
|
125225
|
+
* Update `camunda:InputParameter` and `camunda:OutputParameter` properties of specified business
|
|
125226
|
+
* object. Both can only exist in `camunda:InputOutput` which can exist in `bpmn:ExtensionElements`
|
|
125227
|
+
* or `camunda:Connector`.
|
|
125228
|
+
*
|
|
125229
|
+
* @param {djs.model.Base} element
|
|
125230
|
+
* @param {Object} oldTemplate
|
|
125231
|
+
* @param {Object} newTemplate
|
|
125217
125232
|
*/
|
|
125218
125233
|
_updateCamundaInputOutputParameterProperties(element, oldTemplate, newTemplate, businessObject) {
|
|
125219
125234
|
const bpmnFactory = this._bpmnFactory,
|
|
@@ -125344,14 +125359,14 @@
|
|
|
125344
125359
|
}
|
|
125345
125360
|
}
|
|
125346
125361
|
|
|
125347
|
-
/**
|
|
125348
|
-
* Update `camunda:Property` properties of specified business object. `camunda:Property` can only
|
|
125349
|
-
* exist in `camunda:Properties`.
|
|
125350
|
-
*
|
|
125351
|
-
* @param {djs.model.Base} element
|
|
125352
|
-
* @param {Object} oldTemplate
|
|
125353
|
-
* @param {Object} newTemplate
|
|
125354
|
-
* @param {ModdleElement} businessObject
|
|
125362
|
+
/**
|
|
125363
|
+
* Update `camunda:Property` properties of specified business object. `camunda:Property` can only
|
|
125364
|
+
* exist in `camunda:Properties`.
|
|
125365
|
+
*
|
|
125366
|
+
* @param {djs.model.Base} element
|
|
125367
|
+
* @param {Object} oldTemplate
|
|
125368
|
+
* @param {Object} newTemplate
|
|
125369
|
+
* @param {ModdleElement} businessObject
|
|
125355
125370
|
*/
|
|
125356
125371
|
_updateCamundaPropertyProperties(element, oldTemplate, newTemplate, businessObject) {
|
|
125357
125372
|
const bpmnFactory = this._bpmnFactory,
|
|
@@ -125428,13 +125443,13 @@
|
|
|
125428
125443
|
}
|
|
125429
125444
|
}
|
|
125430
125445
|
|
|
125431
|
-
/**
|
|
125432
|
-
* Update `bpmn:conditionExpression` property of specified element. Since condition expression is
|
|
125433
|
-
* is not primitive it needs special handling.
|
|
125434
|
-
*
|
|
125435
|
-
* @param {djs.model.Base} element
|
|
125436
|
-
* @param {Object} oldProperty
|
|
125437
|
-
* @param {Object} newProperty
|
|
125446
|
+
/**
|
|
125447
|
+
* Update `bpmn:conditionExpression` property of specified element. Since condition expression is
|
|
125448
|
+
* is not primitive it needs special handling.
|
|
125449
|
+
*
|
|
125450
|
+
* @param {djs.model.Base} element
|
|
125451
|
+
* @param {Object} oldProperty
|
|
125452
|
+
* @param {Object} newProperty
|
|
125438
125453
|
*/
|
|
125439
125454
|
_updateConditionExpression(element, oldProperty, newProperty) {
|
|
125440
125455
|
const bpmnFactory = this._bpmnFactory,
|
|
@@ -125542,13 +125557,13 @@
|
|
|
125542
125557
|
});
|
|
125543
125558
|
}
|
|
125544
125559
|
|
|
125545
|
-
/**
|
|
125546
|
-
* Update properties for a specified scope.
|
|
125547
|
-
*
|
|
125548
|
-
* @param {djs.model.Base} element
|
|
125549
|
-
* @param {Object} oldTemplate
|
|
125550
|
-
* @param {Object} newScopeTemplate
|
|
125551
|
-
* @param {Object} newTemplate
|
|
125560
|
+
/**
|
|
125561
|
+
* Update properties for a specified scope.
|
|
125562
|
+
*
|
|
125563
|
+
* @param {djs.model.Base} element
|
|
125564
|
+
* @param {Object} oldTemplate
|
|
125565
|
+
* @param {Object} newScopeTemplate
|
|
125566
|
+
* @param {Object} newTemplate
|
|
125552
125567
|
*/
|
|
125553
125568
|
_updateScopeProperties(element, oldTemplate, newScopeTemplate, newTemplate) {
|
|
125554
125569
|
const bpmnFactory = this._bpmnFactory,
|
|
@@ -125593,11 +125608,11 @@
|
|
|
125593
125608
|
});
|
|
125594
125609
|
}
|
|
125595
125610
|
|
|
125596
|
-
/**
|
|
125597
|
-
* Replaces the element with the specified elementType
|
|
125598
|
-
*
|
|
125599
|
-
* @param {djs.model.Base} element
|
|
125600
|
-
* @param {Object} newTemplate
|
|
125611
|
+
/**
|
|
125612
|
+
* Replaces the element with the specified elementType
|
|
125613
|
+
*
|
|
125614
|
+
* @param {djs.model.Base} element
|
|
125615
|
+
* @param {Object} newTemplate
|
|
125601
125616
|
*/
|
|
125602
125617
|
_updateTaskType(element, newTemplate) {
|
|
125603
125618
|
// determine new task type
|
|
@@ -125619,13 +125634,13 @@
|
|
|
125619
125634
|
|
|
125620
125635
|
// helpers //////////
|
|
125621
125636
|
|
|
125622
|
-
/**
|
|
125623
|
-
* Find old business object matching specified old property.
|
|
125624
|
-
*
|
|
125625
|
-
* @param {djs.model.Base|ModdleElement} element
|
|
125626
|
-
* @param {Object} oldProperty
|
|
125627
|
-
*
|
|
125628
|
-
* @returns {ModdleElement}
|
|
125637
|
+
/**
|
|
125638
|
+
* Find old business object matching specified old property.
|
|
125639
|
+
*
|
|
125640
|
+
* @param {djs.model.Base|ModdleElement} element
|
|
125641
|
+
* @param {Object} oldProperty
|
|
125642
|
+
*
|
|
125643
|
+
* @returns {ModdleElement}
|
|
125629
125644
|
*/
|
|
125630
125645
|
function findOldBusinessObject(element, oldProperty) {
|
|
125631
125646
|
let businessObject = getBusinessObject$1(element),
|
|
@@ -125704,13 +125719,13 @@
|
|
|
125704
125719
|
}
|
|
125705
125720
|
}
|
|
125706
125721
|
|
|
125707
|
-
/**
|
|
125708
|
-
* Find old property matching specified new property.
|
|
125709
|
-
*
|
|
125710
|
-
* @param {Object} oldTemplate
|
|
125711
|
-
* @param {Object} newProperty
|
|
125712
|
-
*
|
|
125713
|
-
* @returns {Object}
|
|
125722
|
+
/**
|
|
125723
|
+
* Find old property matching specified new property.
|
|
125724
|
+
*
|
|
125725
|
+
* @param {Object} oldTemplate
|
|
125726
|
+
* @param {Object} newProperty
|
|
125727
|
+
*
|
|
125728
|
+
* @returns {Object}
|
|
125714
125729
|
*/
|
|
125715
125730
|
function findOldProperty(oldTemplate, newProperty) {
|
|
125716
125731
|
if (!oldTemplate) {
|
|
@@ -125847,13 +125862,13 @@
|
|
|
125847
125862
|
});
|
|
125848
125863
|
}
|
|
125849
125864
|
|
|
125850
|
-
/**
|
|
125851
|
-
* Check whether property was changed after being set by template.
|
|
125852
|
-
*
|
|
125853
|
-
* @param {djs.model.Base|ModdleElement} element
|
|
125854
|
-
* @param {Object} oldProperty
|
|
125855
|
-
*
|
|
125856
|
-
* @returns {boolean}
|
|
125865
|
+
/**
|
|
125866
|
+
* Check whether property was changed after being set by template.
|
|
125867
|
+
*
|
|
125868
|
+
* @param {djs.model.Base|ModdleElement} element
|
|
125869
|
+
* @param {Object} oldProperty
|
|
125870
|
+
*
|
|
125871
|
+
* @returns {boolean}
|
|
125857
125872
|
*/
|
|
125858
125873
|
function propertyChanged(element, oldProperty) {
|
|
125859
125874
|
const businessObject = getBusinessObject$1(element);
|
|
@@ -125962,10 +125977,10 @@
|
|
|
125962
125977
|
elementTemplateCommands: ['type', ElementTemplatesCommands]
|
|
125963
125978
|
};
|
|
125964
125979
|
|
|
125965
|
-
/**
|
|
125966
|
-
* This Behavior checks if the new element's type is in
|
|
125967
|
-
* the list of elements the template applies to and unlinks
|
|
125968
|
-
* it if not.
|
|
125980
|
+
/**
|
|
125981
|
+
* This Behavior checks if the new element's type is in
|
|
125982
|
+
* the list of elements the template applies to and unlinks
|
|
125983
|
+
* it if not.
|
|
125969
125984
|
*/
|
|
125970
125985
|
class ReplaceBehavior extends CommandInterceptor$1 {
|
|
125971
125986
|
constructor(elementTemplates, injector) {
|
|
@@ -127500,11 +127515,11 @@
|
|
|
127500
127515
|
return group;
|
|
127501
127516
|
}
|
|
127502
127517
|
|
|
127503
|
-
/**
|
|
127504
|
-
*
|
|
127505
|
-
* @param {string|string[]} idOrIds
|
|
127506
|
-
* @param {Array<{ id: string }} groups
|
|
127507
|
-
* @param {Array<{ id: string }>} groupsToAdd
|
|
127518
|
+
/**
|
|
127519
|
+
*
|
|
127520
|
+
* @param {string|string[]} idOrIds
|
|
127521
|
+
* @param {Array<{ id: string }} groups
|
|
127522
|
+
* @param {Array<{ id: string }>} groupsToAdd
|
|
127508
127523
|
*/
|
|
127509
127524
|
function addGroupsAfter(idOrIds, groups, groupsToAdd) {
|
|
127510
127525
|
let ids = idOrIds;
|